:root {
  --font-family: "Quicksand", sans-serif;
  --font-size-base: 16.9px;
  --line-height-base: 1.74;

  --max-w: 960px;
  --space-x: 1.35rem;
  --space-y: 1.5rem;
  --gap: 0.93rem;
  --space-section-y: calc(var(--space-y) * 2.4);
  --space-section-x: var(--space-x);
  --space-block: calc(var(--gap) * 1.5);
  --space-card: calc(var(--space-y) * .75);
  --font-size-sm: calc(var(--font-size-base) * .875);
  --font-size-md: var(--font-size-base);
  --font-size-lg: calc(var(--font-size-base) * 1.125);
  --font-size-h3: calc(var(--font-size-base) * 1.35);
  --font-size-h2: calc(var(--font-size-base) * 2);
  --font-size-h1: calc(var(--font-size-base) * 2.65);
  --motion-distance: calc(var(--gap) * var(--random-number));

  --radius-xl: 0.67rem;
  --radius-lg: 0.46rem;
  --radius-md: 0.32rem;
  --radius-sm: 0.22rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 3px 12px rgba(0,0,0,0.05);
  --shadow-lg: 0 14px 20px rgba(0,0,0,0.06);

  --overlay: rgba(0,0,0,0.4);
  --anim-duration: 530ms;
  --anim-ease: cubic-bezier(0.4,0,0.2,1);
  --random-number: 1;

  --brand: #2A9D8F;
  --brand-contrast: #FFFFFF;
  --accent: #E76F51;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F0E8;
  --neutral-300: #D9CFC0;
  --neutral-600: #6B5D4F;
  --neutral-800: #3A322B;
  --neutral-900: #1F1B17;

  --page-bg: #FDF8F0;
  --page-fg: #3A322B;
  --muted-bg: #F5E6D8;
  --muted-fg: #3A322B;
  --card-bg: #FFFFFF;
  --card-fg: #3A322B;
  --card-border: #E8DCCB;
  --inverse-bg: #2A3D3A;
  --inverse-fg: #FFFFFF;
  --primary-bg: #2A9D8F;
  --primary-fg: #FFFFFF;
  --primary-hover: #21867A;
  --accent-bg: #E76F51;
  --accent-fg: #FFFFFF;
  --accent-hover: #D65A3B;
  --gradient-hero-bg: linear-gradient(135deg, #FDF8F0 0%, #F5E6D8 100%);
  --gradient-hero-fg: #3A322B;
  --gradient-accent-bg: linear-gradient(135deg, #2A9D8F 0%, #E76F51 100%);
  --gradient-accent-fg: #FFFFFF;

  --ring: #2A9D8F;

  --link: #2A9D8F;
  --link-hover: #E76F51;

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: color-mix(in srgb, currentColor 10%, transparent);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}
a{color:inherit;}
.btn-primary,.btn.btn-primary{background:var(--primary-bg)!important;color:var(--primary-fg)!important;border-color:var(--primary-bg)!important;}
.btn-primary:hover,.btn.btn-primary:hover{background:var(--primary-hover)!important;color:var(--primary-fg)!important;border-color:var(--primary-hover)!important;}
.btn-outline-primary{color:var(--primary-bg)!important;border-color:var(--primary-bg)!important;}
.btn-outline-primary:hover{background:var(--primary-bg)!important;color:var(--primary-fg)!important;}
.bg-primary{background:var(--primary-bg)!important;color:var(--primary-fg)!important;}
.text-primary{color:var(--primary-bg)!important;}
.border-primary{border-color:var(--primary-bg)!important;}
.bg-light{background:var(--page-bg)!important;color:var(--page-fg)!important;}
.bg-dark{background:var(--inverse-bg)!important;color:var(--inverse-fg)!important;}

.site-header {
    background: var(--page-bg);
    border-bottom: 2px solid var(--card-border);
    width: 100%;
    position: relative;
    z-index: 100;
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    min-height: 72px;
  }

  .logo {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--page-fg);
    text-decoration: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .header-nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 1.2);
  }

  .header-nav-left {
    justify-content: flex-start;
    flex: 1;
  }

  .header-nav-right {
    justify-content: flex-end;
    flex: 1;
  }

  .nav-link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--page-fg);
    text-decoration: none;
    padding: 0.4rem 0.2rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-bg);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
  }

  .nav-link:hover {
    color: var(--primary-bg);
  }

  .nav-link:hover::after {
    transform: scaleX(1);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--muted-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--card-border);
  }

  .burger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--page-fg);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .mobile-menu {
    display: none;
    background: var(--page-bg);
    border-top: 1px solid var(--card-border);
    padding: var(--space-y) var(--space-x);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }

  .mobile-menu.is-open {
    max-height: 400px;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .mobile-link {
    font-size: var(--font-size-md);
    font-weight: 500;
    color: var(--page-fg);
    text-decoration: none;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--card-border);
    transition: color var(--anim-duration) var(--anim-ease), padding-left var(--anim-duration) var(--anim-ease);
  }

  .mobile-link:last-child {
    border-bottom: none;
  }

  .mobile-link:hover {
    color: var(--primary-bg);
    padding-left: 0.5rem;
  }

  @media (max-width: 767px) {
    .header-inner {
      min-height: 60px;
      padding: calc(var(--space-y) * 0.6) var(--space-x);
    }

    .header-nav {
      display: none;
    }

    .burger {
      display: flex;
    }

    .logo {
      font-size: var(--font-size-md);
      flex: 1;
      text-align: center;
    }

    .mobile-menu {
      display: block;
    }
  }

  @media (min-width: 768px) {
    .mobile-menu {
      display: none !important;
    }
  }

.site-footer{padding:var(--space-section-y) var(--space-section-x);font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);background:var(--inverse-bg);color:var(--inverse-fg);}.footer-container{max-width:var(--max-w);margin:0 auto;display:flex;flex-direction:column;gap:var(--space-block)}.footer-contact{display:flex;flex-wrap:wrap;gap:var(--gap);align-items:baseline}.footer-address{font-style:normal;color:inherit}.footer-phone,
  .footer-email{color:inherit;text-decoration:none;border-bottom:1px solid currentColor;transition:opacity var(--anim-duration) var(--anim-ease)}.footer-phone:hover,
  .footer-email:hover{opacity:0.8}.footer-brand{display:flex;justify-content:center}.footer-logo{font-size:var(--font-size-h2);font-weight:700;letter-spacing:0.02em;color:inherit}.footer-nav{width:100%}.footer-menu{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(3, 1fr);gap:var(--gap)}.footer-menu a{color:inherit;text-decoration:none;font-size:var(--font-size-sm);transition:opacity var(--anim-duration) var(--anim-ease)}.footer-menu a:hover{opacity:0.8;text-decoration:underline;color:inherit}.footer-legal{display:flex;gap:var(--space-block);flex-wrap:wrap;justify-content:center;border-top:1px solid currentColor;padding-top:var(--space-block)}.footer-legal a{color:inherit;text-decoration:none;font-size:var(--font-size-sm);transition:opacity var(--anim-duration) var(--anim-ease)}.footer-legal a:hover{opacity:0.8;text-decoration:underline;color:inherit}.footer-disclaimer{font-size:var(--font-size-sm);color:inherit;margin:0;text-align:center;max-width:80ch;margin-left:auto;margin-right:auto}.footer-copyright{font-size:var(--font-size-sm);color:inherit;margin:0;text-align:center}

  @media (max-width: 768px) {.footer-menu{grid-template-columns:repeat(2, 1fr)}
  }

  @media (max-width: 480px) {.footer-menu{grid-template-columns:1fr}.footer-contact{flex-direction:column;gap:var(--space-y)}
  }

.cookies {
      position: fixed;
      bottom: var(--space-y);
      left: var(--space-x);
      max-width: 440px;
      width: calc(100% - 2 * var(--space-x));
      background: var(--card-bg);
      color: var(--card-fg);
      border: 1px solid var(--card-border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: var(--space-card);
      box-sizing: border-box;
      z-index: 1000;
      font-family: var(--font-family);
      font-size: var(--font-size-sm);
      line-height: var(--line-height-base);
    }

    .cookies__title {
      margin: 0 0 var(--space-block) 0;
      font-size: var(--font-size-md);
      font-weight: 600;
      line-height: 1.3;
    }

    .cookies__copy {
      margin: 0 0 var(--space-block) 0;
      color: var(--muted-fg);
    }

    .cookies__actions {
      display: flex;
      flex-wrap: wrap;
      gap: var(--gap);
      align-items: center;
    }

    .cookies__choice {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.5rem 0.9rem;
      border-radius: var(--radius-sm);
      font-size: var(--font-size-sm);
      font-weight: 500;
      line-height: 1.2;
      cursor: pointer;
      border: 1px solid transparent;
      transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
      text-decoration: none;
      background: var(--primary-bg);
      color: var(--primary-fg);
    }

    .cookies__choice--accept:hover {
      background: var(--primary-hover);
    }

    .cookies__choice--reject {
      background: transparent;
      color: var(--card-fg);
      border-color: var(--card-border);
    }

    .cookies__choice--reject:hover {
      background: var(--muted-bg);
      color: var(--muted-fg);
    }

    .cookies__choice--manage {
      background: transparent;
      color: var(--link);
      border-color: transparent;
      padding-left: 0.2rem;
      padding-right: 0.2rem;
    }

    .cookies__choice--manage:hover {
      color: var(--link-hover);
      text-decoration: underline;
    }

    @media (max-width: 480px) {
      .cookies {
        bottom: var(--space-y);
        left: var(--space-y);
        right: var(--space-y);
        width: auto;
        max-width: none;
      }
    }

.intro-focus {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 72px 24px;
  }
  .intro-focus .inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 56px;
  }
  .intro-focus .lead {
    flex: 1.2;
  }
  .intro-focus h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin: 0 0 20px;
    font-weight: 700;
  }
  .intro-focus .lead > p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 28px;
    max-width: 540px;
  }
  .intro-focus .route {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .intro-focus .action {
    display: inline-block;
    background: var(--accent-bg);
    color: var(--accent-fg);
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
  }
  .intro-focus .action:hover {
    background: var(--accent-hover);
  }
  .intro-focus .aside {
    color: var(--brand-primary-bg);
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .intro-focus .aside:hover {
    color: var(--brand-primary-hover);
  }
  .intro-focus .note {
    flex: 0.8;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    padding-left: 24px;
    border-left: 2px solid var(--brand-primary-bg);
  }
  @media (max-width: 760px) {
    .intro-focus {
      padding: 48px 20px;
    }
    .intro-focus .inner {
      flex-direction: column;
      gap: 28px;
    }
    .intro-focus .note {
      padding-left: 0;
      border-left: none;
      border-top: 2px solid var(--brand-primary-bg);
      padding-top: 16px;
    }
  }

.intro-focus {
  background: var(--page-bg);
  color: var(--page-fg);
}

.faq {
            background: var(--inverse-bg);
            color: var(--inverse-fg);
            padding: 64px 20px;
        }

        .faq .inner {
            max-width: 860px;
            margin: 0 auto;
        }

        .faq h2 {
            font-size: 28px;
            line-height: 1.2;
            margin: 0 0 12px;
        }

        .faq .lead {
            font-size: 17px;
            line-height: 1.6;
            margin: 0 0 36px;
            opacity: 0.9;
        }

        .faq .list {
            margin: 0;
            padding: 0;
        }

        .faq .item {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding: 22px 0;
        }

        .faq .item:last-child {
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .faq dt {
            font-size: 18px;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 8px;
        }

        .faq dd {
            font-size: 15px;
            line-height: 1.7;
            margin: 0;
            opacity: 0.92;
        }

        .faq .note {
            font-size: 15px;
            line-height: 1.6;
            margin: 32px 0 0;
            opacity: 0.9;
        }

        .faq .note a {
            color: var(--inverse-fg);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .faq .note a:hover {
            color: #F5E6D8;
        }

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

.next-step {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4.5rem 1.25rem;
  }

  .next-step .inner {
    max-width: 46rem;
    margin: 0 auto;
  }

  .next-step .note {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 0 0 1.75rem;
    max-width: 34rem;
  }

  .next-step h2 {
    font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 1.25rem;
    max-width: 40rem;
  }

  .next-step p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 1.25rem;
    max-width: 38rem;
  }

  .next-step .closing {
    margin-bottom: 2rem;
    font-size: 1rem;
  }

  .next-step .action {
    display: inline-block;
    background: var(--accent-bg);
    color: var(--accent-fg);
    padding: 0.85rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
  }

  .next-step .action:hover {
    background: var(--accent-hover);
  }

  .next-step .route {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--card-border);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.75rem;
  }

  .next-step .route a {
    color: var(--primary-bg);
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
  }

  .next-step .route a:hover {
    border-bottom-color: var(--primary-bg);
  }

.next-step {
  background: var(--page-bg);
  color: var(--page-fg);
}

.identity {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }

  .identity .inner {
    max-width: 46rem;
    margin: 0 auto;
  }

  .identity h1 {
    font-size: 2rem;
    line-height: 1.25;
    margin: 0 0 1.5rem;
    font-weight: 700;
  }

  .identity p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 1.25rem;
  }

  .identity p:last-child {
    margin-bottom: 0;
  }

  @media (min-width: 640px) {
    .identity {
      padding: 5rem 2rem;
    }

    .identity h1 {
      font-size: 2.5rem;
    }
  }

.identity {
  background: var(--page-bg);
  color: var(--page-fg);
}

.our-story {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }

  .our-story .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .our-story h2 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 1.25rem;
    letter-spacing: -0.01em;
  }

  .our-story p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1rem;
  }

  .our-story p:last-child {
    margin-bottom: 0;
  }

  .our-story a {
    color: var(--brand-primary-bg, #2A9D8F);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
  }

  .our-story a:hover {
    text-decoration-thickness: 2px;
  }

  @media (min-width: 640px) {
    .our-story {
      padding: 5rem 2rem;
    }

    .our-story h2 {
      font-size: 2rem;
    }

    .our-story p {
      font-size: 1.0625rem;
    }
  }

.our-story {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.people-behind {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4.5rem 1.25rem;
    }

    .people-behind .inner {
      max-width: 980px;
      margin: 0 auto;
    }

    .people-behind h2 {
      font-size: 1.9rem;
      line-height: 1.2;
      margin: 0 0 1rem;
      font-weight: 600;
    }

    .people-behind .lead {
      font-size: 1.05rem;
      line-height: 1.6;
      max-width: 620px;
      margin: 0 0 3rem;
    }

    .people-behind .team-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.25rem;
    }

    .people-behind .team-item {
      border-top: 1px solid var(--card-border, #E8DCCB);
      padding-top: 1.5rem;
    }

    .people-behind .team-item h3 {
      font-size: 1.2rem;
      margin: 0 0 0.25rem;
      font-weight: 600;
    }

    .people-behind .role {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--brand-primary-bg, #2A9D8F);
      margin: 0 0 0.75rem;
      letter-spacing: 0.02em;
    }

    .people-behind .bio {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0;
      max-width: 560px;
    }

    @media (min-width: 700px) {
      .people-behind {
        padding: 5.5rem 2rem;
      }

      .people-behind .team-list {
        grid-template-columns: 1fr 1fr;
        column-gap: 3rem;
        row-gap: 2.5rem;
      }

      .people-behind .team-item:first-child {
        grid-column: 1 / -1;
      }

      .people-behind .team-item:first-child .bio {
        max-width: 640px;
      }
    }

.people-behind {
  background: var(--page-bg);
  color: var(--page-fg);
}

.timeline {
            background: var(--inverse-bg);
            color: var(--inverse-fg);
            padding: 4rem 1.5rem;
        }

        .timeline .inner {
            max-width: 760px;
            margin: 0 auto;
        }

        .timeline h2 {
            font-size: 1.9rem;
            margin: 0 0 1rem;
            font-weight: 600;
        }

        .timeline .lead {
            font-size: 1.05rem;
            line-height: 1.6;
            margin: 0 0 2.5rem;
            max-width: 620px;
        }

        .timeline .line {
            border-left: 2px solid rgba(255, 255, 255, 0.25);
            padding-left: 1.5rem;
            margin-left: 0.5rem;
        }

        .timeline .entry {
            margin-bottom: 2.5rem;
            position: relative;
        }

        .timeline .entry::before {
            content: "";
            position: absolute;
            left: -1.72rem;
            top: 0.4rem;
            width: 0.6rem;
            height: 0.6rem;
            border-radius: 50%;
            background: var(--accent-bg);
        }

        .timeline h3 {
            font-size: 1.2rem;
            margin: 0 0 0.5rem;
            font-weight: 600;
            color: var(--inverse-fg);
        }

        .timeline .entry p {
            margin: 0 0 0.6rem;
            line-height: 1.55;
            font-size: 0.98rem;
            color: var(--inverse-fg);
        }

        .timeline .entry .note {
            font-size: 0.88rem;
            line-height: 1.5;
            margin: 0.4rem 0 0;
            opacity: 0.75;
        }

        @media (max-width: 600px) {
            .timeline {
                padding: 3rem 1.2rem;
            }

            .timeline h2 {
                font-size: 1.5rem;
            }

            .timeline .line {
                padding-left: 1.2rem;
                margin-left: 0.2rem;
            }

            .timeline .entry::before {
                left: -1.45rem;
            }
        }

.timeline {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.value-points {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 3.5rem 1.25rem;
  }
  .value-points .inner {
    max-width: 900px;
    margin: 0 auto;
  }
  .value-points h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
  }
  .value-points > .inner > p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2rem;
    max-width: 640px;
  }
  .value-points .route {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .value-points .entry {
    border-left: 3px solid var(--brand-primary-bg, #2A9D8F);
    padding-left: 1rem;
  }
  .value-points .entry h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.35rem;
  }
  .value-points .entry p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
  }
  .value-points .note {
    margin-top: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .value-points .note a {
    color: var(--brand-primary-bg, #2A9D8F);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .value-points .note a:hover {
    color: var(--brand-primary-hover, #21867A);
  }

.value-points {
  background: var(--page-bg);
  color: var(--page-fg);
}

.faq {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.25rem;
    }
    .faq .inner {
      max-width: 46rem;
      margin: 0 auto;
    }
    .faq h2 {
      font-size: 1.6rem;
      line-height: 1.3;
      margin: 0 0 0.5rem;
      font-weight: 600;
    }
    .faq .lead {
      margin: 0 0 2rem;
      font-size: 1rem;
      line-height: 1.5;
    }
    .faq .item {
      border-bottom: 1px solid var(--card-bg, #E8DCCB);
      padding: 1.25rem 0;
    }
    .faq .item h3 {
      font-size: 1.05rem;
      margin: 0 0 0.4rem;
      font-weight: 600;
    }
    .faq .item p {
      margin: 0;
      line-height: 1.55;
      font-size: 0.95rem;
    }
    .faq .note {
      margin-top: 1.5rem;
      font-size: 0.95rem;
      line-height: 1.5;
    }
    .faq .note a {
      color: var(--primary-bg, #2A9D8F);
      text-decoration: underline;
    }
    .faq .note a:hover {
      color: var(--primary-hover, #21867A);
    }

.capabilities {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4.5rem 1.25rem;
  }

  .capabilities .inner {
    max-width: 42rem;
    margin: 0 auto;
  }

  .capabilities h2 {
    font-size: 1.75rem;
    line-height: 1.25;
    margin: 0 0 1rem;
    font-weight: 600;
  }

  .capabilities .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
  }

  .capabilities .entry {
    margin-bottom: 2rem;
  }

  .capabilities .entry h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.4rem;
    line-height: 1.4;
  }

  .capabilities .entry p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
  }

  .capabilities .more {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 2.5rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--card-border);
  }

  .capabilities .more a {
    color: var(--primary-bg);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

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

.capabilities {
  background: var(--page-bg);
  color: var(--page-fg);
}

.next-step {
    background: linear-gradient(135deg, #2A9D8F 0%, #E76F51 100%);
    color: #FFFFFF;
    padding: 4.5rem 1.25rem;
  }

  .next-step .inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

  .next-step h2 {
    font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 1.25rem;
    font-weight: 700;
  }

  .next-step p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 auto 2.25rem;
    max-width: 580px;
  }

  .next-step .route {
    display: inline-block;
    background: #FFFFFF;
    color: #2A3D3A;
    padding: 0.9rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s ease;
  }

  .next-step .route:hover {
    background: #F5E6D8;
  }

.next-step {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.value-points {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 4rem 1.5rem;
    }

    .value-points .inner {
        max-width: 760px;
        margin: 0 auto;
    }

    .value-points h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin: 0 0 1.2rem;
        font-weight: 600;
    }

    .value-points p {
        font-size: 1rem;
        line-height: 1.7;
        margin: 0 0 1rem;
    }

    .value-points p:last-of-type {
        margin-bottom: 1.5rem;
    }

    .value-points .route {
        margin-top: 0.5rem;
    }

    .value-points .route a {
        color: var(--brand-primary-bg);
        text-decoration: underline;
        text-underline-offset: 3px;
        font-weight: 500;
    }

    .value-points .route a:hover {
        color: var(--brand-primary-hover);
    }

.recommendations {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 3.5rem 1.25rem;
  }

  .recommendations .inner {
    max-width: 900px;
    margin: 0 auto;
  }

  .recommendations h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
  }

  .recommendations .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
    max-width: 640px;
  }

  .recommendations .read {
    display: block;
  }

  .recommendations .entry {
    padding: 1.5rem 0;
    border-top: 1px solid var(--card-border);
  }

  .recommendations .entry:last-child {
    border-bottom: 1px solid var(--card-border);
  }

  .recommendations .entry h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    line-height: 1.4;
  }

  .recommendations .entry h3 a {
    color: var(--brand-primary-bg);
    text-decoration: none;
  }

  .recommendations .entry h3 a:hover {
    text-decoration: underline;
    color: var(--brand-primary-hover);
  }

  .recommendations .entry p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 0.6rem;
    max-width: 720px;
  }

  .recommendations .entry .note {
    font-size: 0.88rem;
    color: var(--muted-fg);
    margin: 0;
  }

  @media (max-width: 600px) {
    .recommendations {
      padding: 2.5rem 1rem;
    }

    .recommendations h2 {
      font-size: 1.5rem;
    }

    .recommendations .lead {
      font-size: 0.98rem;
    }

    .recommendations .entry h3 {
      font-size: 1.05rem;
    }
  }

.recommendations {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.clarifications {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 4.5rem 1.25rem;
    }

    .clarifications .inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .clarifications h2 {
        font-size: 1.8rem;
        font-weight: 600;
        line-height: 1.25;
        margin: 0 0 1rem;
    }

    .clarifications > .inner > p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin: 0 0 2.5rem;
        max-width: 60ch;
    }

    .clarifications .note {
        background: var(--muted-bg);
        color: var(--muted-fg);
        border-radius: 12px;
        padding: 1.5rem 1.75rem;
        margin-bottom: 1.25rem;
    }

    .clarifications .note h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0 0 0.5rem;
    }

    .clarifications .note p {
        font-size: 0.95rem;
        line-height: 1.65;
        margin: 0;
    }

    @media (max-width: 600px) {
        .clarifications {
            padding: 3rem 1rem;
        }

        .clarifications h2 {
            font-size: 1.5rem;
        }

        .clarifications .note {
            padding: 1.25rem;
        }
    }

.clarifications {
  background: var(--page-bg);
  color: var(--page-fg);
}

.how-it-works {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }

  .how-it-works .inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
  }

  .how-it-works .setup,
  .how-it-works .next {
    flex: 1 1 280px;
    line-height: 1.6;
  }

  .how-it-works h2 {
    font-size: 1.35rem;
    margin: 0 0 0.75rem;
    font-weight: 600;
  }

  .how-it-works p {
    margin: 0 0 1rem;
    font-size: 0.95rem;
  }

  .how-it-works a {
    display: inline-block;
    color: var(--primary-bg);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--accent-bg);
    padding-bottom: 2px;
  }

  .how-it-works a:hover {
    color: var(--primary-hover);
  }

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

.support {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4.5rem 1.25rem;
  }

  .support .inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .support h2 {
    font-size: 1.75rem;
    line-height: 1.25;
    font-weight: 600;
    margin: 0 0 1.25rem;
  }

  .support p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1rem;
  }

  .support p:last-of-type {
    margin-bottom: 2rem;
  }

  .support .route {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
  }

  .support .route a {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }

  .support .route a:first-child {
    background: var(--primary-bg);
    color: var(--primary-fg);
  }

  .support .route a:first-child:hover {
    background: var(--primary-hover);
  }

  .support .route a:last-child {
    background: transparent;
    color: var(--primary-bg);
    border: 1px solid var(--primary-bg);
  }

  .support .route a:last-child:hover {
    background: var(--muted-bg);
    color: var(--muted-fg);
  }

.support {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.contacts {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 4rem 1.5rem;
    }
    .contacts .inner {
        max-width: 42rem;
        margin: 0 auto;
    }
    .contacts h2 {
        font-size: 1.8rem;
        font-weight: 600;
        margin: 0 0 1rem;
        color: var(--page-fg);
    }
    .contacts .lead {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 0 2rem;
        color: var(--page-fg);
    }
    .contact-lines {
        border-top: 1px solid var(--card-border);
    }
    .contact-line {
        display: flex;
        align-items: baseline;
        gap: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--card-border);
    }
    .contact-label {
        min-width: 6rem;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--brand-primary-bg);
    }
    .contact-line a,
    .contact-line p {
        margin: 0;
        font-size: 1rem;
        color: var(--page-fg);
        text-decoration: none;
    }
    .contact-line a:hover {
        color: var(--brand-primary-hover);
    }
    .schedule {
        margin: 1.5rem 0 0;
        font-size: 0.9rem;
        color: var(--page-fg);
        opacity: 0.8;
    }

.contacts {
  background: var(--page-bg);
  color: var(--page-fg);
}

.support {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.25rem;
    }

    .support .inner {
      max-width: 960px;
      margin: 0 auto;
    }

    .support .intro {
      max-width: 640px;
      margin-bottom: 2.5rem;
    }

    .support h2 {
      font-size: 1.75rem;
      margin: 0 0 0.75rem;
      line-height: 1.2;
    }

    .support .intro p {
      margin: 0;
      font-size: 1rem;
      line-height: 1.6;
    }

    .support .channels {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }

    .support .channel {
      border-left: 3px solid var(--brand-primary-bg, #2A9D8F);
      padding-left: 1.25rem;
    }

    .support .channel h3 {
      font-size: 1.1rem;
      margin: 0 0 0.5rem;
      color: var(--brand-primary-bg, #2A9D8F);
    }

    .support .channel p {
      margin: 0 0 0.4rem;
      font-size: 0.95rem;
      line-height: 1.55;
    }

    .support .channel a {
      color: var(--accent-bg, #E76F51);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .support .channel a:hover {
      color: var(--accent-hover, #D65A3B);
    }

    .support .note {
      font-size: 0.85rem;
      color: var(--muted-fg, #6B5D4F);
      margin-top: 0.25rem;
    }

    .support .faq-link {
      border-top: 1px solid var(--card-border, #E8DCCB);
      padding-top: 1.5rem;
      max-width: 640px;
    }

    .support .faq-link p {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .support .faq-link a {
      color: var(--brand-primary-bg, #2A9D8F);
      font-weight: 600;
      text-decoration: none;
    }

    .support .faq-link a:hover {
      text-decoration: underline;
    }

    @media (min-width: 640px) {
      .support .channels {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }

      .support .channel {
        border-left: none;
        border-top: 3px solid var(--brand-primary-bg, #2A9D8F);
        padding-left: 0;
        padding-top: 1rem;
      }
    }

.stay-in-touch {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 3.5rem 1.25rem;
  }
  .stay-in-touch .inner {
    max-width: 640px;
    margin: 0 auto;
  }
  .stay-in-touch h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin: 0 0 0.75rem;
    font-weight: 600;
  }
  .stay-in-touch p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
  }
  .stay-in-touch form {
    margin: 0 0 1.25rem;
  }
  .stay-in-touch label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .stay-in-touch .row {
    display: flex;
    gap: 0.5rem;
  }
  .stay-in-touch input[type="email"] {
    flex: 1;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--card-border, #E8DCCB);
    border-radius: 6px;
    background: var(--card-bg, #FFFFFF);
    color: var(--card-fg, #3A322B);
    font-size: 0.95rem;
  }
  .stay-in-touch button {
    background: var(--primary-bg, #2A9D8F);
    color: var(--primary-fg, #FFFFFF);
    border: none;
    border-radius: 6px;
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
  }
  .stay-in-touch button:hover {
    background: var(--primary-hover, #21867A);
  }
  .stay-in-touch .note {
    font-size: 0.85rem;
    color: var(--muted-fg, #3A322B);
    margin: 0;
  }
  .stay-in-touch .note a {
    color: var(--primary-bg, #2A9D8F);
    text-decoration: underline;
  }
  .stay-in-touch .note a:hover {
    color: var(--primary-hover, #21867A);
  }
  @media (max-width: 480px) {
    .stay-in-touch .row {
      flex-direction: column;
    }
    .stay-in-touch button {
      width: 100%;
    }
  }

.stay-in-touch {
  background: var(--page-bg);
  color: var(--page-fg);
}

.faq {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 3.5rem 1.25rem;
        }

        .faq .inner {
            max-width: 46rem;
            margin: 0 auto;
        }

        .faq h2 {
            font-size: 1.9rem;
            font-weight: 600;
            line-height: 1.25;
            margin: 0 0 1.25rem;
        }

        .faq p {
            font-size: 1rem;
            line-height: 1.7;
            margin: 0 0 1.1rem;
        }

        .faq .question {
            border-top: 1px solid var(--card-border, #E8DCCB);
            padding: 1.5rem 0 0.5rem;
            margin-top: 1.5rem;
        }

        .faq .question h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 0 0 0.6rem;
        }

        .faq .question p {
            margin-bottom: 0.9rem;
        }

        .faq a {
            color: var(--primary-bg, #2A9D8F);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .faq .route {
            margin-top: 2.5rem;
            font-size: 0.95rem;
            border-top: 1px solid var(--card-border, #E8DCCB);
            padding-top: 1.25rem;
        }

.social-proof {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 4.5rem 1.25rem;
    }

    .social-proof .inner {
      max-width: 46rem;
      margin: 0 auto;
    }

    .social-proof h2 {
      font-size: 1.6rem;
      line-height: 1.3;
      margin: 0 0 1rem;
      font-weight: 600;
    }

    .social-proof .lead {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      opacity: 0.85;
    }

    .social-proof .entries {
      display: flex;
      flex-direction: column;
      gap: 2.25rem;
    }

    .social-proof .entry {
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      padding-top: 1.5rem;
    }

    .social-proof .quote {
      font-size: 1rem;
      line-height: 1.7;
      margin: 0 0 0.75rem;
    }

    .social-proof .meta {
      font-size: 0.85rem;
      margin: 0;
      opacity: 0.7;
    }

.social-proof {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.value-points {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 5rem 1.5rem;
        }
        .value-points .inner {
            max-width: 760px;
            margin: 0 auto;
        }
        .value-points h2 {
            font-size: 1.9rem;
            line-height: 1.25;
            margin: 0 0 1.25rem;
            font-weight: 600;
        }
        .value-points p {
            font-size: 1.05rem;
            line-height: 1.7;
            margin: 0 0 2.5rem;
        }
        .value-points .benefit {
            margin: 0 0 2.25rem;
            padding-left: 1.25rem;
            border-left: 3px solid var(--primary-bg);
        }
        .value-points .benefit h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0 0 0.5rem;
            color: var(--page-fg);
        }
        .value-points .benefit p {
            font-size: 1rem;
            line-height: 1.65;
            margin: 0;
        }
        .value-points .note {
            font-size: 0.95rem;
            color: var(--page-fg);
            background: var(--muted-bg);
            padding: 1.25rem 1.5rem;
            border-radius: 8px;
            margin: 3rem 0 1.5rem;
            line-height: 1.6;
        }
        .value-points .route {
            font-size: 0.95rem;
            margin: 0;
        }
        .value-points .route a {
            color: var(--primary-bg);
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .value-points .route a:hover {
            color: var(--primary-hover);
        }

.capabilities {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.25rem;
  }

  .capabilities .inner {
    max-width: 56rem;
    margin: 0 auto;
  }

  .capabilities .note {
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-primary-bg, #2A9D8F);
    margin: 0 0 0.75rem;
  }

  .capabilities h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin: 0 0 1rem;
    max-width: 30rem;
  }

  .capabilities .intro {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
    max-width: 38rem;
  }

  .capabilities .item {
    margin: 0 0 1.75rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--accent-bg, #E76F51);
    max-width: 34rem;
  }

  .capabilities .item h3 {
    font-size: 1.1rem;
    margin: 0 0 0.35rem;
  }

  .capabilities .item p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
  }

  .capabilities .route {
    font-size: 0.9rem;
    margin: 2.5rem 0 0;
    max-width: 34rem;
  }

  .capabilities .route a {
    color: var(--brand-primary-bg, #2A9D8F);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .capabilities .route a:hover {
    color: var(--brand-primary-hover, #21867A);
  }

.capabilities {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.feedback {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }

  .feedback .inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .feedback h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 0 0 1rem;
    font-weight: 600;
  }

  .feedback p {
    line-height: 1.6;
    margin: 0 0 1.5rem;
  }

  .feedback .note {
    border-left: 3px solid var(--accent-bg);
    padding: 0.5rem 0 0.5rem 1.25rem;
    margin: 0 0 1.75rem;
  }

  .feedback .note:last-child {
    margin-bottom: 0;
  }

  .feedback .item-title {
    font-weight: 600;
    margin: 0 0 0.35rem;
    font-size: 1rem;
  }

  .feedback .item-text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--muted-fg);
  }

.feedback {
  background: var(--page-bg);
  color: var(--page-fg);
}

.clarifications {
    background: var(--inverse-bg);
    color: var(--inverse-fg);
    padding: 4rem 1.5rem;
  }

  .clarifications .inner {
    max-width: 46rem;
    margin: 0 auto;
  }

  .clarifications h2 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1.5rem;
  }

  .clarifications p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.25rem;
  }

  .clarifications p:last-of-type {
    margin-bottom: 0;
  }

  .clarifications a {
    color: var(--accent-bg);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .clarifications a:hover {
    color: var(--accent-hover);
  }

.clarifications {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.why-choose {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 4rem 1.5rem;
    }
    .why-choose .inner {
        max-width: 760px;
        margin: 0 auto;
    }
    .why-choose h2 {
        font-size: 1.9rem;
        font-weight: 600;
        margin: 0 0 1.25rem;
        letter-spacing: -0.02em;
    }
    .why-choose .lead {
        font-size: 1.1rem;
        line-height: 1.7;
        margin: 0 0 1rem;
    }
    .why-choose p {
        line-height: 1.65;
        margin: 0 0 1rem;
    }
    .why-choose .note {
        font-size: 0.95rem;
        margin-top: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid var(--card-border, #E8DCCB);
    }
    .why-choose a {
        color: var(--primary-bg, #2A9D8F);
        text-decoration: underline;
        text-underline-offset: 3px;
        transition: color 0.2s ease;
    }
    .why-choose a:hover {
        color: var(--primary-hover, #21867A);
    }

.why-choose {
  background: var(--page-bg);
  color: var(--page-fg);
}

.partners {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 4rem 1.5rem;
    }
    .partners .inner {
        max-width: 1080px;
        margin: 0 auto;
    }
    .partners-head {
        max-width: 620px;
        margin-bottom: 2.5rem;
    }
    .partners-head h2 {
        font-size: 1.7rem;
        line-height: 1.3;
        margin: 0 0 0.75rem;
        font-weight: 600;
    }
    .partners-head p {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0;
        color: var(--page-fg);
        opacity: 0.9;
    }
    .partners-list {
        display: block;
    }
    .partners-item {
        padding: 1.1rem 0;
        border-bottom: 1px solid var(--card-border);
    }
    .partners-item:first-child {
        border-top: 1px solid var(--card-border);
    }
    .partners-name {
        font-size: 1.05rem;
        font-weight: 600;
        margin: 0 0 0.3rem;
        color: var(--brand-primary-bg);
    }
    .partners-note {
        font-size: 0.92rem;
        line-height: 1.5;
        margin: 0;
        max-width: 720px;
        color: var(--page-fg);
        opacity: 0.85;
    }

.partners {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.social-proof {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 4.5rem 1.25rem;
    }

    .social-proof .inner {
      max-width: 900px;
      margin: 0 auto;
    }

    .social-proof h2 {
      font-size: 1.75rem;
      line-height: 1.3;
      margin: 0 0 1.25rem;
      font-weight: 600;
    }

    .social-proof p {
      font-size: 1rem;
      line-height: 1.7;
      margin: 0 0 1.5rem;
    }

    .social-proof .notes {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      margin: 2rem 0;
    }

    .social-proof .note {
      background: var(--card-bg);
      color: var(--card-fg);
      border-radius: 12px;
      padding: 1.5rem 1.75rem;
    }

    .social-proof .quote {
      margin: 0 0 0.75rem;
      font-style: italic;
    }

    .social-proof .author {
      margin: 0;
      font-size: 0.9rem;
      color: var(--muted-fg);
    }

    .social-proof .closing {
      margin: 0;
      font-size: 0.95rem;
      opacity: 0.85;
    }

    @media (min-width: 640px) {
      .social-proof {
        padding: 5rem 2rem;
      }

      .social-proof h2 {
        font-size: 2rem;
      }

      .social-proof .notes {
        flex-direction: row;
        align-items: stretch;
      }

      .social-proof .note {
        flex: 1;
      }
    }

.faq {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3.5rem 1.25rem;
    }

    .faq .inner {
      max-width: 760px;
      margin: 0 auto;
    }

    .faq h2 {
      font-size: 1.75rem;
      line-height: 1.3;
      margin: 0 0 0.75rem;
      font-weight: 700;
    }

    .faq .intro {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 2.25rem;
      color: var(--page-fg);
      opacity: 0.85;
    }

    .faq .item {
      border-bottom: 1px solid var(--card-border);
      padding: 1.25rem 0;
    }

    .faq .item:first-of-type {
      border-top: 1px solid var(--card-border);
    }

    .faq .item h3 {
      font-size: 1.1rem;
      line-height: 1.4;
      margin: 0 0 0.5rem;
      font-weight: 600;
    }

    .faq .item p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
    }

    .faq .note {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 2rem 0 0.75rem;
    }

    .faq .route {
      margin: 0;
    }

    .faq .route a {
      color: var(--brand-primary-bg);
      text-decoration: underline;
      text-underline-offset: 3px;
      font-size: 0.95rem;
    }

    .faq .route a:hover {
      color: var(--brand-primary-hover);
    }

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

.clarifications {
    background: var(--inverse-bg);
    color: var(--inverse-fg);
    padding: 4rem 1.5rem;
  }
  .clarifications .inner {
    max-width: 880px;
    margin: 0 auto;
  }
  .clarifications h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
  }
  .clarifications > .inner > p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
    max-width: 640px;
  }
  .clarifications .notes {
    display: block;
    margin: 0 0 2rem;
  }
  .clarifications .note {
    padding: 0 0 1.5rem;
    margin: 0 0 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .clarifications .note:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  .clarifications .note h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
  }
  .clarifications .note p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
    max-width: 720px;
  }
  .clarifications .link {
    display: inline-block;
    color: var(--accent-bg);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .clarifications .link:hover {
    color: var(--accent-hover);
  }

.recommendations {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 3.5rem 1.25rem;
  }

  .recommendations .inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .recommendations h2 {
    font-size: 1.65rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1rem;
  }

  .recommendations p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.25rem;
  }

  .recommendations .route {
    border-top: 1px solid var(--card-border);
    padding: 1.1rem 0;
  }

  .recommendations .route a {
    color: var(--brand-primary-bg);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    display: inline-block;
    margin-bottom: 0.35rem;
  }

  .recommendations .route a:hover {
    color: var(--brand-primary-hover);
    text-decoration: underline;
  }

  .recommendations .route span {
    display: block;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--page-fg);
  }

  .recommendations .inner > p:last-child {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--page-fg);
    border-top: 1px solid var(--card-border);
    padding-top: 1.25rem;
  }

.recommendations {
  background: var(--page-bg);
  color: var(--page-fg);
}

.social-proof {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 4rem 1.5rem;
    }

    .social-proof .inner {
      max-width: 960px;
      margin: 0 auto;
    }

    .social-proof h2 {
      font-size: 1.75rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 1rem;
      max-width: 720px;
    }

    .social-proof .intro {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      max-width: 640px;
      opacity: 0.9;
    }

    .social-proof .reviews {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .social-proof .review {
      background: rgba(255, 255, 255, 0.06);
      border-left: 3px solid var(--accent-bg);
      padding: 1.25rem 1.5rem;
    }

    .social-proof .quote {
      font-size: 1rem;
      line-height: 1.65;
      margin: 0 0 0.75rem;
    }

    .social-proof .author {
      font-size: 0.9rem;
      margin: 0;
      opacity: 0.85;
    }

    .social-proof .note {
      font-size: 0.85rem;
      line-height: 1.5;
      margin: 2rem 0 0;
      opacity: 0.7;
      max-width: 640px;
    }

    @media (min-width: 700px) {
      .social-proof {
        padding: 5rem 2rem;
      }

      .social-proof .reviews {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
      }

      .social-proof .review:first-child {
        grid-column: 1 / -1;
      }
    }

    @media (min-width: 1000px) {
      .social-proof .reviews {
        grid-template-columns: 1fr 1fr 1fr;
      }

      .social-proof .review:first-child {
        grid-column: auto;
      }
    }

.next-step {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }

  .next-step .inner {
    max-width: 44rem;
    margin: 0 auto;
  }

  .next-step h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin: 0 0 1rem;
    font-weight: 700;
  }

  .next-step .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 1.25rem;
  }

  .next-step .note {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1.75rem;
    color: var(--muted-fg);
    background: var(--muted-bg);
    padding: 0.9rem 1.1rem;
    border-radius: 0.5rem;
    max-width: 36rem;
  }

  .next-step .action {
    display: inline-block;
    background: var(--accent-bg);
    color: var(--accent-fg);
    padding: 0.8rem 1.6rem;
    border-radius: 0.4rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s ease;
  }

  .next-step .action:hover {
    background: var(--accent-hover);
  }

  .next-step .route {
    margin-top: 2rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .next-step .route a {
    color: var(--primary-bg);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .next-step .route a:hover {
    color: var(--primary-hover);
  }

.next-step {
    background: linear-gradient(135deg, #2A9D8F 0%, #E76F51 100%);
    color: #FFFFFF;
    padding: 4rem 1.5rem;
  }

  .next-step .inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

  .next-step h2 {
    font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 1rem;
    font-weight: 700;
  }

  .next-step p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
  }

  .next-step .action {
    display: inline-block;
    background: #FFFFFF;
    color: #2A3D3A;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s ease;
  }

  .next-step .action:hover {
    background: #F5E6D8;
  }

  .next-step .note {
    font-size: 0.9rem;
    margin-top: 1.5rem;
    opacity: 0.9;
  }

  .next-step .note a {
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .next-step .note a:hover {
    text-decoration: none;
  }

.social-proof {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 4rem 1.5rem;
        }

        .social-proof .inner {
            max-width: 880px;
            margin: 0 auto;
        }

        .social-proof h2 {
            font-size: 1.8rem;
            line-height: 1.3;
            margin: 0 0 1.2rem;
            font-weight: 600;
        }

        .social-proof p {
            line-height: 1.6;
            margin: 0 0 1rem;
        }

        .social-proof .reviews {
            list-style: none;
            margin: 2.5rem 0 0;
            padding: 0;
            border-top: 1px solid var(--card-border, #E8DCCB);
        }

        .social-proof .review {
            padding: 1.5rem 0;
            border-bottom: 1px solid var(--card-border, #E8DCCB);
        }

        .social-proof .review-text {
            font-size: 1.05rem;
            line-height: 1.6;
            margin: 0 0 0.6rem;
        }

        .social-proof .review-meta {
            font-size: 0.9rem;
            color: var(--muted-fg, #6B5D4F);
            margin: 0;
        }

.social-proof {
  background: var(--page-bg);
  color: var(--page-fg);
}

.blog-item {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.25rem 4rem;
    }

    .blog-item .inner {
      max-width: 720px;
      margin: 0 auto;
    }

    .blog-item .post-head {
      margin-bottom: 1.75rem;
    }

    .blog-item .post-date {
      font-size: 0.85rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--muted-fg);
      margin: 0 0 0.5rem;
    }

    .blog-item h1 {
      font-size: 2rem;
      line-height: 1.2;
      margin: 0 0 0.75rem;
      color: var(--page-fg);
    }

    .blog-item .post-lead {
      font-size: 1.1rem;
      line-height: 1.5;
      margin: 0;
      color: var(--page-fg);
    }

    .blog-item .post-media {
      margin: 0 0 1.75rem;
    }

    .blog-item .post-media img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .blog-item .post-body p {
      font-size: 1rem;
      line-height: 1.7;
      margin: 0 0 1.25rem;
    }

    .blog-item .post-more {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--card-border);
    }

    .blog-item .post-more p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1rem;
    }

    .blog-item .post-route {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1.5rem;
    }

    .blog-item .post-route a {
      color: var(--primary-bg);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .blog-item .post-route a:hover {
      text-decoration: underline;
    }

    @media (max-width: 480px) {
      .blog-item h1 {
        font-size: 1.6rem;
      }
    }

.blog-item {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.blog-item {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 3rem 1.25rem;
  }
  .blog-item .inner {
    max-width: 760px;
    margin: 0 auto;
  }
  .blog-item .entry {
    background: var(--card-bg);
    color: var(--card-fg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
  }
  .blog-item h1 {
    font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 0.5rem;
  }
  .blog-item .date {
    font-size: 0.9rem;
    color: var(--muted-fg);
    margin: 0 0 1.5rem;
  }
  .blog-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.75rem;
  }
  .blog-item .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1.25rem;
  }
  .blog-item p {
    line-height: 1.65;
    margin: 0 0 1.25rem;
  }
  .blog-item .note {
    background: var(--muted-bg);
    color: var(--muted-fg);
    border-left: 3px solid var(--primary-bg);
    padding: 0.9rem 1.1rem;
    border-radius: 0 6px 6px 0;
    font-size: 0.95rem;
  }
  .blog-item .related {
    border-top: 1px solid var(--card-border);
    padding-top: 1.25rem;
    margin-top: 1.75rem;
    font-size: 0.95rem;
  }
  .blog-item .related p {
    margin: 0;
  }
  .blog-item a {
    color: var(--primary-bg);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .blog-item a:hover {
    color: var(--primary-hover);
  }

.blog-item {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.25rem;
    }
    .blog-item .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .blog-item .entry {
      background: var(--card-bg);
      color: var(--card-fg);
      border: 1px solid var(--card-border);
      border-radius: 18px;
      padding: 2rem 1.75rem;
    }
    .blog-item h1 {
      font-size: 1.9rem;
      line-height: 1.25;
      margin: 0 0 0.4rem;
      font-weight: 600;
    }
    .blog-item .date {
      font-size: 0.9rem;
      color: var(--muted-fg);
      margin: 0 0 1.4rem;
    }
    .blog-item .cover {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 12px;
      margin-bottom: 1.6rem;
    }
    .blog-item .content p {
      font-size: 1.02rem;
      line-height: 1.7;
      margin: 0 0 1.2rem;
    }
    .blog-item .more {
      margin-top: 1.8rem;
      padding-top: 1.2rem;
      border-top: 1px solid var(--card-border);
      font-size: 0.98rem;
    }
    .blog-item .more a {
      color: var(--primary-bg);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }
    .blog-item .more a:hover {
      border-color: var(--primary-bg);
    }

.form {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }

  .form .inner {
    max-width: 640px;
    margin: 0 auto;
  }

  .form h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 0 0 1rem;
    color: var(--page-fg);
  }

  .form p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1rem;
  }

  .form form {
    margin-top: 2rem;
    border-top: 1px solid var(--card-border, #E8DCCB);
    padding-top: 2rem;
  }

  .form .field {
    margin-bottom: 1.25rem;
  }

  .form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--page-fg);
  }

  .form input,
  .form textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--card-border, #E8DCCB);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--card-fg);
    font-size: 1rem;
    box-sizing: border-box;
  }

  .form input:focus,
  .form textarea:focus {
    outline: 2px solid var(--primary-bg);
    outline-offset: 1px;
  }

  .form textarea {
    resize: vertical;
    min-height: 120px;
  }

  .form button {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary-fg);
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .form button:hover {
    background: var(--primary-hover, #21867A);
  }

  .form .note {
    font-size: 0.9rem;
    color: var(--page-fg);
    opacity: 0.85;
    margin-top: 1.5rem;
    border-top: 1px solid var(--card-border, #E8DCCB);
    padding-top: 1.25rem;
  }

.form {
  background: var(--page-bg);
  color: var(--page-fg);
}

.map {
            background: var(--gradient-hero-bg);
            color: var(--gradient-hero-fg);
            padding: 64px 24px;
        }

        .map .inner {
            max-width: 960px;
            margin: 0 auto;
        }

        .map h2 {
            font-size: 28px;
            line-height: 1.2;
            margin: 0 0 12px;
            font-weight: 600;
        }

        .map .inner > p {
            font-size: 16px;
            line-height: 1.6;
            margin: 0 0 36px;
            max-width: 620px;
        }

        .map-layout {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .map-note {
            background: var(--card-bg);
            color: var(--card-fg);
            border-radius: 12px;
            padding: 24px;
        }

        .map-note h3 {
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 10px;
            color: var(--brand-primary-bg);
        }

        .map-note p {
            font-size: 14px;
            line-height: 1.6;
            margin: 0 0 10px;
        }

        .map-note p:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 760px) {
            .map-layout {
                grid-template-columns: 1fr;
            }
        }

.map {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.contacts {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 72px 24px;
  }

  .contacts .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .contacts h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
  }

  .contacts p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 32px;
  }

  .contacts .channels {
    border-top: 1px solid var(--card-border, #E8DCCB);
    margin-bottom: 24px;
  }

  .contacts .channel {
    display: flex;
    flex-direction: column;
    padding: 18px 0;
    border-bottom: 1px solid var(--card-border, #E8DCCB);
  }

  .contacts .label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
  }

  .contacts .value {
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .contacts a.value {
    color: var(--primary-bg, #2A9D8F);
    text-decoration: none;
  }

  .contacts a.value:hover {
    text-decoration: underline;
  }

  .contacts .note {
    font-size: 0.95rem;
    color: var(--muted-fg, #6B6259);
    margin: 0;
    line-height: 1.6;
  }

.policy-items {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem 5rem;
  }

  .policy-items .inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .policy-items h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
  }

  .policy-items .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 0 0.5rem;
  }

  .policy-items .updated {
    font-size: 0.9rem;
    color: var(--muted-fg);
    background: var(--muted-bg);
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    margin: 0 0 2.5rem;
  }

  .policy-items .note {
    padding: 1.5rem 0;
    border-top: 1px solid var(--card-border);
  }

  .policy-items .note:last-child {
    border-bottom: 1px solid var(--card-border);
  }

  .policy-items .note h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
  }

  .policy-items .note p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 0.75rem;
  }

  .policy-items .note p:last-child {
    margin-bottom: 0;
  }

.policy-items {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.terms-items {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 4rem 1.25rem 5rem;
        }

        .terms-items .inner {
            max-width: 760px;
            margin: 0 auto;
        }

        .terms-items h1 {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.2;
            margin: 0 0 1rem;
            letter-spacing: -0.01em;
        }

        .terms-items .intro {
            font-size: 1.05rem;
            line-height: 1.65;
            margin: 0 0 3rem;
            max-width: 640px;
        }

        .terms-items .terms-list {
            border-top: 1px solid var(--card-bg);
        }

        .terms-items .terms-entry {
            padding: 1.75rem 0;
            border-bottom: 1px solid var(--card-bg);
        }

        .terms-items .terms-entry h2 {
            font-size: 1.15rem;
            font-weight: 600;
            line-height: 1.35;
            margin: 0 0 0.75rem;
        }

        .terms-items .terms-entry p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0 0 0.75rem;
        }

        .terms-items .terms-entry p:last-child {
            margin-bottom: 0;
        }

.terms-items {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.next-step {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 4.5rem 1.25rem;
  }

  .next-step .inner {
    max-width: 42rem;
    margin: 0 auto;
  }

  .next-step h2 {
    font-size: 1.9rem;
    line-height: 1.2;
    margin: 0 0 1.25rem;
    font-weight: 600;
  }

  .next-step p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 2rem;
    max-width: 38rem;
  }

  .next-step .route {
    display: inline-block;
    margin-right: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-bg);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
  }

  .next-step .route:hover {
    border-bottom-color: var(--primary-bg);
  }

  @media (max-width: 600px) {
    .next-step {
      padding: 3rem 1.25rem;
    }

    .next-step h2 {
      font-size: 1.6rem;
    }

    .next-step .route {
      display: block;
      margin-right: 0;
    }
  }

.thank {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.25rem;
  }

  .thank .inner {
    max-width: 680px;
    margin: 0 auto;
  }

  .thank h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 1.25rem;
    font-weight: 700;
  }

  .thank p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1rem;
  }

  .thank .next {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
  }

  .thank .next a {
    color: var(--brand-primary-bg, #2A9D8F);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
  }

  .thank .next a:hover {
    color: var(--brand-primary-hover, #21867A);
  }

.thank {
  background: var(--page-bg);
  color: var(--page-fg);
}

.404 {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 6rem 1.5rem;
  }
  .404 .inner {
    max-width: 640px;
    margin: 0 auto;
  }
  .404 .note {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-primary-bg);
  }
  .404 h1 {
    margin: 0 0 1.25rem;
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 700;
  }
  .404 p {
    margin: 0 0 2.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 54ch;
  }
  .404 .choices {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
  }
  .404 .choice {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    background: var(--brand-primary-bg);
    color: var(--brand-primary-fg);
    transition: background 0.2s ease;
  }
  .404 .choice:hover {
    background: var(--brand-primary-hover);
  }
  .404 .choice.secondary {
    background: transparent;
    color: var(--gradient-hero-fg);
    border: 1px solid var(--brand-primary-bg);
  }
  .404 .choice.secondary:hover {
    background: var(--brand-primary-bg);
    color: var(--brand-primary-fg);
  }

.404 {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}