@import url("https://fonts.googleapis.com/css2?family=Geist:wght@600&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --color-navy: #152544;
  --color-navy-soft: #1e335b;
  --color-blue-border: #445577;
  --color-dark-border: #3a4a6a;
  --color-text: #152544;
  --color-text-secondary: #2d405c;
  --color-muted: #7f7f7f;
  --color-footer-muted: #9aa6c0;
  --color-white: #ffffff;
  --color-section: #f5f5f5;
  --color-card-border: #e7ebe8;
  --color-light-border: #d4d4d4;
  --color-accent: #3fa654;
  --color-accent-soft: #e1f6eb;
  --color-danger: #dc2626;
  --color-success: #17a34a;
  --font-body: "Inter", Arial, sans-serif;
  --font-card: "Geist", "Inter", Arial, sans-serif;
  --container: 1400px;
  --page-side: 260px;
  --gap: 20px;
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
p {
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--color-accent);
  color: var(--color-white);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: none;
}

.container {
  width: var(--container);
  max-width: calc(100vw - var(--page-side) * 2);
  margin-inline: auto;
}

.site-header {
  width: 100%;
  height: 146px;
  background: var(--color-navy);
  color: var(--color-white);
}

.topbar {
  height: 50px;
  background: var(--color-navy);
  border-bottom: 1px solid var(--color-blue-border);
  overflow: hidden;
}

.topbar__inner {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  white-space: nowrap;
}

.topbar__right,
.topbar__messengers {
  display: flex;
  align-items: center;
}

.topbar__right {
  gap: 16px;
}

.topbar__messengers {
  gap: 8px;
}

.topbar__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--color-navy-soft);
  border: 1px solid color-mix(in oklab, var(--color-white), transparent 83%);
}

.topbar__separator {
  width: 1px;
  height: 14px;
  background: var(--color-light-border);
}

.topbar__toggle {
  width: 60px;
  height: 32px;
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--color-navy-soft);
  border: 1px solid color-mix(in oklab, var(--color-white), transparent 83%);
}

.topbar__toggle-cell {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}

.topbar__toggle-cell.is-active {
  background: var(--color-navy);
}

.mainbar {
  height: 96px;
  background: var(--color-navy);
  border-bottom: 2px solid var(--color-light-border);
  overflow: hidden;
}

.mainbar__inner {
  height: 96px;
  display: grid;
  grid-template-columns: 158px minmax(0, 1fr) 217px;
  align-items: center;
  gap: var(--gap);
}

.logo,
.logo img {
  width: 158px;
  height: 60px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  min-width: 0;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-light-border);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}

.nav__link--active {
  color: var(--color-white);
  font-weight: 500;
}

.nav__link--dropdown::after {
  content: "";
  width: 17px;
  height: 8px;
  background: currentColor;
  mask: url("../assets/figma/profigroup-direction/icon-chevron.svg") center / contain no-repeat;
}

.nav__link--active.nav__link--dropdown::after {
  mask-image: url("../assets/figma/profigroup-direction/icon-chevron-active.svg");
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.btn {
  border: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: normal;
}

.btn--primary {
  background: var(--color-accent);
}

.header-cta {
  width: 217px;
  height: 54px;
}

.burger {
  display: none;
  width: 54px;
  height: 54px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border: 1px solid color-mix(in oklab, var(--color-white), transparent 80%);
  background: transparent;
}

.burger span {
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--color-white);
}

.is-nav-open .burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.is-nav-open .burger span:nth-child(2) {
  opacity: 0;
}

.is-nav-open .burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.sector-hero {
  background: var(--color-white);
  padding: 78px 0;
}

.sector-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sector-hero__copy {
  width: 760px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 17px;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.sector-hero h1 {
  margin-top: 24px;
  height: 62px;
  color: var(--color-text);
  font-size: 52px;
  font-weight: 700;
  line-height: 62px;
}

.sector-hero p {
  margin-top: 24px;
  height: 24px;
  color: var(--color-muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.objects-section {
  background: var(--color-section);
  padding: 70px 0;
}

.objects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.object-card {
  height: 390px;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-card-border);
  overflow: hidden;
}

.object-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.object-card__caption {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  color: var(--color-text);
  font-family: var(--font-card);
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.collections-section {
  background: var(--color-white);
  padding: 120px 0 90px;
}

.collections-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.collections-head {
  width: 1388px;
  max-width: 100%;
  min-height: 139px;
  display: grid;
  grid-template-columns: 1fr 560px;
  column-gap: 268px;
}

.collections-head h2 {
  padding-top: 7.5px;
  color: var(--color-text);
  font-size: 52px;
  font-weight: 700;
  line-height: 62px;
}

.collections-head__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.collections-head__right p {
  margin-top: 23px;
  color: var(--color-text-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  white-space: nowrap;
}

.collections-link {
  width: 217px;
  min-height: 46px;
  margin-top: 30px;
  border: 1px solid var(--color-card-border);
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
}

.collection-cards {
  display: grid;
  grid-template-columns: 453fr 454fr 453fr;
  gap: 20px;
  height: 360px;
}

.collection-card {
  position: relative;
  display: block;
  height: 360px;
  background: var(--color-white);
  border: 1px solid var(--color-card-border);
  overflow: hidden;
}

.collection-card__visual {
  position: absolute;
  left: -1px;
  top: -1px;
  width: calc(100% + 1px);
  height: 236px;
  overflow: hidden;
  display: block;
}

.collection-card__base,
.collection-card__scrim {
  position: absolute;
  left: 0;
  width: 100%;
  max-width: none;
  pointer-events: none;
}

.collection-card__base {
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.collection-card__scrim {
  top: 0;
  height: 100%;
  object-fit: cover;
}

.collection-card__visual--eco .collection-card__base {
  height: 191.95%;
  top: -45.97%;
}

.collection-card__visual--eco .collection-card__scrim {
  height: 144%;
  top: -29.09%;
}

.collection-card__visual--dream .collection-card__scrim {
  height: 144%;
  top: -33.27%;
}

.collection-card__visual::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: color-mix(in oklab, var(--color-accent), transparent 5%);
}

.collection-card__body {
  position: absolute;
  left: 27px;
  right: 28px;
  top: 285px;
  height: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
  gap: 16px;
}

.collection-card strong {
  color: var(--color-text);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  white-space: nowrap;
}

.collection-card__more {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--color-accent-soft);
}

.site-footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 80px 0 40px;
  overflow: hidden;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.footer-newsletter {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: var(--color-navy);
  border: 1px solid var(--color-dark-border);
}

.footer-newsletter__copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-newsletter h2 {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}

.footer-newsletter p {
  color: var(--color-footer-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}

.newsletter-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-field {
  width: 360px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  background: var(--color-white);
  border: 1px solid var(--color-dark-border);
}

.newsletter-field input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--color-text);
  font-size: 14px;
  line-height: normal;
}

.newsletter-field input::placeholder {
  color: var(--color-footer-muted);
  opacity: 1;
}

.newsletter-field.is-error {
  border-color: var(--color-danger);
}

.newsletter-submit {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 0;
  border-radius: 0;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
}

.newsletter-status {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  display: none;
  color: var(--color-success);
  font-size: 12px;
}

.newsletter-status.is-visible {
  display: block;
}

.footer-main {
  position: relative;
  height: 228px;
}

.footer-brand {
  position: absolute;
  left: 0;
  top: 0;
  width: 380px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand > a,
.footer-brand img {
  width: 158px;
  height: 60px;
}

.footer-brand p {
  width: 360px;
  color: var(--color-footer-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--color-navy-soft);
  border: 1px solid var(--color-dark-border);
}

.footer-col,
.footer-contacts {
  position: absolute;
  top: 0;
  width: 180px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--color-footer-muted);
  font-size: 14px;
}

.footer-col--directions {
  left: 440px;
}

.footer-col--catalog {
  left: 680px;
}

.footer-col--fitout {
  left: 920px;
}

.footer-contacts {
  left: 1160px;
  width: 260px;
}

.footer-col__title {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-col__links,
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col__links a,
.footer-col__links span {
  color: var(--color-footer-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.footer-col__bottom {
  position: absolute;
  left: 0;
  top: 200px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
}

.footer-contact strong {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}

.footer-contact span {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.footer-contact--address {
  align-items: flex-start;
}

.footer-contact--address span {
  width: 220px;
  color: var(--color-footer-muted);
  line-height: 20px;
}

.footer-bottom {
  height: 72px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--color-dark-border);
  color: var(--color-footer-muted);
  font-size: 14px;
  font-weight: 400;
}

.footer-bottom nav {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.footer-bottom strong {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--color-accent), transparent 50%);
  outline-offset: 3px;
}

@media (hover: hover) {
  a:hover,
  button:hover {
    opacity: 0.92;
  }
}

@media (max-width: 1500px) {
  :root {
    --page-side: clamp(40px, 5vw, 96px);
  }

  .nav {
    gap: clamp(18px, 1.7vw, 32px);
  }

  .collections-head {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
    column-gap: clamp(48px, 7vw, 120px);
  }

  .footer-main {
    height: auto;
    display: grid;
    grid-template-columns: 380px repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .footer-brand,
  .footer-col,
  .footer-contacts {
    position: static;
    width: auto;
  }

  .footer-col__bottom {
    position: static;
    margin-top: 28px;
  }

  .footer-contact--address span {
    width: auto;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: calc(100vw - 48px);
  }

  .mainbar__inner {
    grid-template-columns: 158px minmax(0, 1fr) auto;
  }

  .nav {
    gap: 18px;
  }

  .header-cta {
    width: auto;
  }

  .objects-grid,
  .collection-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .collection-card strong {
    font-size: 20px;
  }

  .collections-head {
    grid-template-columns: 1fr 480px;
    column-gap: 60px;
  }

  .footer-main {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 36px 24px;
  }
}

@media (max-width: 1024px) {
  .site-header {
    height: auto;
  }

  .mainbar__inner {
    grid-template-columns: 158px auto;
    justify-content: space-between;
  }

  .burger {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 80;
    height: 100svh;
    display: grid;
    align-content: center;
    justify-content: stretch;
    gap: 0;
    padding: 120px 32px 48px;
    background: var(--color-navy);
    transform: translateY(-100%);
  }

  .is-nav-open .nav {
    transform: none;
  }

  .nav__link {
    min-height: 58px;
    border-bottom: 1px solid var(--color-dark-border);
    font-size: 24px;
  }

  .sector-hero {
    padding: 56px 0;
  }

  .objects-grid,
  .collection-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
  }

  .collections-head {
    min-height: 0;
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .collections-head__right p {
    margin-top: 0;
    white-space: normal;
  }

  .collections-link {
    margin-top: 20px;
  }

  .collection-card {
    height: 360px;
  }

  .footer-newsletter {
    height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-field {
    flex: 1 1 auto;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    height: auto;
    flex-direction: column;
    gap: 18px;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .container {
    max-width: calc(100vw - 32px);
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__right {
    display: none;
  }

  .mainbar {
    height: 78px;
  }

  .mainbar__inner {
    height: 78px;
  }

  .logo,
  .logo img {
    width: 132px;
    height: auto;
  }

  .sector-hero {
    padding: 44px 0;
  }

  .sector-hero__copy {
    width: 100%;
  }

  .breadcrumbs {
    height: auto;
    flex-wrap: wrap;
    font-size: 13px;
    line-height: 18px;
  }

  .sector-hero h1 {
    height: auto;
    margin-top: 18px;
    font-size: 36px;
    line-height: 42px;
  }

  .sector-hero p {
    height: auto;
    margin-top: 16px;
    font-size: 16px;
    line-height: 22px;
  }

  .objects-section {
    padding: 40px 0;
  }

  .objects-grid,
  .collection-cards {
    grid-template-columns: 1fr;
  }

  .object-card {
    height: auto;
  }

  .object-card img {
    height: 260px;
  }

  .collections-section {
    padding: 64px 0;
  }

  .collections-wrap {
    gap: 36px;
  }

  .collections-head h2 {
    font-size: 36px;
    line-height: 42px;
  }

  .collection-card {
    height: 340px;
  }

  .collection-card__visual {
    height: 220px;
  }

  .collection-card__body {
    top: 266px;
  }

  .collection-card strong {
    font-size: 18px;
    line-height: 24px;
  }

  .site-footer {
    padding: 48px 0 32px;
  }

  .newsletter-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .newsletter-field {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand p {
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

/* ProfiGroup direction: design */
.design-page h1,
.design-page h2,
.design-page h3 {
  margin: 0;
  color: var(--color-text);
}

.design-hero {
  height: 620px;
  background: var(--color-section);
}

.design-hero__inner {
  position: relative;
  height: 100%;
}

.design-hero__copy {
  position: absolute;
  left: 0;
  top: 78px;
  width: 780px;
}

.design-breadcrumbs {
  width: 620px;
}

.design-hero h1 {
  width: 780px;
  margin-top: 24px;
  color: var(--color-text);
  font-size: 64px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 0;
}

.design-hero p {
  width: 690px;
  margin-top: 28px;
  color: var(--color-muted);
  font-size: 20px;
  font-weight: 400;
  line-height: 31px;
}

.design-hero__button {
  width: 220px;
  height: 54px;
  margin-top: 29px;
}

.design-hero-card {
  position: absolute;
  right: 0;
  top: 76px;
  width: 572px;
  height: 410px;
  padding: 28px;
  background: var(--color-white);
  border: 1px solid #e4e9ed;
}

.design-hero-card__image {
  width: 516px;
  height: 268px;
  object-fit: cover;
}

.design-hero-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 16px;
  margin-top: 24px;
}

.design-stat strong {
  display: block;
  color: var(--color-accent);
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

.design-stat span {
  display: block;
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.design-about {
  height: 812px;
  background: var(--color-white);
  padding-top: 92px;
}

.design-about-card {
  position: relative;
  width: 1400px;
  min-height: 628px;
  padding: 53px 58px 48px;
  background: #fafbfc;
  border: 1px solid #e0e6ec;
  color: #4f5967;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
}

.design-about-card::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: 3px;
  height: calc(100% + 2px);
  background: #3fb873;
}

.design-about-card p + p {
  margin-top: 20px;
}

.design-about-card strong {
  color: var(--color-text);
  font-weight: 700;
}

.design-stages {
  height: 992px;
  padding-top: 88px;
  background: var(--color-section);
}

.design-stages h2,
.design-included h2,
.design-drawings h2,
.design-viz h2,
.design-pricing h2 {
  font-size: 46px;
  font-weight: 700;
  line-height: 54px;
}

.design-stage-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 52px;
}

.design-stage-card {
  width: 1400px;
  height: 83px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  column-gap: 20px;
  padding: 0 28px;
  background: var(--color-white);
  border: 1px solid #e0e6ec;
}

.design-stage-card span,
.design-included-card span {
  color: var(--color-accent);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.design-stage-card h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

.design-included {
  height: 740px;
  padding-top: 88px;
  background: var(--color-white);
}

.design-included-grid {
  display: grid;
  grid-template-columns: repeat(2, 690px);
  gap: 26px 20px;
  margin-top: 48px;
}

.design-included-card {
  height: 86px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  column-gap: 20px;
  padding: 0 30px;
  background: var(--color-white);
  border: 1px solid #e0e6ec;
  box-shadow: 0 10px 24px rgba(21, 37, 68, 0.06);
}

.design-included-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

.design-drawings,
.design-viz {
  height: 674px;
  padding-top: 100px;
}

.design-drawings {
  background: var(--color-section);
}

.design-viz {
  background: var(--color-white);
}

.design-media-grid {
  display: grid;
  gap: 20px;
  margin-top: 60px;
}

.design-media-grid--drawings {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.design-media-grid--viz {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.design-media-card {
  height: 360px;
  background: var(--color-white);
  border: 1px solid #e0e6ec;
  overflow: hidden;
}

.design-drawings .design-media-card img {
  width: 100%;
  height: 288px;
  object-fit: cover;
}

.design-media-card--viz img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.design-media-card h3 {
  padding: 17px 20px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

.design-media-card--viz h3 {
  padding-top: 25px;
}

.design-media-card--viz[data-viz-modal-trigger] {
  cursor: pointer;
}

.design-viz-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  background: rgb(16 26 43 / 80%);
}

.design-viz-modal-overlay[hidden] {
  display: none;
}

.design-viz-modal-overlay.is-open {
  display: grid;
}

.design-viz-modal {
  position: relative;
  width: 1100px;
  height: 644px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 21px rgba(13, 20, 33, 0.18);
}

.design-viz-modal h2 {
  position: absolute;
  top: 36px;
  left: 40px;
  margin: 0;
  color: #152544;
  font-size: 34px;
  font-weight: 700;
  line-height: 42px;
}

.design-viz-modal__close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  background: #f5f5f5;
  border: 1px solid #d4d4d4;
}

.design-viz-modal__close img {
  width: 14px;
  height: 14px;
}

.design-viz-modal__main-image {
  position: absolute;
  top: 104px;
  left: 40px;
  width: 680px;
  height: 480px;
  object-fit: cover;
  border-radius: 6px;
}

.design-viz-modal__thumbnails {
  position: absolute;
  top: 104px;
  right: 40px;
  width: 320px;
  display: grid;
  grid-template-rows: repeat(4, 103px);
  gap: 22px;
}

.design-viz-modal__thumbnails img {
  width: 320px;
  height: 103px;
  object-fit: cover;
  border-radius: 6px;
}

body.is-viz-modal-open {
  overflow: hidden;
}

.design-pricing {
  height: 742px;
  padding-top: 100px;
  background: var(--color-section);
}

.design-pricing__lead {
  margin-top: 16px;
  color: var(--color-muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.design-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.design-price-card {
  height: 382px;
  padding: 28px;
  background: var(--color-white);
  border: 1px solid #e0e6ec;
}

.design-price-card h3 {
  min-height: 52px;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

.design-price-card strong {
  display: block;
  margin-top: 24px;
  color: var(--color-accent);
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
}

.design-price-card strong::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 21px;
  background: #e0e6ec;
}

.design-price-card p {
  margin-top: 24px;
  color: #6f7782;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.design-price-card--dark {
  background: var(--color-navy);
  border-color: var(--color-navy);
}

.design-price-card--dark h3 {
  color: var(--color-white);
}

.design-price-card--dark strong {
  color: #5be08a;
}

.design-price-card--dark strong::after {
  background: rgba(255, 255, 255, 0.2);
}

.design-price-card--dark p {
  color: #d8dee6;
}

.design-cta-section {
  height: 359px;
  padding-top: 100px;
  background: var(--color-white);
}

.design-cta {
  width: 1400px;
  height: 159px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 427px;
  align-items: center;
  column-gap: 20px;
  padding: 0 40px;
  background: var(--color-section);
  border: 1px solid rgba(21, 37, 68, 0.3);
}

.design-cta__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--color-navy);
}

.design-cta__copy h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 40px;
}

.design-cta__copy p {
  margin-top: 4px;
  color: #6f7782;
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
}

.design-cta__actions {
  display: grid;
  grid-template-columns: 181px 226px;
  align-items: center;
  column-gap: 20px;
}

.design-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  white-space: nowrap;
}

.design-cta__button {
  width: 226px;
  height: 56px;
}

@media (max-width: 1500px) {
  .design-about-card,
  .design-stage-card,
  .design-cta {
    width: 100%;
  }

  .design-hero__copy {
    width: min(56vw, 780px);
  }

  .design-hero h1 {
    width: 100%;
    font-size: clamp(50px, 4.2vw, 64px);
    line-height: 1.1;
  }

  .design-hero p {
    width: min(100%, 690px);
  }

  .design-hero-card {
    width: min(41vw, 572px);
  }

  .design-hero-card__image {
    width: 100%;
  }

  .design-included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .design-hero,
  .design-about,
  .design-stages,
  .design-included,
  .design-drawings,
  .design-viz,
  .design-pricing,
  .design-cta-section {
    height: auto;
    padding: 72px 0;
  }

  .design-hero__inner,
  .design-hero__copy,
  .design-hero-card {
    position: static;
  }

  .design-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .design-hero__copy,
  .design-hero-card,
  .design-breadcrumbs {
    width: 100%;
  }

  .design-hero-card {
    max-width: 572px;
  }

  .design-stage-list,
  .design-included-grid,
  .design-media-grid,
  .design-price-grid {
    margin-top: 40px;
  }

  .design-media-grid--drawings,
  .design-media-grid--viz,
  .design-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .design-cta {
    height: auto;
    grid-template-columns: 56px minmax(0, 1fr);
    row-gap: 28px;
    padding: 32px;
  }

  .design-cta__actions {
    grid-column: 1 / -1;
    justify-content: start;
  }
}

@media (max-width: 760px) {
  .design-hero,
  .design-about,
  .design-stages,
  .design-included,
  .design-drawings,
  .design-viz,
  .design-pricing,
  .design-cta-section {
    padding: 48px 0;
  }

  .design-hero h1,
  .design-stages h2,
  .design-included h2,
  .design-drawings h2,
  .design-viz h2,
  .design-pricing h2 {
    font-size: 34px;
    line-height: 40px;
  }

  .design-hero p {
    margin-top: 18px;
    font-size: 17px;
    line-height: 25px;
  }

  .design-hero-card {
    height: auto;
    padding: 18px;
  }

  .design-hero-card__image {
    height: 220px;
  }

  .design-hero-card__stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .design-about-card {
    min-height: 0;
    padding: 30px 24px;
    font-size: 16px;
    line-height: 25px;
  }

  .design-stage-card {
    height: auto;
    min-height: 83px;
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 18px 20px;
  }

  .design-stage-card h3,
  .design-included-card h3,
  .design-media-card h3,
  .design-price-card h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .design-included-grid,
  .design-media-grid--drawings,
  .design-media-grid--viz,
  .design-price-grid {
    grid-template-columns: 1fr;
  }

  .design-included-card {
    height: auto;
    min-height: 86px;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 18px 22px;
  }

  .design-media-card,
  .design-price-card {
    height: auto;
  }

  .design-media-card h3 {
    padding-bottom: 20px;
  }

  .design-price-card {
    min-height: 320px;
  }

  .design-cta {
    grid-template-columns: 1fr;
  }

  .design-cta__actions {
    grid-template-columns: 1fr;
    row-gap: 18px;
    width: 100%;
  }

  .design-cta__button {
    width: 100%;
  }

  .design-viz-modal-overlay {
    align-items: start;
    padding: 16px;
  }

  .design-viz-modal {
    width: min(100%, 560px);
    height: auto;
    min-height: 0;
    padding: 92px 16px 16px;
  }

  .design-viz-modal h2 {
    top: 28px;
    left: 16px;
    font-size: 28px;
    line-height: 34px;
  }

  .design-viz-modal__close {
    top: 24px;
    right: 16px;
  }

  .design-viz-modal__main-image,
  .design-viz-modal__thumbnails {
    position: static;
    width: 100%;
  }

  .design-viz-modal__main-image {
    height: auto;
    aspect-ratio: 680 / 480;
  }

  .design-viz-modal__thumbnails {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 12px;
    margin-top: 12px;
  }

  .design-viz-modal__thumbnails img {
    width: 100%;
    height: auto;
    aspect-ratio: 320 / 103;
  }
}
