/* ============================================
   Федеральная карта БФЛ — Styles
   ============================================ */

:root {
  --color-primary: #0B5BD3;
  --color-primary-light: #EEF4FF;
  --color-primary-lighter: #EAF2FF;
  --color-bg-main: #F4F7FB;
  --color-bg-card: #F7FAFF;
  --color-white: #FFFFFF;
  --color-text-dark: #0E1A2F;
  --color-text-heading: #0F223D;
  --color-text-body: #48617D;
  --color-text-card: #4E6683;
  --color-border: #DCE7F6;
  --color-border-light: #DDE4EE;

  --font-heading: 'Lora', serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 12px;
  --radius-md: 14px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background: var(--color-bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s, transform 0.15s;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.9;
}

.btn:active {
  transform: scale(0.98);
}

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

.btn--outline {
  background: #F3F8FF;
  color: #163963;
  border: 1px solid #B9D0F0;
}

.btn--lg {
  height: 52px;
  padding: 0 24px;
  font-size: 15px;
}

.btn--xl {
  height: 54px;
  padding: 0 24px;
  font-size: 16px;
}

/* ============================================
   Header
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
  transition: box-shadow 0.3s;
}

.header--scrolled {
  box-shadow: 0 2px 12px rgba(11, 91, 211, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  padding: 0 72px;
  max-width: 1440px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.logo__text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: #14233B;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: #1C2E4A;
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--color-primary);
}

.header__cta {
  height: 44px;
  padding: 0 20px;
  font-size: 14px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 110;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1C2E4A;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  background: var(--color-bg-main);
}

.hero__inner {
  display: flex;
  gap: 40px;
  padding: 64px 72px;
  max-width: 1440px;
  margin: 0 auto;
}

.hero__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 600;
  line-height: 1.05;
  color: var(--color-text-dark);
}

.hero__subtitle {
  font-size: 19px;
  line-height: 1.4;
  color: #415673;
}

.hero__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 12px;
}

.stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: var(--color-white);
  border: 1px solid #DCE6F5;
  border-radius: var(--radius-md);
  min-height: 96px;
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  color: #10233E;
}

.stat-card__label {
  font-size: 12px;
  font-weight: 500;
  color: #5C708E;
}

.hero__right {
  width: 600px;
  flex-shrink: 0;
}

.map-card {
  background: var(--color-white);
  border: 1px solid #DDE6F5;
  border-radius: var(--radius-xl);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-card__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.map-card__cities {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.city-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  background: var(--color-primary-light);
  color: #24508A;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-pill);
}

.map-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 4px;
}

.map-card__legend {
  font-size: 13px;
  font-weight: 500;
  color: #365374;
}

.map-card__count {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ============================================
   Section shared
   ============================================ */

.section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-pill);
}

.badge--alt {
  background: var(--color-primary-lighter);
}

.section__title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  color: #10223C;
  margin-top: 16px;
}

.section__subtitle {
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-text-body);
  margin-top: 12px;
  max-width: 720px;
}

/* ============================================
   Advantages
   ============================================ */

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

.advantages__grid {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.advantage-card {
  flex: 1;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.advantage-card__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: #0F2440;
}

.advantage-card__desc {
  font-size: 14px;
  line-height: 1.45;
  color: var(--color-text-card);
}

/* ============================================
   How It Works
   ============================================ */

.how-it-works {
  background: var(--color-bg-main);
}

.how-it-works .section__title {
  font-size: 40px;
}

.how-it-works .section__subtitle {
  font-size: 17px;
}

.steps__grid {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

.step-card {
  flex: 1;
  background: var(--color-white);
  border: 1px solid #D9E6F7;
  border-radius: var(--radius-md);
  padding: 18px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-card__number {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
}

.step-card__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: #132843;
}

.step-card__desc {
  font-size: 14px;
  line-height: 1.4;
  color: #4E6682;
}

/* ============================================
   Reviews
   ============================================ */

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

.reviews .section__title {
  font-size: 40px;
}

.reviews .section__subtitle {
  font-size: 17px;
}

.reviews__grid {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.review-card {
  flex: 1;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card__quote {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: #122742;
}

.review-card__text {
  font-size: 15px;
  line-height: 1.45;
  color: #4D6582;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  background: var(--color-bg-main);
}

.faq .section__title {
  font-size: 38px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid #D9E5F5;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 18px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: #132741;
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

.faq-item__icon {
  flex-shrink: 0;
  color: #48617D;
  transition: transform 0.3s;
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item__answer p {
  padding: 0 18px 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #4D6582;
}

.faq-item.active .faq-item__answer {
  max-height: 200px;
}

/* ============================================
   Final CTA
   ============================================ */

.final-cta {
  background: var(--color-primary-lighter);
}

.final-cta .section__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.final-cta__title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.08;
  color: var(--color-text-heading);
}

.final-cta__subtitle {
  font-size: 18px;
  line-height: 1.4;
  color: #496280;
}

.final-cta .btn {
  align-self: flex-start;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--color-white);
  border-top: 1px solid #DCE6F5;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 72px;
  max-width: 1440px;
  margin: 0 auto;
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: #112640;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 14px;
  font-weight: 500;
  color: #3F5877;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--color-primary);
}

/* ============================================
   Legal Pages
   ============================================ */

.legal-page {
  background: var(--color-white);
}

.legal-page__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--color-text-heading);
  margin-bottom: 24px;
}

.legal-page__content h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-heading);
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-page__content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-body);
  margin-bottom: 10px;
}

.legal-page__content ul {
  padding-left: 24px;
  margin-bottom: 10px;
}

.legal-page__content li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-body);
  margin-bottom: 4px;
}

/* ============================================
   Footer Legal
   ============================================ */

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 72px 24px;
  max-width: 1440px;
  margin: 0 auto;
}

.footer__legal a {
  font-size: 12px;
  font-weight: 400;
  color: #6B84A1;
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: var(--color-primary);
}

.footer__legal-sep {
  font-size: 12px;
  color: #6B84A1;
}

/* ============================================
   Modal
   ============================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  padding: 16px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  background: var(--color-white);
  max-width: 480px;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  transition: transform 0.25s;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #48617D;
  border-radius: 8px;
  transition: background 0.2s;
}

.modal__close:hover {
  background: var(--color-bg-main);
}

.modal__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text-heading);
}

.modal__subtitle {
  font-size: 14px;
  color: var(--color-text-body);
  margin-top: 6px;
  margin-bottom: 20px;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-heading);
}

.form-input {
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-dark);
  background: var(--color-white);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: var(--color-primary);
}

.form-input::placeholder {
  color: #9BAFC7;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2348617D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--color-text-body);
  line-height: 1.4;
  position: relative;
}

.form-checkbox input[type="checkbox"] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.form-checkbox__box {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.form-checkbox__box svg {
  width: 12px;
  height: 12px;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.15s, transform 0.15s;
}

.form-checkbox:hover .form-checkbox__box {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(11, 91, 211, 0.1);
}

.form-checkbox input[type="checkbox"]:checked + .form-checkbox__box {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.form-checkbox input[type="checkbox"]:checked + .form-checkbox__box svg {
  opacity: 1;
  transform: scale(1);
}

.form-checkbox input[type="checkbox"]:focus-visible + .form-checkbox__box {
  box-shadow: 0 0 0 3px rgba(11, 91, 211, 0.25);
}

.form-checkbox a {
  color: var(--color-primary);
  text-decoration: underline;
}

.form-checkbox a:hover {
  text-decoration: none;
}

.modal__submit {
  width: 100%;
  height: 52px;
  font-size: 15px;
  margin-top: 4px;
}

.modal__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================================
   Cookie Banner
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding: 16px 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner__text {
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text-body);
}

.cookie-banner__text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-banner__text a:hover {
  text-decoration: none;
}

.cookie-banner__btn {
  height: 40px;
  padding: 0 24px;
  font-size: 14px;
  flex-shrink: 0;
}

/* ============================================
   Tablet (768–1024px)
   ============================================ */

@media (max-width: 1024px) {
  /* Header — tablet */
  .header__inner {
    padding: 0 32px;
    height: 76px;
  }

  .logo__text {
    font-size: 20px;
  }

  .nav {
    gap: 20px;
  }

  .nav__link {
    font-size: 13px;
  }

  .header__cta {
    height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }

  /* Hero — tablet: stack columns */
  .hero__inner {
    flex-direction: column;
    padding: 48px 32px;
    gap: 32px;
  }

  .hero__right {
    width: 100%;
  }

  .hero__title {
    font-size: 42px;
  }

  .hero__subtitle {
    font-size: 17px;
  }

  .hero__cta-row .btn {
    font-size: 14px;
    height: 48px;
    padding: 0 20px;
  }

  .hero__stats {
    gap: 10px;
  }

  .stat-card__number {
    font-size: 28px;
  }

  .stat-card__label {
    font-size: 11px;
  }

  .map-card__img {
    height: 320px;
  }

  .map-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    height: auto;
  }

  /* Sections — tablet */
  .section__inner {
    padding: 48px 32px;
  }

  .section__title {
    font-size: 36px;
  }

  .section__subtitle {
    font-size: 16px;
  }

  /* Advantages — 2 columns on tablet */
  .advantages__grid {
    flex-wrap: wrap;
  }

  .advantage-card {
    flex: 1 1 calc(50% - 7px);
    min-height: 160px;
  }

  .advantage-card__title {
    font-size: 22px;
  }

  /* Steps — 3 columns still fit on wide tablet, stack on narrow */
  .steps__grid {
    flex-wrap: wrap;
  }

  .step-card {
    flex: 1 1 calc(33.333% - 10px);
    min-height: 150px;
  }

  .step-card__title {
    font-size: 22px;
  }

  .how-it-works .section__title {
    font-size: 34px;
  }

  /* Reviews — keep 2 columns but reduce height */
  .reviews__grid {
    gap: 14px;
  }

  .review-card {
    min-height: 190px;
    padding: 20px;
  }

  .review-card__quote {
    font-size: 24px;
  }

  .reviews .section__title {
    font-size: 34px;
  }

  /* FAQ — tablet */
  .faq .section__title {
    font-size: 32px;
  }

  .faq-item__question {
    font-size: 18px;
  }

  /* Final CTA — tablet */
  .final-cta__title {
    font-size: 34px;
  }

  .final-cta__subtitle {
    font-size: 16px;
  }

  /* Footer — tablet */
  .footer__inner {
    padding: 24px 32px;
  }

  .footer__brand {
    font-size: 22px;
  }

  .footer__links {
    gap: 20px;
  }

  .footer__links a {
    font-size: 13px;
  }

  .footer__legal {
    padding: 0 32px 20px;
  }

  /* Cookie Banner — tablet */
  .cookie-banner {
    padding: 16px 32px;
  }
}

/* ============================================
   Small Tablet / Large Phone (768–900px)
   ============================================ */

@media (max-width: 900px) {
  /* Header — show burger, hide desktop nav */
  .nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 32px;
    gap: 24px;
    z-index: 99;
  }

  .nav.open {
    display: flex;
  }

  .nav__link {
    font-size: 18px;
  }

  .header__cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  /* Steps — stack to 1 column */
  .step-card {
    flex: 1 1 100%;
  }

  /* Reviews — stack to 1 column */
  .reviews__grid {
    flex-direction: column;
  }

  .review-card {
    min-height: auto;
  }
}

/* ============================================
   Mobile (< 768px)
   ============================================ */

@media (max-width: 767px) {
  .header__inner {
    padding: 0 16px;
    height: 64px;
  }

  .logo__text {
    font-size: 18px;
  }

  .nav {
    top: 64px;
  }

  .nav .nav__cta-mobile {
    display: inline-flex;
    margin-top: 16px;
  }

  /* Hero */
  .hero__inner {
    flex-direction: column;
    padding: 32px 16px;
    gap: 24px;
  }

  .hero__right {
    width: 100%;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__cta-row {
    flex-direction: column;
  }

  .hero__cta-row .btn {
    width: 100%;
  }

  .hero__stats {
    flex-direction: row;
    gap: 8px;
  }

  .stat-card__number {
    font-size: 24px;
  }

  .stat-card {
    padding: 12px;
    min-height: auto;
  }

  .map-card__img {
    height: 240px;
  }

  .map-card__cities {
    flex-wrap: wrap;
  }

  .map-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    height: auto;
  }

  .map-card__legend {
    font-size: 12px;
  }

  /* Sections */
  .section__inner {
    padding: 40px 16px;
  }

  .section__title {
    font-size: 28px;
  }

  .section__subtitle {
    font-size: 16px;
  }

  /* Advantages */
  .advantages__grid {
    flex-direction: column;
  }

  .advantage-card {
    min-height: auto;
  }

  .advantage-card__title {
    font-size: 20px;
  }

  /* Steps */
  .steps__grid {
    flex-direction: column;
  }

  .step-card {
    min-height: auto;
  }

  .step-card__title {
    font-size: 20px;
  }

  /* Reviews */
  .reviews__grid {
    flex-direction: column;
  }

  .review-card {
    min-height: auto;
  }

  .review-card__quote {
    font-size: 22px;
  }

  /* FAQ */
  .faq .section__title {
    font-size: 26px;
  }

  .faq-item__question {
    font-size: 17px;
    padding: 14px 16px;
  }

  .faq-item__answer p {
    padding: 0 16px 14px;
    font-size: 14px;
  }

  /* Final CTA */
  .final-cta__title {
    font-size: 28px;
  }

  .final-cta__subtitle {
    font-size: 16px;
  }

  .final-cta .btn {
    width: 100%;
    align-self: stretch;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    gap: 16px;
    padding: 24px 16px;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .footer__brand {
    font-size: 20px;
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 16px 20px;
    gap: 6px;
  }

  /* Modal — mobile */
  .modal {
    padding: 24px;
    border-radius: var(--radius-sm);
  }

  .modal__title {
    font-size: 24px;
  }

  /* Cookie Banner — mobile */
  .cookie-banner {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
    text-align: center;
  }

  .cookie-banner__btn {
    width: 100%;
  }
}
