:root {
  --font-family: "Nunito", sans-serif;
  --font-size-base: 14.4px;
  --line-height-base: 2.05;

  --max-w: 1140px;
  --space-x: 1.32rem;
  --space-y: 1.5rem;
  --gap: 1rem;
  --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: 1.32rem;
  --radius-lg: 0.98rem;
  --radius-md: 0.7rem;
  --radius-sm: 0.38rem;

  --shadow-sm: 0 1px 5px rgba(0,0,0,0.03);
  --shadow-md: 0 3px 14px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 28px rgba(0,0,0,0.04);

  --overlay: rgba(15, 23, 42, 0.6);
  --anim-duration: 340ms;
  --anim-ease: ease-in-out;
  --random-number: 2;

  --brand: #0EA5E9;
  --brand-contrast: #FFFFFF;
  --accent: #F59E0B;
  --accent-contrast: #1E293B;

  --neutral-0: #FFFFFF;
  --neutral-100: #F1F5F9;
  --neutral-300: #CBD5E1;
  --neutral-600: #475569;
  --neutral-800: #1E293B;
  --neutral-900: #0F172A;

  --page-bg: #F8FAFC;
  --page-fg: #1E293B;
  --muted-bg: #F1F5F9;
  --muted-fg: #475569;
  --card-bg: #FFFFFF;
  --card-fg: #1E293B;
  --card-border: #E2E8F0;
  --inverse-bg: #0F172A;
  --inverse-fg: #F8FAFC;
  --primary-bg: #0EA5E9;
  --primary-fg: #FFFFFF;
  --primary-hover: #0284C7;
  --accent-bg: #F59E0B;
  --accent-fg: #1E293B;
  --accent-hover: #D97706;
  --gradient-hero-bg: linear-gradient(135deg, #E0F2FE 0%, #F8FAFC 100%);
  --gradient-hero-fg: #1E293B;
  --gradient-accent-bg: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
  --gradient-accent-fg: #1E293B;

  --ring: #38BDF8;

  --link: #0EA5E9;
  --link-hover: #F59E0B;

  --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 {
    width: 100%;
    background-color: var(--page-bg);
    border-bottom: 1px solid var(--card-border);
  }

  .header-wrapper {
    max-width: calc(var(--max-w) + 4rem);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
  }

  .logo {
    font-size: 1.75rem;
    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);
  }

  .main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: var(--font-size-md);
    font-weight: 500;
    color: var(--page-fg);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease),
                color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-area {
    flex-shrink: 0;
  }

  .btn-cta {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--primary-fg);
    background-color: var(--primary-bg);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background-color var(--anim-duration) var(--anim-ease),
                transform var(--anim-duration) var(--anim-ease);
  }

  .btn-cta:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
  }

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

  .burger:hover {
    background-color: var(--muted-bg);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header-wrapper {
      padding: 0.875rem 1.25rem;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .logo {
      font-size: 1.5rem;
    }

    .burger {
      display: flex;
      order: 3;
    }

    .cta-area {
      order: 2;
      margin-left: auto;
    }

    .btn-cta {
      padding: 0.5rem 1rem;
      font-size: var(--font-size-sm);
    }

    .main-nav {
      display: none;
      width: 100%;
      order: 4;
      flex-basis: 100%;
      padding-top: 1rem;
      border-top: 1px solid var(--card-border);
    }

    .main-nav.open {
      display: flex;
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      width: 100%;
      gap: 0.25rem;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 0.5rem;
      font-size: var(--font-size-lg);
    }
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    .header-wrapper {
      padding: 1rem 1.5rem;
    }

    .nav-link {
      padding: 0.5rem 0.75rem;
      font-size: var(--font-size-sm);
    }

    .btn-cta {
      padding: 0.5rem 1.25rem;
      font-size: var(--font-size-sm);
    }
  }

.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-y)}.footer-contact-block{display:flex;flex-wrap:wrap;gap:var(--space-x);padding-bottom:var(--space-block);border-bottom:1px solid rgba(255, 255, 255, 0.1)}.footer-contact,
    .footer-contact-item{display:flex;flex-direction:column;gap:0.25rem;font-style:normal}.footer-contact-label{font-size:var(--font-size-sm);opacity:0.8;text-transform:uppercase;letter-spacing:0.05em}.footer-contact-value,
    .footer-contact-link{font-size:var(--font-size-md);color:inherit}.footer-contact-link{text-decoration:none;transition:opacity var(--anim-duration) var(--anim-ease)}.footer-contact-link:hover{opacity:0.8;text-decoration:underline}.footer-brand{display:flex;flex-direction:column;gap:0.5rem}.footer-logo{font-size:var(--font-size-h2);font-weight:700;color:inherit;text-decoration:none;letter-spacing:-0.02em}.footer-tagline{font-size:var(--font-size-sm);opacity:0.8;margin:0}.footer-nav{display:grid;grid-template-columns:repeat(3, 1fr);gap:var(--gap);padding:var(--space-block) 0;border-top:1px solid rgba(255, 255, 255, 0.1);border-bottom:1px solid rgba(255, 255, 255, 0.1)}.footer-nav-column{display:flex;flex-direction:column;gap:0.5rem}.footer-nav-link{color:inherit;text-decoration:none;font-size:var(--font-size-md);transition:opacity var(--anim-duration) var(--anim-ease)}.footer-nav-link:hover{opacity:0.8;text-decoration:underline}.footer-legal{display:flex;gap:var(--space-x);flex-wrap:wrap;padding-top:var(--space-block)}.footer-legal-link{color:inherit;text-decoration:none;font-size:var(--font-size-sm);opacity:0.8;transition:opacity var(--anim-duration) var(--anim-ease)}.footer-legal-link:hover{opacity:1;text-decoration:underline}.footer-bottom{display:flex;flex-direction:column;gap:var(--space-y);padding-top:var(--space-block);border-top:1px solid rgba(255, 255, 255, 0.1)}.footer-disclaimer{font-size:var(--font-size-sm);opacity:0.7;margin:0;line-height:1.5}.footer-copyright{font-size:var(--font-size-sm);opacity:0.7;margin:0}

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

    @media (max-width: 480px) {.footer-nav{grid-template-columns:1fr}.footer-contact-block{flex-direction:column}
    }

.cookies {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 9999;
    max-width: 320px;
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-base);
    color: var(--page-fg);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

  .cookies .notice {
    padding: var(--space-card);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .cookies .title {
    margin: 0;
    font-size: var(--font-size-md);
    font-weight: 600;
  }

  .cookies .copy {
    margin: 0;
    color: var(--muted-fg);
  }

  .cookies .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .cookies .actions button {
    padding: 0.4rem 0.75rem;
    font-family: inherit;
    font-size: var(--font-size-sm);
    line-height: 1.2;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cookies .cookie-accept {
    background: var(--primary-bg);
    color: var(--primary-fg);
    border: 1px solid var(--primary-bg);
  }

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

  .cookies .cookie-reject {
    background: transparent;
    color: var(--page-fg);
    border: 1px solid var(--card-border);
  }

  .cookies .cookie-reject:hover {
    background: var(--muted-bg);
  }

  .cookies .cookie-manage {
    background: transparent;
    color: var(--link);
    border: none;
    text-decoration: underline;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .cookies .cookie-manage:hover {
    color: var(--link-hover);
  }

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

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

    .intro-focus h1 {
        font-size: 2.4rem;
        line-height: 1.2;
        font-weight: 700;
        margin: 0 0 1.25rem;
        letter-spacing: -0.02em;
    }

    .intro-focus .lead {
        font-size: 1.15rem;
        line-height: 1.6;
        margin: 0 0 1.25rem;
    }

    .intro-focus .note {
        font-size: 0.95rem;
        line-height: 1.6;
        border-left: 3px solid var(--primary-bg);
        padding-left: 1rem;
        margin: 0 0 2rem;
    }

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

    .intro-focus .action {
        display: inline-block;
        background: var(--primary-bg);
        color: var(--primary-fg);
        padding: 0.7rem 1.4rem;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
    }

    .intro-focus .action:hover {
        background: var(--primary-hover);
    }

    .intro-focus .read {
        color: var(--page-fg);
        text-decoration: underline;
        text-underline-offset: 3px;
        font-size: 0.95rem;
        font-weight: 600;
    }

    .intro-focus .read:hover {
        color: var(--primary-bg);
    }

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

        .intro-focus h1 {
            font-size: 1.9rem;
        }

        .intro-focus .route {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }
    }

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

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

  .how-it-works .inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .how-it-works h2 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 1rem;
  }

  .how-it-works h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1rem;
  }

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

  .how-it-works p:last-child {
    margin-bottom: 0;
  }

  .how-it-works .setup {
    border-bottom: 1px solid var(--muted-bg);
    padding-bottom: 2.5rem;
  }

  .how-it-works .route {
    margin-top: 1.5rem;
    font-size: 0.95rem;
  }

  .how-it-works .route a {
    color: var(--primary-bg);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
  }

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

  @media (min-width: 768px) {
    .how-it-works {
      padding: 5rem 2rem;
    }

    .how-it-works .inner {
      flex-direction: row;
      gap: 4rem;
    }

    .how-it-works .setup,
    .how-it-works .next {
      flex: 1;
    }

    .how-it-works .setup {
      border-bottom: none;
      border-right: 1px solid var(--muted-bg);
      padding-bottom: 0;
      padding-right: 4rem;
    }
  }

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

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

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

    .recommendations h2 {
      font-size: 1.6rem;
      font-weight: 700;
      margin: 0 0 0.5rem;
      color: var(--page-fg);
    }

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

    .recommendations .entries {
      border-top: 1px solid var(--card-border);
    }

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

    .recommendations .entry h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin: 0 0 0.35rem;
    }

    .recommendations .entry h3 a {
      color: var(--page-fg);
      text-decoration: none;
    }

    .recommendations .entry h3 a:hover {
      color: var(--primary-bg);
    }

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

    .recommendations .more {
      margin: 1.75rem 0 0;
      font-size: 0.95rem;
    }

    .recommendations .more a {
      color: var(--primary-bg);
      text-decoration: none;
      font-weight: 600;
    }

    .recommendations .more a:hover {
      text-decoration: underline;
    }

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

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

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

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

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

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

  .value-points a {
    color: var(--brand-primary-bg, #0EA5E9);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(14, 165, 233, 0.35);
    transition: text-decoration-color 0.2s ease;
  }

  .value-points a:hover {
    text-decoration-color: currentColor;
  }

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

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

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

        .people-behind h2 {
            font-size: 1.75rem;
            line-height: 1.3;
            margin: 0 0 1rem;
            font-weight: 700;
        }

        .people-behind .inner > p {
            font-size: 1rem;
            line-height: 1.7;
            margin: 0 0 2.5rem;
            max-width: 720px;
        }

        .people-behind .team-list {
            display: block;
        }

        .people-behind .member {
            padding: 1.5rem 0;
            border-top: 1px solid var(--muted-bg);
        }

        .people-behind .member:last-of-type {
            border-bottom: 1px solid var(--muted-bg);
        }

        .people-behind .member h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin: 0 0 0.25rem;
        }

        .people-behind .member .role {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--brand-primary-bg);
            margin: 0 0 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .people-behind .member p:last-child {
            font-size: 0.95rem;
            line-height: 1.65;
            margin: 0;
            max-width: 640px;
        }

        .people-behind .note {
            font-size: 0.9rem;
            line-height: 1.6;
            color: var(--muted-fg);
            margin: 2rem 0 0;
            max-width: 640px;
        }

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

            .people-behind h2 {
                font-size: 2rem;
            }
        }

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

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

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

  .mission h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
  }

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

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

  .mission a {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-bg, #0EA5E9);
    text-decoration: none;
    border-bottom: 2px solid var(--primary-bg, #0EA5E9);
    padding-bottom: 0.25rem;
    transition: color 0.2s ease, border-color 0.2s ease;
  }

  .mission a:hover {
    color: var(--primary-hover, #0284C7);
    border-color: var(--primary-hover, #0284C7);
  }

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

    .mission h2 {
      font-size: 2rem;
    }

    .mission p {
      font-size: 1.125rem;
    }
  }

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

.our-story {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 64px 20px;
  }

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

  .our-story h2 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
  }

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

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

  @media (min-width: 640px) {
    .our-story {
      padding: 88px 24px;
    }

    .our-story h2 {
      font-size: 32px;
    }

    .our-story p {
      font-size: 17px;
    }
  }

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

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

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

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

  .faq > .inner > p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 2.5rem;
    color: var(--muted-fg);
  }

  .faq-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

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

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

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

  .faq-item dd {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    color: var(--muted-fg);
  }

  .faq-note {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 2rem 0 0;
    color: var(--muted-fg);
  }

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

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

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

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

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

    .capabilities h2 {
      font-size: 1.8rem;
      line-height: 1.3;
      margin: 0 0 1.25rem;
      font-weight: 700;
    }

    .capabilities p {
      line-height: 1.65;
      margin: 0 0 1rem;
    }

    .capabilities .operations {
      margin: 2.5rem 0 0;
    }

    .capabilities .operation {
      padding: 1.25rem 0;
    }

    .capabilities .operation + .operation {
      border-top: 1px solid var(--muted-bg);
    }

    .capabilities .operation h3 {
      font-size: 1.15rem;
      font-weight: 700;
      margin: 0 0 0.5rem;
      color: var(--page-fg);
    }

    .capabilities .operation p {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--muted-fg);
    }

    .capabilities .note {
      margin-top: 2.5rem;
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--muted-fg);
    }

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

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

.capabilities {
  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: 700;
        margin: 0 0 0.75rem;
        line-height: 1.3;
    }
    .social-proof .lead {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 0 2.5rem;
        max-width: 640px;
        opacity: 0.85;
    }
    .social-proof .reviews {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }
    .social-proof .review {
        background: var(--card-bg);
        color: var(--card-fg);
        border-radius: 12px;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .social-proof .text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
        flex-grow: 1;
    }
    .social-proof .author {
        font-size: 0.95rem;
        font-weight: 700;
        margin: 0.5rem 0 0;
    }
    .social-proof .meta {
        font-size: 0.85rem;
        margin: 0;
        opacity: 0.75;
    }

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

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

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

    .clarifications h2 {
        font-size: 1.75rem;
        font-weight: 700;
        margin: 0 0 1.5rem;
        letter-spacing: -0.01em;
    }

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

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

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

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

        .clarifications p {
            font-size: 1.0625rem;
        }
    }

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

.plans-overview {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 72px 24px;
    }

    .plans-overview .inner {
      max-width: 1080px;
      margin: 0 auto;
    }

    .plans-overview h2 {
      font-size: 30px;
      line-height: 1.25;
      margin: 0 0 16px;
      max-width: 640px;
    }

    .plans-overview .lead {
      font-size: 17px;
      line-height: 1.65;
      margin: 0 0 48px;
      max-width: 680px;
      opacity: 0.85;
    }

    .plans-overview .options {
      display: block;
    }

    .plans-overview .option {
      background: var(--card-bg);
      color: var(--card-fg);
      border-radius: 12px;
      padding: 28px 32px;
      margin-bottom: 20px;
    }

    .plans-overview .option h3 {
      font-size: 20px;
      margin: 0 0 12px;
    }

    .plans-overview .option p {
      font-size: 15px;
      line-height: 1.6;
      margin: 0 0 12px;
      max-width: 720px;
    }

    .plans-overview .option .note {
      font-size: 14px;
      opacity: 0.75;
      margin-bottom: 20px;
    }

    .plans-overview .choice {
      display: inline-block;
      background: var(--primary-bg);
      color: var(--primary-fg);
      border-radius: 8px;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
    }

    .plans-overview .choice:hover {
      background: var(--primary-hover);
    }

    .plans-overview .footnote {
      font-size: 14px;
      line-height: 1.6;
      margin: 32px 0 0;
      max-width: 680px;
      opacity: 0.8;
    }

    .plans-overview .footnote a {
      color: var(--inverse-fg);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    @media (min-width: 900px) {
      .plans-overview .options {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }

      .plans-overview .option {
        margin-bottom: 0;
        padding: 28px 24px;
        display: flex;
        flex-direction: column;
      }

      .plans-overview .option .choice {
        margin-top: auto;
        align-self: flex-start;
      }
    }

.plans-overview {
  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: 68rem;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
  }
  .next-step .step-copy {
    flex: 1 1 60%;
  }
  .next-step h2 {
    font-size: 1.75rem;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 1rem;
  }
  .next-step p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.25rem;
  }
  .next-step .step-action {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary-fg);
    padding: 0.7rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
  }
  .next-step .step-action:hover {
    background: var(--primary-hover);
  }
  .next-step .step-note {
    flex: 0 1 34%;
    background: var(--muted-bg);
    color: var(--muted-fg);
    padding: 1.25rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
  }
  .next-step .step-note p {
    margin: 0 0 0.75rem;
  }
  .next-step .step-note p:last-child {
    margin-bottom: 0;
  }
  .next-step .step-route a {
    color: var(--primary-bg);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .next-step .step-route a:hover {
    color: var(--primary-hover);
  }
  @media (max-width: 40rem) {
    .next-step .inner {
      flex-direction: column;
      gap: 1.5rem;
    }
    .next-step .step-note {
      flex: 1 1 auto;
    }
  }

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

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

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

    .recommendations h2 {
      font-size: 1.7rem;
      line-height: 1.25;
      margin: 0 0 0.75rem;
      font-weight: 700;
    }

    .recommendations .intro {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 2.25rem;
      max-width: 620px;
    }

    .recommendations .entry {
      border-top: 1px solid rgba(248, 250, 252, 0.18);
      padding: 1.5rem 0;
    }

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

    .recommendations .entry p {
      font-size: 0.98rem;
      line-height: 1.6;
      margin: 0 0 0.75rem;
      max-width: 680px;
    }

    .recommendations .entry a {
      color: #7DD3FC;
      text-decoration: none;
      font-size: 0.95rem;
      border-bottom: 1px solid rgba(125, 211, 252, 0.4);
      padding-bottom: 1px;
    }

    .recommendations .entry a:hover {
      color: #BAE6FD;
      border-bottom-color: #BAE6FD;
    }

    .recommendations .note {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 1.75rem 0 0;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(248, 250, 252, 0.18);
      max-width: 680px;
    }

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

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

  .why-choose h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin: 0 0 1rem;
    font-weight: 700;
  }

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

  .why-choose .note {
    border-left: 3px solid var(--primary-bg, #0EA5E9);
    padding: 0.25rem 0 0.25rem 1.25rem;
    margin-bottom: 1.75rem;
  }

  .why-choose .note h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0 0 0.5rem;
    font-weight: 600;
  }

  .why-choose .note p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
  }

  .why-choose .footnote {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 2.5rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--muted-bg, #E2E8F0);
  }

  .why-choose .footnote a {
    color: var(--primary-bg, #0EA5E9);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .why-choose .footnote a:hover {
    color: var(--primary-hover, #0284C7);
  }

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

    .why-choose h2 {
      font-size: 2rem;
    }
  }

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

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

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

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

    .support .lead {
      font-size: 1.05rem;
      line-height: 1.7;
      margin: 0 0 2.5rem;
      max-width: 720px;
    }

    .support .channels {
      margin-bottom: 2.5rem;
    }

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

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

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

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

    .support .channel a {
      color: var(--primary-bg);
      text-decoration: none;
    }

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

    .support .response-times {
      margin-bottom: 2.5rem;
    }

    .support .response-times h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.5rem;
    }

    .support .response-times p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0;
      max-width: 720px;
    }

    .support .note {
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0 0 2rem;
      padding: 1rem 1.25rem;
      background: var(--muted-bg);
      color: var(--muted-fg);
      border-radius: 8px;
    }

    .support .route {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      padding-top: 0.5rem;
    }

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

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

    @media (max-width: 640px) {
      .support {
        padding: 3rem 1.25rem;
      }

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

      .support .route {
        flex-direction: column;
        gap: 0.75rem;
      }
    }

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

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

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

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

    .timeline .lead {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      color: var(--muted-fg);
    }

    .timeline .entry {
      padding: 1.5rem 0;
      border-top: 1px solid var(--muted-bg);
    }

    .timeline .entry:last-of-type {
      border-bottom: 1px solid var(--muted-bg);
    }

    .timeline .period {
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      margin: 0 0 0.5rem;
      color: var(--primary-bg);
    }

    .timeline h3 {
      font-size: 1.15rem;
      font-weight: 700;
      line-height: 1.4;
      margin: 0 0 0.6rem;
    }

    .timeline .entry p:last-child {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0;
    }

    .timeline .note {
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 2rem 0 0;
      padding: 1rem 1.25rem;
      background: var(--muted-bg);
      color: var(--muted-fg);
      border-radius: 8px;
    }

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

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

.timeline {
  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;
        font-weight: 700;
        margin: 0 0 1.2rem;
        line-height: 1.3;
    }
    .value-points p {
        font-size: 1rem;
        line-height: 1.7;
        margin: 0 0 1.2rem;
        color: var(--muted-fg);
    }
    .value-points .benefit {
        margin: 2.2rem 0 0;
        padding-left: 1.2rem;
        border-left: 3px solid var(--primary-bg);
    }
    .value-points .benefit h3 {
        font-size: 1.15rem;
        font-weight: 700;
        margin: 0 0 0.5rem;
        line-height: 1.4;
    }
    .value-points .benefit p {
        margin: 0;
    }
    .value-points .route {
        margin-top: 2.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--card-border);
        font-size: 0.95rem;
    }
    .value-points .route a {
        color: var(--primary-bg);
        text-decoration: none;
        font-weight: 600;
    }
    .value-points .route a:hover {
        text-decoration: underline;
    }

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

  .support .inner {
    max-width: 48rem;
    margin: 0 auto;
  }

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

  .support p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.5rem;
    color: var(--muted-fg);
  }

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

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

  .support .route {
    margin-top: 0.5rem;
  }

  .support .route a {
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-bg);
    padding-bottom: 2px;
  }

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

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

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

  .contacts h2 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 1rem;
  }

  .contacts p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
    color: var(--muted-fg);
  }

  .contacts .line {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    padding: 0.9rem 0;
    border-top: 1px solid var(--card-border);
  }

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

  .contacts .label {
    width: 6.5rem;
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--muted-fg);
  }

  .contacts .line span:not(.label),
  .contacts .line a {
    font-size: 1rem;
    line-height: 1.5;
  }

  .contacts .line a {
    color: var(--brand-primary-bg);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
  }

  .contacts .line a:hover {
    border-bottom-color: var(--brand-primary-bg);
  }

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

.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.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.75rem;
  }

  .stay-in-touch p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    color: var(--muted-fg);
  }

  .stay-in-touch .field {
    margin-bottom: 1rem;
  }

  .stay-in-touch label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
  }

  .stay-in-touch input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--card-fg);
    box-sizing: border-box;
  }

  .stay-in-touch input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-bg);
  }

  .stay-in-touch button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: var(--primary-bg);
    color: var(--primary-fg);
    cursor: pointer;
  }

  .stay-in-touch button:hover {
    background: var(--primary-hover);
  }

  .stay-in-touch .note {
    font-size: 0.8125rem;
    margin-top: 1rem;
    margin-bottom: 0;
  }

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

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

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

    .value-points h2 {
        font-size: 1.9rem;
        font-weight: 700;
        line-height: 1.25;
        margin: 0 0 1rem;
        letter-spacing: -0.01em;
    }

    .value-points .lead {
        font-size: 1.05rem;
        line-height: 1.65;
        margin: 0 0 2.5rem;
        opacity: 0.85;
    }

    .value-points .benefit {
        border-top: 1px solid rgba(248, 250, 252, 0.15);
        padding: 1.5rem 0;
    }

    .value-points .benefit h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0 0 0.5rem;
    }

    .value-points .benefit p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
        opacity: 0.75;
    }

    .value-points .footnote {
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 2rem 0 0;
        opacity: 0.7;
    }

    .value-points .footnote a {
        color: var(--inverse-fg);
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-color: rgba(248, 250, 252, 0.4);
    }

    .value-points .footnote a:hover {
        text-decoration-color: var(--inverse-fg);
    }

    @media (min-width: 640px) {
        .value-points {
            padding: 5.5rem 2rem;
        }

        .value-points h2 {
            font-size: 2.2rem;
        }

        .value-points .lead {
            font-size: 1.1rem;
        }
    }

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

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

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

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

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

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

    .capabilities .route {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1.5rem;
      border-top: 1px solid var(--muted-bg);
      padding-top: 1.5rem;
    }

    .capabilities .route a {
      color: var(--brand-primary-bg, #0EA5E9);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .capabilities .route a:hover {
      text-decoration: underline;
    }

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

      .capabilities h2 {
        font-size: 2rem;
      }

      .capabilities p {
        font-size: 1.0625rem;
      }
    }

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

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

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

  .next-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted-fg);
    margin: 0 0 2rem;
  }

  .next-step .route {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
  }

  .next-step .action {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary-fg);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s ease;
  }

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

  .next-step .more {
    display: inline-block;
    color: var(--primary-bg);
    padding: 0.7rem 0.25rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
  }

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

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

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

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

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

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

    .social-proof blockquote {
      margin: 0;
      padding: 1.5rem 1.75rem;
      background: var(--card-bg);
      color: var(--card-fg);
      border-left: 3px solid var(--primary-bg);
    }

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

    .social-proof footer {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }

    .social-proof cite {
      font-style: normal;
      font-weight: 700;
      font-size: 0.95rem;
    }

    .social-proof footer span {
      font-size: 0.85rem;
      opacity: 0.75;
    }

    @media (min-width: 700px) {
      .social-proof .quotes {
        grid-template-columns: 1fr 1fr;
        align-items: start;
      }

      .social-proof blockquote:last-child {
        grid-column: 1 / -1;
        max-width: 640px;
      }
    }

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

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

  .social-proof h2 {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
  }

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

  .social-proof .entries {
    display: block;
  }

  .social-proof .entry {
    padding: 28px 0;
    border-top: 1px solid var(--muted-bg);
  }

  .social-proof .entry:last-child {
    border-bottom: 1px solid var(--muted-bg);
  }

  .social-proof .quote {
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 0 18px;
  }

  .social-proof .author {
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 0 4px;
  }

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

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

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

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

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

  .next-step p {
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 1rem;
    max-width: 60ch;
  }

  .next-step .route {
    margin-top: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .next-step .action {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary-fg);
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
  }

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

  .next-step .route a:not(.action) {
    color: var(--inverse-fg);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 0.95rem;
  }

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

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

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

  .support h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.3;
  }

  .support > .inner > p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
    color: var(--muted-fg);
  }

  .support .route {
    border-top: 1px solid var(--card-border);
  }

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

  .support .entry h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
  }

  .support .entry p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: var(--muted-fg);
  }

  .support .entry a {
    color: var(--primary-bg);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
  }

  .support .entry a:hover {
    border-bottom-color: var(--primary-bg);
  }

  .support .note {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 1.5rem 0 0;
    color: var(--muted-fg);
    font-style: italic;
  }

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

    .how-it-works .inner {
        max-width: 880px;
        margin: 0 auto;
    }

    .how-it-works h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin: 0 0 1rem;
        font-weight: 700;
    }

    .how-it-works > .inner > p {
        font-size: 1rem;
        line-height: 1.7;
        margin: 0 0 2.5rem;
        max-width: 640px;
    }

    .how-it-works .steps {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .how-it-works .step {
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--muted-bg);
    }

    .how-it-works .step:first-child {
        border-top: 1px solid var(--muted-bg);
    }

    .how-it-works .step h3 {
        font-size: 1.15rem;
        line-height: 1.4;
        margin: 0 0 0.5rem;
        font-weight: 700;
    }

    .how-it-works .step p {
        font-size: 0.95rem;
        line-height: 1.65;
        margin: 0;
        max-width: 680px;
    }

    .how-it-works .note {
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 2rem 0 0;
        color: var(--muted-fg);
    }

    .how-it-works .note a {
        color: var(--primary-bg);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

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

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

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

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

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

        .feedback .lead {
            font-size: 1.05rem;
            line-height: 1.7;
            margin: 0 0 2.5rem;
            color: var(--muted-fg);
        }

        .feedback .entries {
            display: block;
        }

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

        .feedback .entry:first-of-type {
            padding-top: 0;
        }

        .feedback .entry:last-of-type {
            border-bottom: none;
            padding-bottom: 0;
        }

        .feedback .entry h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0 0 0.6rem;
            line-height: 1.4;
        }

        .feedback .entry p {
            margin: 0;
            line-height: 1.7;
            font-size: 0.98rem;
        }

        .feedback .note {
            margin: 2.5rem 0 0;
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--muted-fg);
            border-left: 3px solid var(--primary-bg);
            padding-left: 1rem;
        }

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

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

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

  .partners h2 {
    font-size: 1.7rem;
    line-height: 1.25;
    margin: 0 0 0.75rem;
    max-width: 640px;
  }

  .partners .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2rem;
    max-width: 640px;
    opacity: 0.92;
  }

  .partners .notes {
    border-left: 3px solid var(--primary-bg);
    padding-left: 1.25rem;
    max-width: 720px;
  }

  .partners .note {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    opacity: 0.85;
  }

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

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

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

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

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

  .social-proof .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 0 0 2.5rem;
    max-width: 640px;
  }

  .social-proof .reviews {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
  }

  .social-proof .review {
    border-top: 1px solid var(--card-border);
    padding: 1.75rem 0;
  }

  .social-proof .review:last-child {
    border-bottom: 1px solid var(--card-border);
  }

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

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

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

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

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

  .our-story .lead {
    font-size: 18px;
    line-height: 1.65;
    margin: 0 0 20px;
  }

  .our-story p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 18px;
  }

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

  @media (min-width: 640px) {
    .our-story {
      padding: 96px 32px;
    }

    .our-story h2 {
      font-size: 36px;
    }

    .our-story .lead {
      font-size: 19px;
    }
  }

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

  .identity .inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .identity .lead {
    max-width: 720px;
  }

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

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

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

  .identity .note {
    max-width: 720px;
    border-top: 1px solid var(--muted-bg);
    padding-top: 1.5rem;
  }

  .identity .note p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 0;
  }

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

    .identity .inner {
      flex-direction: row;
      align-items: flex-start;
      gap: 4rem;
    }

    .identity .lead {
      flex: 1.4;
    }

    .identity .note {
      flex: 1;
      border-top: none;
      border-left: 1px solid var(--muted-bg);
      padding-top: 0;
      padding-left: 2rem;
    }

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

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

.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 .date {
      font-size: 0.85rem;
      color: var(--muted-fg);
      margin: 0 0 1rem 0;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .blog-item h1 {
      font-size: 2rem;
      line-height: 1.25;
      margin: 0 0 0.75rem 0;
      font-weight: 700;
    }
    .blog-item .subtitle {
      font-size: 1.1rem;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 0 0 2.5rem 0;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--card-border);
    }
    .blog-item .content p {
      font-size: 1rem;
      line-height: 1.75;
      margin: 0 0 1.5rem 0;
    }
    .blog-item .route {
      margin: 2.5rem 0 0 0;
      padding-top: 1.5rem;
      border-top: 1px solid var(--card-border);
      font-size: 0.95rem;
    }
    .blog-item .route a {
      color: var(--primary-bg);
      text-decoration: none;
    }
    .blog-item .route a:hover {
      text-decoration: underline;
    }

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

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

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

  .blog-list h2 {
    font-size: 1.9rem;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    font-weight: 700;
  }

  .blog-list .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--muted-fg);
    max-width: 720px;
    margin: 0 0 3rem;
  }

  .blog-list .entry {
    display: block;
    margin-bottom: 3.5rem;
  }

  .blog-list .entry:last-child {
    margin-bottom: 0;
  }

  .blog-list .entry img {
    display: block;
    width: 100%;
    max-width: 720px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.25rem;
  }

  .blog-list .entry-body {
    max-width: 720px;
  }

  .blog-list .date {
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--muted-fg);
    margin: 0 0 0.4rem;
  }

  .blog-list h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin: 0 0 0.75rem;
    font-weight: 700;
  }

  .blog-list h3 a {
    color: inherit;
    text-decoration: none;
  }

  .blog-list h3 a:hover {
    text-decoration: underline;
  }

  .blog-list p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--muted-fg);
    margin: 0 0 1rem;
  }

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

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

    .blog-list h2 {
      font-size: 2.2rem;
    }

    .blog-list .lead {
      font-size: 1.1rem;
    }

    .blog-list h3 {
      font-size: 1.55rem;
    }
  }

.blog-list {
  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: 720px;
            margin: 0 auto;
        }
        .blog-item .entry-head {
            margin-bottom: 2rem;
        }
        .blog-item .entry-date {
            font-size: 0.85rem;
            color: var(--muted-fg);
            margin: 0 0 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .blog-item h1 {
            font-size: 1.9rem;
            line-height: 1.25;
            margin: 0 0 1rem;
            font-weight: 700;
        }
        .blog-item .entry-intro {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--muted-fg);
            margin: 0;
        }
        .blog-item .entry-body p {
            line-height: 1.7;
            margin: 0 0 1.25rem;
        }
        .blog-item .entry-foot {
            border-top: 1px solid var(--card-border);
            margin-top: 2rem;
            padding-top: 1.5rem;
        }
        .blog-item .entry-note {
            font-size: 0.95rem;
            color: var(--muted-fg);
            margin: 0 0 1rem;
        }
        .blog-item .entry-route {
            margin: 0;
        }
        .blog-item .entry-route a {
            display: inline-block;
            margin-right: 1.5rem;
            color: var(--primary-bg);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
        }
        .blog-item .entry-route a:hover {
            text-decoration: underline;
        }

.blog-list {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 64px 24px;
  }

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

  .blog-list h2 {
    font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 12px 0;
    font-weight: 700;
  }

  .blog-list .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 0 0 40px 0;
    max-width: 640px;
  }

  .blog-list .entry {
    border-bottom: 1px solid var(--card-border);
    padding: 28px 0;
  }

  .blog-list .entry:first-of-type {
    border-top: 1px solid var(--card-border);
  }

  .blog-list .entry-link {
    display: flex;
    gap: 28px;
    text-decoration: none;
    color: inherit;
    align-items: flex-start;
  }

  .blog-list .entry-link img {
    width: 220px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .blog-list .entry-body time {
    display: block;
    font-size: 0.85rem;
    color: var(--muted-fg);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .blog-list .entry-body h3 {
    font-size: 1.3rem;
    line-height: 1.3;
    margin: 0 0 10px 0;
    font-weight: 700;
  }

  .blog-list .entry-body p {
    font-size: 0.97rem;
    line-height: 1.65;
    color: var(--muted-fg);
    margin: 0;
  }

  .blog-list .entry-link:hover h3 {
    color: var(--primary-bg);
  }

  @media (max-width: 700px) {
    .blog-list {
      padding: 40px 18px;
    }

    .blog-list .entry-link {
      flex-direction: column;
      gap: 14px;
    }

    .blog-list .entry-link img {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 10;
    }
  }

.blog-item {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 64px 24px 72px;
    }
    .blog-item .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .blog-item .date {
      font-size: 14px;
      color: var(--muted-fg);
      margin: 0 0 16px;
      letter-spacing: 0.02em;
    }
    .blog-item h1 {
      font-size: 32px;
      line-height: 1.25;
      margin: 0 0 20px;
      font-weight: 700;
    }
    .blog-item .lead {
      font-size: 18px;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 0 0 36px;
    }
    .blog-item .entry p {
      font-size: 16px;
      line-height: 1.75;
      margin: 0 0 20px;
    }
    .blog-item .note {
      background: var(--muted-bg);
      color: var(--muted-fg);
      border-radius: 8px;
      padding: 16px 20px;
      font-size: 15px;
      line-height: 1.6;
      margin: 36px 0 0;
    }
    .blog-item .note a {
      color: var(--primary-bg);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .blog-item .route {
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid var(--card-border);
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }
    .blog-item .route a {
      color: var(--primary-bg);
      font-size: 15px;
      text-decoration: none;
      font-weight: 600;
    }
    .blog-item .route a:hover {
      text-decoration: underline;
      text-underline-offset: 2px;
    }

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

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

  .blog-list h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
  }

  .blog-list .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 0 0 2.5rem;
    max-width: 620px;
  }

  .blog-list .entry {
    border-top: 1px solid var(--card-border);
    padding: 1.75rem 0;
  }

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

  .blog-list .entry-link {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    color: inherit;
    align-items: flex-start;
  }

  .blog-list .entry-image {
    width: 180px;
    height: 130px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    display: block;
  }

  .blog-list .entry-content {
    flex: 1;
  }

  .blog-list time {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted-fg);
    margin-bottom: 0.4rem;
  }

  .blog-list h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1.3;
  }

  .blog-list p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 0 0 0.75rem;
  }

  .blog-list .entry-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-bg);
  }

  .blog-list .entry-link:hover h3 {
    color: var(--primary-bg);
  }

  @media (max-width: 640px) {
    .blog-list .entry-link {
      flex-direction: column;
      gap: 0.9rem;
    }

    .blog-list .entry-image {
      width: 100%;
      height: 190px;
    }
  }

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

    .map .inner {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

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

    .map-info p {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 0 1.5rem;
        max-width: 60ch;
    }

    .map-details {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    .map-detail h3 {
        font-size: 0.9rem;
        font-weight: 700;
        margin: 0 0 0.25rem;
        color: var(--muted-fg);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .map-detail p {
        font-size: 1rem;
        margin: 0;
        line-height: 1.5;
    }

    .map-detail a {
        color: var(--primary-bg);
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: border-color 0.2s ease;
    }

    .map-detail a:hover {
        border-bottom-color: var(--primary-bg);
    }

    .map-visual {
        background: var(--muted-bg);
        border-radius: 8px;
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 220px;
    }

    .map-placeholder p {
        margin: 0;
        text-align: center;
        color: var(--muted-fg);
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .map-placeholder p:first-child {
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
        color: var(--page-fg);
    }

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

        .map .inner {
            flex-direction: row;
            align-items: flex-start;
            gap: 4rem;
        }

        .map-info {
            flex: 1 1 55%;
        }

        .map-visual {
            flex: 1 1 45%;
            min-height: 280px;
            margin-top: 0.5rem;
        }
    }

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

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

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

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

    .contacts > .inner > p {
        font-size: 1rem;
        line-height: 1.7;
        margin: 0 0 2.5rem 0;
        color: var(--muted-fg);
    }

    .contacts .contact-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .contacts .contact-item {
        padding: 1.25rem 0;
        border-bottom: 1px solid var(--muted-bg);
    }

    .contacts .contact-item:first-child {
        padding-top: 0;
    }

    .contacts .contact-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .contacts .contact-item h3 {
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        margin: 0 0 0.5rem 0;
        color: var(--muted-fg);
    }

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

    .contacts .contact-item a {
        color: var(--primary-bg);
        text-decoration: none;
    }

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

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

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

  .form h2 {
    font-size: 1.75rem;
    line-height: 1.25;
    margin: 0 0 12px 0;
    font-weight: 700;
  }

  .form p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 32px 0;
    color: var(--muted-fg);
  }

  .form form {
    border-top: 1px solid var(--card-border);
    padding-top: 28px;
  }

  .form .field {
    margin-bottom: 20px;
  }

  .form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .form input,
  .form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--card-border);
    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: none;
    border-color: var(--primary-bg);
  }

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

  .form button {
    background: var(--primary-bg);
    color: var(--primary-fg);
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
  }

  .form button:hover {
    background: var(--primary-hover);
  }

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

.policy-items {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3.5rem 1.25rem;
    }
    .policy-items .inner {
      max-width: 760px;
      margin: 0 auto;
    }
    .policy-items h1 {
      font-size: 1.9rem;
      line-height: 1.25;
      margin: 0 0 1rem;
      font-weight: 700;
    }
    .policy-items .intro {
      font-size: 1.05rem;
      line-height: 1.7;
      margin: 0 0 2.2rem;
    }
    .policy-items h2 {
      font-size: 1.25rem;
      line-height: 1.4;
      margin: 2rem 0 0.6rem;
      font-weight: 700;
    }
    .policy-items p {
      line-height: 1.65;
      margin: 0 0 1.2rem;
    }
    .policy-items .data-list {
      list-style: none;
      margin: 1.2rem 0 1.6rem;
      padding: 0;
    }
    .policy-items .data-list li {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 8px;
      padding: 0.9rem 1.1rem;
      margin-bottom: 0.6rem;
      line-height: 1.55;
    }
    .policy-items .data-list strong {
      display: block;
      font-weight: 700;
      margin-bottom: 0.2rem;
    }
    .policy-items a {
      color: var(--primary-bg);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .policy-items .updated {
      font-size: 0.9rem;
      margin-top: 2rem;
      padding-top: 1rem;
      border-top: 1px solid var(--muted-bg);
    }

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

.terms-items {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.25rem;
    }
    .terms-items .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .terms-items h1 {
      font-size: 1.9rem;
      line-height: 1.25;
      margin: 0 0 1rem;
      font-weight: 700;
    }
    .terms-items .lead {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      color: var(--muted-fg);
    }
    .terms-items .item {
      border-top: 1px solid var(--card-border);
      padding: 1.5rem 0;
    }
    .terms-items .item h2 {
      font-size: 1.15rem;
      margin: 0 0 0.5rem;
      font-weight: 600;
    }
    .terms-items .item p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      color: var(--muted-fg);
    }
    .terms-items .note {
      border-top: 1px solid var(--card-border);
      padding-top: 1.5rem;
      margin-top: 1rem;
      font-size: 0.9rem;
      color: var(--muted-fg);
    }
    .terms-items .note a {
      color: var(--primary-bg);
      text-decoration: underline;
    }

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

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

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

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

  .thank .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
  }

  .thank .note {
    background: var(--muted-bg);
    color: var(--muted-fg);
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    line-height: 1.55;
    margin: 0 0 2rem;
    font-size: 0.95rem;
  }

  .thank .route {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    border-top: 1px solid var(--card-border);
    padding-top: 1.5rem;
  }

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

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

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

.next-step {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 4.5rem 1.5rem;
    }
    .next-step .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .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 0 1rem;
      max-width: 60ch;
    }
    .next-step .route {
      margin-top: 2.25rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
    }
    .next-step .action {
      display: inline-block;
      background: var(--primary-bg);
      color: var(--primary-fg);
      padding: 0.8rem 1.6rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
    }
    .next-step .action:hover {
      background: var(--primary-hover);
    }
    .next-step .quiet {
      color: var(--inverse-fg);
      text-decoration: underline;
      text-underline-offset: 3px;
      font-size: 0.95rem;
    }
    .next-step .quiet:hover {
      opacity: 0.85;
    }

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

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

  .404 .code {
    margin: 0 0 16px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-bg);
  }

  .404 h1 {
    margin: 0 0 20px;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
  }

  .404 .lead {
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.6;
  }

  .404 .note {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted-fg);
    border-top: 1px solid var(--card-border);
    padding-top: 16px;
  }

  .404 .route {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .404 .route a {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    background: var(--primary-bg);
    color: var(--primary-fg);
    transition: background 0.2s ease;
  }

  .404 .route a:hover {
    background: var(--primary-hover);
  }

  .404 .route a:nth-child(2),
  .404 .route a:nth-child(3) {
    background: transparent;
    color: var(--primary-bg);
    border: 1px solid var(--primary-bg);
  }

  .404 .route a:nth-child(2):hover,
  .404 .route a:nth-child(3):hover {
    background: var(--primary-bg);
    color: var(--primary-fg);
  }

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