:root {
  --dark: #242424;
  --deep: #161616;
  --panel: #282828;
  --blue: #0e5ba4;
  --blue2: #1c75bc;
  --ink: #242424;
  --muted: rgba(36, 36, 36, 0.5);
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(0, 0, 0, 0.1);
  --shell: 130px;
  --page-max: 1440px;
  /* Figma desktop Vector 208 — x=330.5 on 1440 frame */
  --guide-x: 330.5px;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}
/* Блокировка скролла при открытом мобильном меню */
html.menu-open,
html.menu-open body {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
  height: 100%;
}
button, a { font: inherit; }
button { cursor: pointer; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, blockquote { margin: 0; }
h1, h2, h3 { font-weight: 600; letter-spacing: -0.04em; }

.shell {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: var(--shell);
}

.dark { background: var(--dark); color: #fff; }

/* Vertical guide: one stable x per breakpoint, aligned to centered page shell */
.guide {
  position: relative;
  /* Keep ::before z-index:-1 above section bg, below content */
  isolation: isolate;
}
.guide::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  /* Keep guide glued to the 1440 design frame when the shell is centered */
  left: max(
    var(--guide-x),
    calc(50% - (var(--page-max) / 2) + var(--guide-x))
  );
  width: 1px;
  background: var(--line-dark);
  pointer-events: none;
  z-index: -1;
}
.dark.guide::before,
.footer.guide::before {
  background: var(--line);
}

.badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  font-size: 14px;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.badge img { width: 16px; height: 16px; object-fit: contain; }
.badge--light { border-color: rgba(255, 255, 255, 0.2); color: #fff; }

.button {
  border: 0;
  border-radius: 0;
  min-height: 50px;
  padding: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  font: 500 16px/1.4 'Fira Sans', sans-serif;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}
.button span { white-space: nowrap; }
.button:hover { transform: translateY(-1px); }
.button i { width: 8px; height: 8px; background: currentColor; flex: 0 0 auto; }
.button--blue { background: var(--blue); color: #fff; }
.button--blue:hover { background: var(--blue2); }
.button--blue i { background: #fff; }
.button--white { background: #fff; color: var(--ink); }
.button--white:hover { background: #f2f2f2; }
.button--white i { background: var(--ink); }
.button--dark { background: #000; color: #fff; }
.button--dark:hover { background: #1a1a1a; }
.button--dark i { background: #fff; }
.button--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.button--outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

/* Контент всегда читаем; анимация только при появлении класса */
.reveal.is-visible {
  animation: rise 0.7s ease both;
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: var(--deep);
  color: #edf2f4;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.2s ease;
}
.scroll-top--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.scroll-top:hover {
  background: var(--blue);
}
.scroll-top__arrow {
  display: block;
  flex: 0 0 auto;
}

@media (max-width: 480px) {
  .scroll-top {
    right: 15px;
    bottom: 15px;
    width: 48px;
    height: 48px;
  }
}

/* Left rail 200px (shell→guide), then 200px gutter so h2 starts at 400 — Figma split heads */
.section-heading--split {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  column-gap: 200px;
  align-items: start;
  margin-bottom: 48px;
}
.section-heading--split h2 {
  width: auto;
  max-width: 780px;
  font-size: 32px;
  line-height: 1.1;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  letter-spacing: -0.04em;
}
.meta img { width: 24px; height: 24px; object-fit: contain; }

.arrows { display: flex; gap: 10px; }
.arrows button {
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
}
.arrows button img { width: 50px; height: 50px; object-fit: contain; }
/* Source SVGs point down; Figma uses rotate ±90° for horizontal prev/next */
.arrows button:first-child img { transform: rotate(90deg); }
.arrows button:last-child img { transform: rotate(-90deg); }
.arrows--dark button img { filter: none; }

/* Header */
.header {
  height: 74px;
  background: var(--dark);
  color: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 95px;
  padding-block: 15px;
  animation: fade-in 0.7s ease both;
}
.logo {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}
.logo__img {
  display: block;
  width: 200px;
  height: 39px;
  object-fit: contain;
  object-position: left center;
}
.logo--large .logo__img {
  width: min(880px, 100%);
  height: auto;
  max-height: 172px;
}
.header__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.header__contacts {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.04em;
}
.header__contacts a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}
.header__contacts a:hover { color: var(--blue2); }
.nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.nav a:hover { color: var(--blue2); }
.header__button { margin-left: auto; min-height: 40px; font-size: 14px; }
.burger {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  position: relative;
  z-index: 220;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  pointer-events: none;
}
.header__drawer { display: none; }
.header--menu-open {
  z-index: 210;
}

/* Hero */
.hero-section {
  height: 700px;
  position: relative;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.hero-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
}
.hero-section__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 20px;
  padding-block: 200px 60px;
  animation: rise 0.85s 0.1s ease both;
}
.hero-section__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.hero-section h1 {
  font-size: 56px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}
.hero-section__lead {
  margin-top: 0;
  font-size: 24px;
  letter-spacing: -0.04em;
  max-width: 640px;
}
.hero-section__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 auto;
  align-self: flex-end;
}

/* Stats */
.stats {
  padding-block: 50px;
  background: var(--dark);
}
.stats__inner { display: flex; justify-content: flex-end; }
.stats__grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: min(780px, 100%);
}
.stat {
  width: 180px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: -0.04em;
}
.stat strong {
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

/* Founder */
.founder {
  padding-block: 100px;
  background-size: 313px 313px;
  background-repeat: repeat;
  background-position: top left;
}
.founder__grid {
  display: flex;
  gap: 100px;
  align-items: center;
  justify-content: flex-end;
}
.founder__portrait-wrap {
  position: relative;
  width: 300px;
  flex: 0 0 auto;
}
.founder__portrait {
  position: relative;
  height: 400px;
  background: #fff;
  overflow: hidden;
}
.founder__portrait img {
  position: absolute;
  width: 139.57%;
  height: 186.1%;
  max-width: none;
  left: -16.88%;
  top: -13.04%;
  object-fit: cover;
}
.founder__name {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line-dark);
  padding: 8px 10px;
  font: italic 400 16px/1.1 Inter, sans-serif;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.founder__quote {
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-width: 0;
}
.founder__quote-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.quote-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 auto;
}
.founder__quote-top p {
  max-width: 255px;
  color: rgba(36, 36, 36, 0.4);
  font-size: 16px;
  letter-spacing: -0.04em;
  text-align: right;
}
.founder__quote blockquote {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.founder__more {
  margin: 16px 0 0;
  font-size: 15px;
  letter-spacing: -0.03em;
}
.founder__more a { color: var(--blue); }

/* Projects */
.projects { padding-block: 100px; }
.project-block {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.project-block + .project-block { margin-top: 20px; }
.project-block__head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}
.project-block__head h3 {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.project-block__head p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  letter-spacing: -0.04em;
}
.project-block__grid {
  display: grid;
  gap: 20px;
}
.project-block__grid--classic,
.project-block__grid--modern {
  grid-template-columns: 1fr 1fr;
}
.project-block__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.project-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  overflow: hidden;
}
.project-card__media { height: 150px; }
.project-card--large .project-card__media { height: 300px; }
.project-card__media img,
.portfolio__thumbs img,
.service-card__media img,
.overview-grid img,
.mortgage__media img,
.promo-card__media img,
.tour__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card__body { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
.project-card h3 {
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

/* Promo */
.promo {
  min-height: 792px;
  padding-block: 100px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.promo__wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.promo-card {
  width: min(580px, 100%);
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.promo-card .badge,
.promo-card .button {
  width: fit-content;
  align-self: flex-start;
}
.promo-card__title,
.promo-card__media,
.promo-card p {
  align-self: stretch;
}
.promo-card__title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  white-space: nowrap;
}
.promo-card__title h2,
.promo-card__title strong {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.promo-card__media { height: 300px; overflow: hidden; }
.promo-card p {
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.04em;
}
.promo__next {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  background: transparent;
  flex: 0 0 auto;
  align-self: flex-end;
}
.promo__next img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

/* Portfolio — Figma 370:266 desktop */
.portfolio { padding-block: 100px; }
.portfolio__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.portfolio__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  min-width: 0;
}
.portfolio__feature {
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.portfolio__feature > img {
  height: 256px;
  width: 100%;
  object-fit: cover;
  flex: 0 0 auto;
}
.portfolio__feature-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.portfolio__feature-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}
.portfolio__feature-head h3 {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.portfolio__feature-head span {
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.portfolio__feature-body > p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.portfolio__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  min-width: 0;
}
.portfolio__thumbs img { height: 256px; }

/* Mortgage — Figma desktop 370:298 */
.mortgage {
  position: relative;
  padding-block: 100px;
  background: #fff;
  overflow: hidden;
}
.mortgage__shell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
/* Concrete strip: in-flow 440px tall, pulled under the card via -350px margin (Figma mb-[-350px]) */
.mortgage__bg {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 440px;
  margin-bottom: -350px;
  background-color: #656e63;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.mortgage__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 600px 480px;
  gap: 20px;
  align-items: center;
  padding-left: 80px;
  min-height: 546px;
}
.mortgage__card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 546px;
  min-height: 546px;
  box-sizing: border-box;
}
.mortgage__media {
  flex: 1 0 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
  background: #656e63;
}
.mortgage__card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
  width: 100%;
}
.mortgage__card-body > p {
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.mortgage__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.mortgage__actions .button {
  min-width: 0;
  flex-shrink: 1;
  white-space: normal;
  height: auto;
  min-height: 50px;
}
.mortgage__actions .button span {
  white-space: normal;
  text-align: left;
}
.mortgage__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-top: 378px;
  width: 480px;
  max-width: 100%;
  box-sizing: border-box;
}
.mortgage__copy-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}
.mortgage__copy .badge,
.mortgage__copy-text .badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  flex-shrink: 0;
}
.mortgage__copy h2,
.mortgage__copy-text h2 {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  width: 100%;
}
.mortgage__copy p,
.mortgage__copy-text p {
  width: 100%;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.mortgage__arrows--mobile { display: none; }
.mortgage__arrows--desktop { display: flex; }

/* Services */
.services {
  padding-block: 100px;
  background: #f3f3f3;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  padding: 150px 20px 20px;
  position: relative;
  min-height: 272px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  min-width: 0;
}
.service-card__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 330px;
  max-width: 100%;
  height: 130px;
  border-bottom-right-radius: 100px;
  overflow: hidden;
}
.service-card h3 { font-size: 18px; letter-spacing: -0.04em; }
.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

/* Tour — Figma 370:363 desktop / 370:1108 mobile */
.tour { background: #fff; }
.tour__grid {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--shell);
  display: flex;
  gap: 20px;
  align-items: stretch;
  min-height: 416px;
}
.tour__copy {
  flex: 1 1 0;
  min-width: 0;
  padding-block: 100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.tour__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.tour__copy h2 {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  max-width: 660px;
}
.tour__copy p {
  max-width: 448px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.tour__image {
  flex: 0 0 630px;
  width: 630px;
  position: relative;
  min-height: 416px;
  background: #656e63;
  overflow: hidden;
}
.tour__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

/* Reviews — MyReviews BlockWidget embed */
.reviews {
  padding-block: 100px;
  background: #f5f5f5;
}
.reviews__widget {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1170px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 20px;
  min-height: 397px;
}
.reviews__widget-frame {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 1170px;
  min-height: 397px;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}

/* Overviews */
.overviews { padding-block: 100px; }
.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.overview-grid article {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.overview-grid article::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
}
.overview-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overview-grid__body,
.overview-grid div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
}
.overview-grid h3 { font-size: 18px; }
.overview-grid p,
.overview-grid small {
  font-size: 14px;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

/* Process */
.process {
  padding-block: 100px;
  background: #f5f5f5;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.process__grid article {
  background: #fff;
  padding: 150px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  position: relative;
  box-sizing: border-box;
}
.process__grid article > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.process__grid span {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--blue);
  font: 500 16px/1.4 'Fira Sans', sans-serif;
  text-transform: uppercase;
}
.process__grid h3 { font-size: 18px; letter-spacing: -0.04em; }
.process__grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
}

/* FAQ */
.faq { padding-block: 100px; }
.faq__grid {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
}
.faq__heading {
  width: 100%;
  margin-bottom: 0;
}
.faq__list { width: min(780px, 100%); display: flex; flex-direction: column; gap: 32px; }
.faq-item button {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  color: #fff;
  padding: 0;
  text-align: left;
  font: 600 24px/1.2 Inter, sans-serif;
  letter-spacing: -0.04em;
}
.faq-item__toggle {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: block;
  line-height: 0;
}
.faq-item__toggle img {
  width: 50px;
  height: 50px;
  display: block;
}
/* Frame 236 points down; open state flips vertically (Figma -scale-y-100) */
.faq-item--open .faq-item__toggle img {
  transform: scaleY(-1);
}
.faq-item p {
  margin-top: 10px;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.04em;
  max-width: calc(100% - 66px);
}

/* Footer */
.footer {
  background: var(--deep);
  color: #edf2f4;
  padding-block: 100px 50px;
}
.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  margin-bottom: 64px;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 220px;
}
.footer__row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  letter-spacing: -0.04em;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.footer__row:hover { color: var(--blue2); }
.footer__button {
  align-self: flex-start;
  margin-left: 0;
  min-height: 40px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1;
}
.footer__icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer__row:hover .footer__icon {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.25);
}
.footer__icon img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer__map {
  position: relative;
  height: 400px;
  border: 1px solid rgba(20, 22, 23, 0.2);
  overflow: hidden;
  background: #0b0d0e;
}
.footer__yamap {
  position: absolute;
  inset: 0;
}
.footer__map-marker {
  position: relative;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -100%);
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55));
}
.footer__map-marker img {
  display: block;
  width: 48px !important;
  height: 48px !important;
  max-width: none !important;
  object-fit: contain;
  border-radius: 10px;
  background: #161616;
  border: 2px solid var(--blue);
}
.footer__mid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.footer__nav-cols {
  display: flex;
  gap: 20px;
  font-size: 16px;
  letter-spacing: -0.04em;
}
.footer__nav-cols div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__nav-cols a {
  color: #fff;
  transition: color 0.2s ease;
}
.footer__nav-cols a:hover { color: var(--blue2); }
.footer__nav-cols--service {
  flex-wrap: wrap;
  gap: 20px 32px;
}
.footer__nav-services {
  min-width: 180px;
}
.footer__nav-current {
  color: rgba(255, 255, 255, 0.45);
}
.footer__brand {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}
.footer__brand .logo {
  width: min(880px, 100%);
}
.footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  letter-spacing: -0.04em;
}
.footer__legal > div { display: flex; flex-direction: column; gap: 10px; }
.footer__dev {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__dev img {
  width: 100px;
  height: 14px;
  object-fit: contain;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  :root { --shell: 40px; }
  /* No tablet frame in Figma — hide guide so a desktop x doesn’t slice content */
  .guide::before { display: none; }
  .section-heading--split {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .section-heading--split h2 { max-width: none; width: 100%; }

  /* Burger menu from tablet width — desktop nav no longer fits with Blog */
  .header {
    height: calc(70px + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
    z-index: 210;
  }
  .header__inner { gap: 12px; }
  .header__meta,
  .header__button { display: none !important; }
  .logo__img {
    width: min(160px, 48vw);
    height: auto;
  }
  .burger {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
  .burger--open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger--open span:nth-child(2) { opacity: 0; }
  .burger--open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Drawer вынесен на body в JS — fixed к viewport, не к sticky-header */
  .header__drawer {
    display: flex !important;
    flex-direction: column;
    gap: 28px;
    position: fixed !important;
    top: calc(70px + env(safe-area-inset-top, 0px)) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: none !important;
    z-index: 200 !important;
    background: var(--deep);
    padding: 28px max(20px, var(--shell)) calc(32px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s ease, visibility 0.25s ease;
    box-sizing: border-box;
  }
  .header__drawer.is-open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }
  .header__drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 20px;
    letter-spacing: -0.04em;
  }
  .header__drawer-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
  }
  .header__drawer-nav a:hover,
  .header__drawer-nav a:focus-visible { color: var(--blue2); }
  .header__drawer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
    font-size: 15px;
    letter-spacing: -0.04em;
  }
  .header__drawer-contacts > span { color: rgba(255, 255, 255, 0.5); }
  .header__drawer-contacts > a {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
  }
  .header__drawer-socials {
    display: flex;
    gap: 16px;
    padding-top: 4px;
  }
  .header__drawer-socials a {
    color: var(--blue2);
    font-size: 16px;
    letter-spacing: -0.04em;
    padding: 8px 0;
  }
  .header__drawer-button {
    width: 100%;
    margin-top: auto;
    min-height: 52px;
  }

  /* Hero / service hero — stack; keep copy at bottom so photo stays open */
  .hero-section,
  .service-hero,
  .hero-section.service-hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: min(720px, 100svh);
  }
  .hero-section > img,
  .service-hero > img {
    object-position: center 35%;
  }
  .hero-section__shade {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.2) 45%,
      rgba(0, 0, 0, 0.72) 100%
    );
  }
  .hero-section__content,
  .service-hero .hero-section__content,
  .hero-section.service-hero .hero-section__content {
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    min-height: 0;
    margin-top: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 20px;
    padding-block: 48px 28px;
  }
  .hero-section h1 { font-size: clamp(32px, 5vw, 42px); }
  .hero-section__lead { font-size: 18px; max-width: none; }
  .hero-section__actions,
  .service-hero .hero-section__actions,
  .hero-section.service-hero .hero-section__actions {
    width: 100%;
    align-self: stretch;
    flex-wrap: wrap;
  }
  .hero-section__actions .button,
  .service-hero .hero-section__actions .button,
  .hero-section.service-hero .hero-section__actions .button {
    width: 100%;
  }
  .button {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    flex-shrink: 1;
    max-width: 100%;
  }
  .button span { white-space: normal; }

  .founder__grid,
  .footer__top {
    grid-template-columns: 1fr;
  }
  .services__grid,
  .process__grid,
  .overview-grid,
  .review-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-block__grid--classic,
  .project-block__grid--modern {
    grid-template-columns: 1fr;
  }
  .footer__nav-cols--service {
    width: 100%;
  }
  .footer__mid {
    flex-wrap: wrap;
    gap: 28px;
  }
  .tour__grid {
    flex-direction: column;
    min-height: 0;
    gap: 28px;
  }
  .tour__copy,
  .tour__image {
    width: 100%;
  }
  .tour__image {
    flex: none;
    width: 100%;
    min-height: 320px;
    height: 320px;
  }
  .tour__copy {
    padding-block: 40px 0;
  }
  .tour__copy .button {
    width: 100%;
  }

  /* Mortgage / promo / portfolio break before phone breakpoint */
  .mortgage__grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-left: 0;
    min-height: 0;
    grid-template-columns: none;
  }
  .mortgage__copy {
    order: -1;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }
  .mortgage__arrows--mobile { display: flex; }
  .mortgage__arrows--desktop { display: none; }
  .mortgage__card {
    width: 100%;
    height: auto;
    min-height: 0;
  }
  .mortgage__media {
    flex: none;
    height: 260px;
    min-height: 260px;
  }
  .mortgage__bg {
    height: 320px;
    margin-bottom: -200px;
  }
  .promo__wrap {
    flex-direction: column;
    align-items: stretch;
  }
  .promo-card { width: 100%; }
  .promo-card__title {
    flex-wrap: wrap;
    white-space: normal;
  }
  .portfolio__grid {
    grid-template-columns: 1fr;
  }
  .portfolio__feature-head span { white-space: normal; }
  .blog-toc { top: calc(90px + env(safe-area-inset-top, 0px)); }
}

/* Phones */
@media (max-width: 480px) {
  :root {
    --shell: 16px;
  }

  .guide::before { display: none; }

  .header__drawer {
    padding-inline: 16px;
  }
  .header__drawer-nav { font-size: 18px; }
  .header__drawer-nav a { padding: 14px 0; }

  /* Hero */
  .hero-section,
  .service-hero,
  .hero-section.service-hero {
    min-height: min(680px, 100svh);
  }
  .hero-section > img,
  .service-hero > img {
    object-position: center 32%;
  }
  .hero-section__content,
  .service-hero .hero-section__content {
    gap: 14px;
    padding-block: 40px 22px;
  }
  .hero-section__copy {
    flex: 0 0 auto;
    gap: 10px;
  }
  .hero-section h1 {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.04em;
  }
  .hero-section__lead {
    font-size: 16px;
    letter-spacing: -0.04em;
  }
  .hero-section__actions {
    gap: 10px;
  }
  .service-crumbs {
    font-size: 12px;
    gap: 6px;
  }

  /* Stats: stacked full-width */
  .stats { padding-block: 40px; }
  .stats__inner { justify-content: flex-start; }
  .stats__grid {
    width: 100%;
    margin: 0;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
  }
  .stat { width: 100%; }
  .stat strong { font-size: 56px; }

  /* Section heads */
  .section-heading--split {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
  }
  .section-heading--split h2 {
    width: 100%;
    max-width: none;
    font-size: 26px;
  }

  .founder,
  .projects,
  .portfolio,
  .mortgage,
  .services,
  .reviews,
  .overviews,
  .process,
  .faq {
    padding-block: 50px;
  }

  /* Founder: quote on top, portrait below */
  .founder__grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 48px;
  }
  .founder__portrait-wrap { width: 100%; }
  .founder__quote { padding: 16px; gap: 16px; }
  .founder__quote-top { align-items: flex-start; }
  .quote-mark { width: 40px; height: 40px; }
  .founder__quote-top p {
    max-width: 180px;
    font-size: 12px;
    text-align: right;
  }
  .founder__quote blockquote { font-size: 20px; }
  .founder__portrait { height: 420px; }
  .founder__portrait img {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center top;
  }
  .founder__name { font-size: 14px; bottom: 0; }

  /* Projects */
  .project-block { padding: 16px; gap: 20px; }
  .project-block + .project-block { margin-top: 16px; }
  .project-block__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .project-block__head h3 { font-size: 26px; margin-bottom: 12px; }
  .project-block__head p { font-size: 14px; }
  .project-block__grid--classic,
  .project-block__grid--modern,
  .project-block__pair {
    grid-template-columns: 1fr;
  }
  .project-card__media,
  .project-card--large .project-card__media { height: 166px; }
  .project-card h3 { font-size: 16px; }
  .meta span { font-size: 14px; }

  /* Promo */
  .promo {
    min-height: 629px;
    padding-block: 40px;
    display: flex;
    align-items: center;
  }
  .promo__wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .promo-card {
    width: 100%;
    padding: 16px;
    gap: 16px;
  }
  .promo-card__title {
    flex-wrap: wrap;
    white-space: normal;
    gap: 8px;
  }
  .promo-card__title h2,
  .promo-card__title strong { font-size: 24px; }
  .promo-card__media { height: 180px; }
  .promo-card p { font-size: 14px; }
  .promo__next { align-self: flex-start; width: 48px; height: 48px; }
  .promo__next img { width: 48px; height: 48px; }

  /* Portfolio — Figma 370:1011 mobile (no arrows) */
  .portfolio .section-heading--split {
    gap: 10px;
  }
  .portfolio .section-heading--split h2 {
    font-size: 24px;
  }
  .portfolio__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .portfolio__left { gap: 0; }
  .portfolio__left > .arrows { display: none; }
  .portfolio__feature > img { height: 150px; }
  .portfolio__feature-body { padding: 16px; gap: 16px; }
  .portfolio__feature-head {
    flex-direction: column;
    gap: 10px;
  }
  .portfolio__feature-head h3 { font-size: 24px; }
  .portfolio__feature-head span {
    font-size: 18px;
    white-space: normal;
  }
  .portfolio__feature-body > p { font-size: 18px; }
  .portfolio__thumbs {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .portfolio__thumbs img { height: 166px; }

  /* Mortgage — Figma mobile 370:1043 */
  .mortgage { padding-block: 50px; }
  .mortgage__shell { gap: 24px; }
  /* Concrete sits behind lower half / mid-card (Figma y:371 within 730 frame; section pad 50 → 321 in shell) */
  .mortgage__bg {
    position: absolute;
    left: calc(-1 * var(--shell));
    right: calc(-1 * var(--shell));
    top: 321px;
    width: auto;
    height: 479px;
    margin-bottom: 0;
  }
  .mortgage__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 0;
    min-height: 0;
    align-items: stretch;
  }
  .mortgage__copy {
    order: -1;
    width: 100%;
    gap: 24px;
    padding-top: 0;
  }
  .mortgage__copy-text {
    gap: 10px;
  }
  .mortgage__copy-text h2 {
    font-size: 24px;
    letter-spacing: -0.04em;
  }
  .mortgage__copy-text p { font-size: 16px; }
  .mortgage__arrows--mobile {
    display: flex;
  }
  .mortgage__arrows--desktop { display: none; }
  .mortgage__card {
    height: auto;
    min-height: 0;
    padding: 16px;
    gap: 10px;
    width: 100%;
  }
  .mortgage__media {
    flex: none;
    min-height: 220px;
    height: 220px;
  }
  .mortgage__card-body { gap: 16px; }
  .mortgage__card-body > p { font-size: 14px; }
  .mortgage__actions {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  .mortgage__actions .button { width: auto; }

  /* Services — 2 per row on phones */
  .services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .service-card,
  a.service-card {
    min-height: 250px;
    padding: 100px 10px 12px;
  }
  .service-card__media {
    width: min(100%, 140px);
    height: 88px;
  }
  .service-card h3 { font-size: 15px; }
  .service-card p { font-size: 12px; }

  /* Tour — Figma 370:1108 */
  .tour__grid {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    min-height: 0;
    padding: 50px var(--shell) 0;
  }
  .tour__copy {
    padding-block: 0;
    gap: 16px;
    width: 100%;
  }
  .tour__text { gap: 10px; }
  .tour__copy h2 {
    font-size: 24px;
    letter-spacing: -0.04em;
    max-width: none;
  }
  .tour__copy p {
    font-size: 16px;
    max-width: none;
  }
  .tour__image {
    flex: none;
    width: calc(100% + 2 * var(--shell));
    max-width: none;
    margin-left: calc(-1 * var(--shell));
    height: 244px;
    min-height: 244px;
  }

  /* Reviews */
  .reviews__widget { border-radius: 0; }

  /* Overviews */
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .overview-grid article { height: 420px; }

  /* Process */
  .process__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .process__grid article {
    height: auto !important;
    min-height: 160px;
    padding: 56px 20px 20px;
  }

  /* FAQ */
  .faq__grid {
    align-items: stretch;
    gap: 24px;
  }
  .faq__heading { flex-direction: column; }
  .faq__list { width: 100%; gap: 24px; }
  .faq-item button {
    font-size: 18px;
    gap: 12px;
  }
  .faq-item__toggle,
  .faq-item__toggle img {
    width: 32px;
    height: 32px;
  }
  .faq-item p {
    max-width: 100%;
    font-size: 14px;
  }

  /* Footer */
  .footer { padding-block: 50px 40px; }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .footer__contacts { max-width: none; }
  .footer__map { height: 280px; }
  .footer__mid {
    flex-direction: column;
    gap: 32px;
  }
  .footer__brand {
    justify-content: flex-start;
  }
  .footer__brand .logo,
  .logo--large .logo__img {
    width: 100%;
    max-height: none;
    height: auto;
  }
  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .feedback-modal { padding: 16px; }
  .feedback-modal__dialog { padding: 28px 20px 24px; }
  .feedback-form__head h2 { font-size: 24px; }
}

/* Feedback modal */
.feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(22, 22, 22, 0.72);
  animation: fade-in 0.25s ease both;
}
/* display:* overrides UA [hidden]{display:none} — keep hidden states invisible */
.feedback-modal[hidden],
.feedback-form[hidden],
.feedback-modal__success[hidden],
.feedback-form__error[hidden] {
  display: none !important;
}
.feedback-modal__dialog {
  position: relative;
  width: min(440px, 100%);
  padding: 40px 36px 32px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}
.feedback-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  opacity: 0.55;
}
.feedback-modal__close:hover { opacity: 1; }
.feedback-modal__close:disabled { opacity: 0.3; cursor: not-allowed; }

.feedback-form,
.feedback-modal__success {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feedback-form__head { display: grid; gap: 8px; margin-bottom: 4px; }
.feedback-form__head h2,
.feedback-modal__success h2 {
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}
.feedback-form__head p,
.feedback-modal__success p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}
.feedback-field {
  display: grid;
  gap: 8px;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.feedback-field span { color: rgba(36, 36, 36, 0.7); }
.feedback-field input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(36, 36, 36, 0.18);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: 400 16px/1.4 Inter, system-ui, sans-serif;
  outline: none;
}
.feedback-field input:focus {
  border-color: var(--blue);
}
.feedback-field input:disabled {
  opacity: 0.65;
}
.feedback-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(36, 36, 36, 0.7);
  letter-spacing: -0.02em;
}
.feedback-consent input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
  flex: 0 0 auto;
}
.feedback-consent a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.feedback-form__error {
  color: #b42318;
  font-size: 14px;
}
.feedback-form .button,
.feedback-modal__success .button {
  width: 100%;
}
.feedback-form .button:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

/* Privacy page — dark to match site header/footer and white logo assets */
.privacy-page {
  min-height: 100vh;
  background: var(--dark);
  color: #edf2f4;
}
.privacy {
  padding-block: 40px 80px;
  max-width: 860px;
}
.privacy__back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--blue2);
  font-size: 14px;
  letter-spacing: -0.02em;
}
.privacy__back:hover {
  color: #4a9ad4;
}
.privacy h1 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  line-height: 1.15;
  color: #fff;
}
.privacy__block + .privacy__block {
  margin-top: 40px;
}
.privacy h2 {
  font-size: 22px;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: #fff;
}
.privacy h3 {
  font-size: 18px;
  letter-spacing: -0.02em;
  margin: 24px 0 12px;
  color: #fff;
}
.privacy p,
.privacy li {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: rgba(237, 242, 244, 0.88);
  margin-bottom: 12px;
}
.privacy strong {
  color: #fff;
  font-weight: 600;
}
.privacy ul {
  padding-left: 1.2em;
  margin: 0 0 12px;
}
.privacy a {
  color: var(--blue2);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.privacy a:hover {
  color: #4a9ad4;
}
.privacy__operator {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: rgba(237, 242, 244, 0.65);
}
.privacy-footer {
  padding-block: 24px 40px;
  border-top: 1px solid var(--line);
  background: var(--dark);
}
.privacy-footer .logo__img {
  filter: none;
}

/* Service landings — same corporate system as homepage */
.service-page {
  min-height: 100vh;
  background: #fff;
}
.service-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.55);
}
.service-crumbs a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}
.service-crumbs a:hover {
  color: #fff;
}
.service-hero .hero-section__copy {
  gap: 20px;
}
.service-about {
  padding-block: 100px;
  background: #f3f3f3;
}
.service-about__lead {
  max-width: 780px;
  margin: 0 0 40px;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.04em;
  color: rgba(36, 36, 36, 0.72);
}
.service-includes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.service-include {
  background: #fff;
  min-height: 220px;
  padding: 150px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  position: relative;
  box-sizing: border-box;
}
.service-include span {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--blue);
  font: 500 16px/1.4 'Fira Sans', sans-serif;
  text-transform: uppercase;
}
.service-include > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-include h3 {
  font-size: 18px;
  letter-spacing: -0.04em;
}
.service-include p {
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: -0.04em;
  color: var(--muted);
}
.process__grid--service {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
a.service-card {
  color: inherit;
  transition: transform 0.2s ease;
}
a.service-card:hover {
  transform: translateY(-2px);
}
a.service-card .service-card__more {
  margin-top: auto;
  font-size: 14px;
  letter-spacing: -0.04em;
  color: var(--blue);
}

/* GEO blocks on service landings */
.service-geo {
  padding-block: 72px;
  background: #fff;
}
.service-answer {
  max-width: 860px;
  margin-bottom: 40px;
  padding: 28px 28px 24px;
  background: #f3f3f3;
  border-left: 3px solid var(--blue);
}
.service-answer strong {
  display: block;
  margin-bottom: 12px;
  font: 600 14px/1.3 'Fira Sans', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
}
.service-answer ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}
.service-answer li {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: rgba(36, 36, 36, 0.82);
}
.service-compare h2 {
  margin: 0 0 20px;
  font-size: 28px;
  letter-spacing: -0.04em;
}
.service-compare__wrap {
  overflow-x: auto;
}
.service-compare table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 15px;
  letter-spacing: -0.03em;
}
.service-compare th,
.service-compare td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.service-compare th {
  font: 600 13px/1.3 'Fira Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: #f8f8f8;
}
.service-why,
.service-cases,
.service-glossary {
  padding-block: 80px;
}
.service-why { background: #f3f3f3; }
.service-cases { background: #fff; }
.service-glossary { background: #f8f8f8; padding-block: 64px; }
.service-glossary h2 {
  margin: 0 0 24px;
  font-size: 28px;
  letter-spacing: -0.04em;
}
.service-why__grid,
.service-cases__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.service-why__item,
.service-case {
  background: #fff;
  padding: 24px;
  display: grid;
  gap: 10px;
}
.service-case {
  background: #f3f3f3;
}
.service-why__item h3,
.service-case span {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.04em;
}
.service-case span {
  color: var(--blue);
  font: 600 14px/1.3 'Fira Sans', sans-serif;
}
.service-why__item p,
.service-case p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: var(--muted);
}
.service-blog-line,
.service-hub-link {
  margin: 28px 0 0;
  font-size: 15px;
  letter-spacing: -0.03em;
}
.service-blog-line a,
.service-hub-link a {
  color: var(--blue);
}
.footer__legal-note {
  margin: 8px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.blog-author {
  margin: 8px 0 0;
  font-size: 14px;
  letter-spacing: -0.03em;
  color: rgba(36, 36, 36, 0.62);
}
.blog-author a { color: var(--blue); }

/* About page */
.about-page { min-height: 100vh; background: #fff; }
.about-hero { padding-block: 100px 72px; }
.about-hero__lead {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.72);
}
.about-founder { padding-block: 80px; background: #f3f3f3; }
.about-founder__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: center;
}
.about-founder__media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.about-founder__copy {
  display: grid;
  gap: 14px;
}
.about-founder__copy h2 {
  margin: 0;
  font-size: 36px;
  letter-spacing: -0.04em;
}
.about-founder__role {
  margin: 0;
  font-size: 16px;
  color: var(--blue);
}
.about-founder__copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.03em;
  color: rgba(36, 36, 36, 0.78);
}
.about-approach,
.about-legal { padding-block: 80px; }
.about-legal { background: #f8f8f8; }
.about-legal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 28px;
}
.about-legal__grid p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.03em;
}
.about-legal__note {
  margin: 24px 0 0;
  font-size: 14px;
  color: var(--muted);
}
.about-legal__note a { color: var(--blue); }
.stats__grid:has(.stat:nth-child(4)) {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .process__grid--service {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process__grid--service article {
    height: auto !important;
    min-height: 180px;
    padding-top: 72px;
  }
  .service-includes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-include {
    min-height: 0;
    padding: 72px 16px 16px;
  }
  .service-about__lead {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .service-compare__wrap {
    -webkit-overflow-scrolling: touch;
  }
  .about-founder__grid,
  .about-legal__grid,
  .stats__grid:has(.stat:nth-child(4)) {
    grid-template-columns: 1fr 1fr;
  }
  /* Хаб /uslugi/ и связанные услуги — стабильная 2-колоночная сетка */
  .service-page .services__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .service-page .service-card,
  .service-page a.service-card {
    min-height: 240px;
    padding: 112px 14px 14px;
  }
  .service-page .service-card__media {
    width: min(100%, 200px);
    height: 100px;
  }
}
@media (max-width: 720px) {
  :root { --shell: 20px; }

  .process__grid,
  .process__grid--service,
  .overview-grid,
  .review-list {
    grid-template-columns: 1fr;
  }

  .services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    overflow: visible;
    margin-right: 0;
    padding-right: 0;
    scroll-snap-type: none;
  }
  .service-card,
  a.service-card {
    flex: none;
    min-width: 0;
    min-height: 240px;
    padding: 100px 12px 14px;
  }
  .service-card__media {
    width: min(100%, 140px);
    height: 88px;
  }
  .service-card h3 { font-size: 15px; }
  .service-card p {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .service-card__more { font-size: 13px; }

  .service-page .hero-section,
  .service-page .service-hero,
  .service-page .hero-section.service-hero {
    min-height: min(640px, 100svh);
  }
  .service-page .hero-section__content {
    padding-block: 32px 24px;
  }

  .process__grid article {
    height: auto !important;
    min-height: 160px;
  }
  .faq__heading {
    flex-direction: column;
    align-items: flex-start;
  }
  .faq__list { width: 100%; }

  .stats__grid {
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
  }
  .stat { width: calc(50% - 10px); min-width: 140px; }
  .stat strong { font-size: 48px; }

  /* Founder / projects / promo / portfolio / mortgage — tablet+phone stack */
  .founder__grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }
  .founder__portrait-wrap { width: 100%; }
  .founder__portrait { height: 440px; }
  .founder__portrait img {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center top;
  }

  .project-block__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .project-block__grid--classic,
  .project-block__grid--modern,
  .project-block__pair {
    grid-template-columns: 1fr;
  }

  .promo {
    min-height: 0;
    padding-block: 56px;
  }
  .promo__wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .promo-card { width: 100%; }
  .promo-card__title {
    flex-wrap: wrap;
    white-space: normal;
  }
  .promo-card__title h2,
  .promo-card__title strong { font-size: 26px; }
  .promo-card__media { height: 200px; }

  .portfolio__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .portfolio__feature-head {
    flex-wrap: wrap;
  }
  .portfolio__feature-head span { white-space: normal; }

  .mortgage__bg {
    position: absolute;
    left: calc(-1 * var(--shell));
    right: calc(-1 * var(--shell));
    top: 280px;
    width: auto;
    height: 420px;
    margin-bottom: 0;
  }
  .mortgage__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 0;
    min-height: 0;
    grid-template-columns: none;
  }
  .mortgage__copy {
    order: -1;
    width: 100%;
    padding-top: 0;
    gap: 20px;
  }
  .mortgage__copy-text h2 { font-size: 26px; }
  .mortgage__arrows--mobile { display: flex; }
  .mortgage__arrows--desktop { display: none; }
  .mortgage__card {
    width: 100%;
    height: auto;
    min-height: 0;
  }
  .mortgage__media {
    flex: none;
    min-height: 220px;
    height: 220px;
  }
  .mortgage__actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .tour__grid {
    flex-direction: column;
    min-height: 0;
    padding: 56px var(--shell) 0;
    gap: 28px;
  }
  .tour__copy {
    width: 100%;
    padding-block: 0;
  }
  .tour__image {
    flex: none;
    width: calc(100% + 2 * var(--shell));
    max-width: none;
    margin-left: calc(-1 * var(--shell));
    min-height: 260px;
    height: 260px;
  }
  .tour__copy .button { width: 100%; }

  .footer__nav-cols,
  .footer__nav-cols--service {
    flex-direction: column;
    gap: 28px;
    width: 100%;
  }
  .footer__nav-cols div,
  .footer__nav-services {
    gap: 14px;
  }
  .footer__brand {
    width: 100%;
    justify-content: flex-start;
  }

  .service-about,
  .service-geo,
  .service-why,
  .service-cases,
  .about-founder,
  .about-approach,
  .about-legal,
  .about-hero {
    padding-block: 56px;
  }
  .service-includes,
  .service-why__grid,
  .service-cases__grid,
  .about-founder__grid,
  .about-legal__grid,
  .stats__grid:has(.stat:nth-child(4)) {
    grid-template-columns: 1fr;
  }
  .service-include {
    min-height: 0;
    padding-top: 72px;
  }
  .service-answer {
    padding: 20px;
  }
  .service-compare table {
    font-size: 13px;
    min-width: 480px;
  }
  .service-compare th,
  .service-compare td {
    padding: 10px 12px;
  }
  .about-founder__media img {
    height: 400px;
    object-fit: cover;
    object-position: center top;
  }
  .service-compare h2,
  .service-glossary h2,
  .about-founder__copy h2,
  .about-hero h1 {
    font-size: 24px;
  }
  .about-hero__lead {
    font-size: 16px;
  }
  .founder__more {
    margin-top: 12px;
  }
  .scroll-top {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    width: 44px;
    height: 44px;
  }
  .process__grid--service article {
    height: auto !important;
    padding-top: 72px;
  }
}

/* ===== Blog ===== */
.blog-page { background: #fff; min-height: 100vh; }
.blog-crumbs { color: rgba(36, 36, 36, 0.45); margin-bottom: 20px; }
.blog-crumbs a { color: rgba(36, 36, 36, 0.7); }
.blog-crumbs a:hover { color: var(--blue); }
.dark .blog-crumbs,
.dark .blog-crumbs a { color: rgba(255, 255, 255, 0.65); }
.dark .blog-crumbs a:hover { color: #fff; }
.blog-article__head { padding-block: 40px 24px; }
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: -0.04em;
  color: var(--muted);
}
.blog-article__head h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  max-width: 18em;
  margin-bottom: 12px;
}
.blog-lead {
  font-size: 16px;
  letter-spacing: -0.04em;
  color: var(--muted);
}
.blog-hero-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 var(--shell) 40px;
  box-sizing: border-box;
}
.blog-hero {
  margin: 0;
  width: 780px;
  max-width: 100%;
}
.blog-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  background: #111;
  display: block;
}
.blog-hero__caption {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--muted);
  text-align: center;
}
.blog-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  column-gap: 48px;
  align-items: start;
  padding-bottom: 40px;
  min-width: 0;
}
.blog-content {
  min-width: 0;
  max-width: 780px;
  overflow-wrap: anywhere;
}
.blog-answer {
  background: #f3f3f3;
  padding: 24px 28px;
  margin-bottom: 36px;
  border-left: 3px solid var(--blue);
}
.blog-answer strong {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--blue);
}
.blog-answer p {
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.03em;
}
.blog-section { margin-bottom: 40px; }
.blog-section h2 {
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.blog-section h3 {
  font-size: 18px;
  letter-spacing: -0.03em;
  margin: 20px 0 10px;
  line-height: 1.25;
}
.blog-section p,
.blog-section li {
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: rgba(36, 36, 36, 0.86);
  margin-bottom: 12px;
}
.blog-section ul,
.blog-section ol { padding-left: 1.2em; margin: 0 0 12px; }
.blog-section a {
  color: var(--blue);
  border-bottom: 1px solid rgba(14, 91, 164, 0.3);
}
.blog-section a:hover { color: var(--blue2); }
.blog-keypoints { list-style: none; padding: 0; margin: 0; }
.blog-keypoints li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--line-dark);
  margin: 0;
}
.blog-keypoints li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.blog-toc {
  position: sticky;
  top: 98px;
  align-self: start;
  z-index: 2;
}
.blog-toc__inner {
  background: #f3f3f3;
  border: 1px solid var(--line-dark);
  padding: 20px 22px;
}
.blog-toc strong {
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: rgba(36, 36, 36, 0.55);
}
.blog-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.blog-toc a {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}
.blog-toc a span {
  color: var(--blue);
  font: 500 13px/1.4 'Fira Sans', sans-serif;
  min-width: 1.1em;
  flex: 0 0 auto;
}
.blog-toc a:hover { color: var(--blue); }
.blog-glossary { margin: 0; display: grid; gap: 16px; }
.blog-glossary__item {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
}
.blog-glossary dt {
  font-weight: 600;
  letter-spacing: -0.03em;
}
.blog-glossary dd {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}
.blog-note {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
  margin: 24px 0 12px;
}
.blog-services-line {
  font-size: 15px;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}
.blog-services-line a { color: var(--blue); }
.blog-related { padding-block: 80px; }
.blog-related__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.blog-related__card {
  display: grid;
  gap: 10px;
  padding: 24px;
  background: #f3f3f3;
  color: inherit;
  transition: transform 0.2s ease;
}
.blog-related__card:hover { transform: translateY(-2px); }
.blog-related__cat {
  font-size: 13px;
  color: var(--blue);
  letter-spacing: -0.04em;
}
.blog-related__card strong {
  font-size: 18px;
  letter-spacing: -0.04em;
  line-height: 1.25;
}
.blog-related__card span:last-child {
  font-size: 13px;
  color: var(--muted);
}
.blog-index-hero { padding-block: 56px 40px; }
.blog-index-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
}
.blog-index-hero__lead {
  max-width: 40em;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.03em;
}
.blog-index { padding-block: 64px 100px; }
.blog-index__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.blog-index__card {
  display: grid;
  background: #f3f3f3;
  color: inherit;
  transition: transform 0.2s ease;
}
.blog-index__card:hover { transform: translateY(-2px); }
.blog-index__media { overflow: hidden; }
.blog-index__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}
.blog-index__body {
  display: grid;
  gap: 12px;
  padding: 24px;
}
.blog-index__body h2 {
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.blog-index__body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.03em;
}

@media (max-width: 1100px) {
  .blog-layout {
    grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
    column-gap: 28px;
  }
}
@media (max-width: 900px) {
  .blog-layout {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 24px;
  }
  .blog-toc {
    position: static;
    order: -1;
    width: 100%;
  }
  .blog-toc__inner {
    position: static;
  }
  .blog-toc ol {
    display: grid;
    gap: 0;
  }
  .blog-content { max-width: none; width: 100%; }
  .blog-related__grid,
  .blog-index__grid { grid-template-columns: 1fr; }
  .blog-hero img { height: 240px; }
  .blog-article__head h1 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.15;
  }
  .blog-answer {
    padding: 18px;
  }
  .blog-keypoints {
    padding-left: 0;
  }
  .blog-section h2 {
    font-size: 22px;
  }
  .blog-meta {
    flex-wrap: wrap;
    gap: 8px 12px;
  }
  .blog-author {
    font-size: 13px;
  }
  .tour__grid {
    flex-direction: column;
  }
  .tour__copy,
  .tour__image { width: 100%; }
  .tour__copy .button { width: 100%; }
  .footer__nav-cols--service {
    flex-direction: column;
  }
  .blog-article__head { padding-block: 28px 16px; }
  .blog-index-hero { padding-block: 36px 28px; }
  .blog-index-hero h1 {
    font-size: clamp(26px, 7vw, 34px);
  }
  .blog-index-hero__lead {
    font-size: 16px;
  }
  .button {
    white-space: normal;
    text-align: center;
    min-height: 48px;
  }
  .feedback-modal {
    padding: 12px;
    align-items: flex-end;
    place-items: end center;
  }
  .feedback-modal__dialog {
    width: 100%;
    max-height: min(92svh, 100%);
    overflow-y: auto;
    padding: 28px 18px calc(20px + env(safe-area-inset-bottom, 0px));
  }
}

/* Narrow phones */
@media (max-width: 380px) {
  :root { --shell: 14px; }
  .hero-section h1 { font-size: 26px; }
  .stat strong { font-size: 48px; }
  .service-card,
  a.service-card {
    min-height: 230px;
    padding: 92px 8px 10px;
  }
  .service-card__media {
    width: min(100%, 120px);
    height: 80px;
  }
  .promo-card__title h2,
  .promo-card__title strong { font-size: 20px; }
  .mortgage__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .mortgage__actions .button { width: 100%; }
}

