:root {
  --font-family: "Fredoka", sans-serif;
  --font-size-base: 15.1px;
  --line-height-base: 1.75;

  --max-w: 1180px;
  --space-x: 1.91rem;
  --space-y: 1.5rem;
  --gap: 1.25rem;
  --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.37rem;
  --radius-lg: 0.98rem;
  --radius-md: 0.58rem;
  --radius-sm: 0.36rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 2px 10px rgba(0,0,0,0.07);
  --shadow-lg: 0 14px 22px rgba(0,0,0,0.09);

  --overlay: rgba(0,0,0,0.4);
  --anim-duration: 390ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 2;

  --brand: #2F6B4F;
  --brand-contrast: #FFFFFF;
  --accent: #B87333;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #D1D5DB;
  --neutral-600: #4B5563;
  --neutral-800: #1F2937;
  --neutral-900: #111827;

  --page-bg: #F3F4F6;
  --page-fg: #1F2937;
  --muted-bg: #E5E7EB;
  --muted-fg: #374151;
  --card-bg: #FFFFFF;
  --card-fg: #1F2937;
  --card-border: #E5E7EB;
  --inverse-bg: #1F2937;
  --inverse-fg: #F9FAFB;
  --primary-bg: #2F6B4F;
  --primary-fg: #FFFFFF;
  --primary-hover: #275A42;
  --accent-bg: #B87333;
  --accent-fg: #FFFFFF;
  --accent-hover: #A0652A;
  --gradient-hero-bg: linear-gradient(135deg, #2F6B4F 0%, #1F4D38 100%);
  --gradient-hero-fg: #FFFFFF;
  --gradient-accent-bg: linear-gradient(135deg, #B87333 0%, #D98E4A 100%);
  --gradient-accent-fg: #FFFFFF;

  --ring: #2F6B4F;

  --link: #2F6B4F;
  --link-hover: #B87333;

  --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: 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);
    position: relative;
  }

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

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

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

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-list a {
    font-size: var(--font-size-md);
    color: var(--page-fg);
    text-decoration: none;
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .nav-list a:hover {
    color: var(--link-hover);
  }

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

  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background-color: var(--primary-bg);
    color: var(--primary-fg);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

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

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

  .burger-menu[aria-expanded="true"] .burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger-menu[aria-expanded="true"] .burger-bar:nth-child(2) {
    opacity: 0;
  }

  .burger-menu[aria-expanded="true"] .burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-wrapper {
      flex-wrap: wrap;
      padding: var(--space-y) var(--space-x);
    }

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

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

    .cta-button {
      display: none;
    }

    .main-nav {
      display: none;
      width: 100%;
      order: 4;
      flex-basis: 100%;
    }

    .main-nav.is-open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: var(--space-y) 0;
    }

    .nav-list li {
      width: 100%;
    }

    .nav-list a {
      display: block;
      padding: 0.75rem 0;
      font-size: var(--font-size-md);
      border-bottom: 1px solid var(--card-border);
    }

    .nav-list a::after {
      display: none;
    }
  }

  @media (min-width: 768px) and (max-width: 1023px) {
    .nav-list {
      gap: var(--gap);
    }

    .nav-list a {
      font-size: var(--font-size-sm);
    }

    .cta-button {
      padding: 0.5rem 1rem;
      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:grid;grid-template-columns:1.2fr 1.5fr 1.2fr;gap:var(--gap);align-items:start}.footer-brand{display:flex;flex-direction:column;gap:var(--space-block)}.footer-logo{font-size:var(--font-size-h3);font-weight:700;color:inherit;text-decoration:none;letter-spacing:0.02em}.footer-logo:hover{color:inherit;opacity:0.85}.footer-tagline{font-size:var(--font-size-sm);color:inherit;margin:0;max-width:28rem}.footer-nav{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-block)}.footer-nav-column{display:flex;flex-direction:column;gap:0.6rem}.footer-nav-column a{color:inherit;text-decoration:none;font-size:var(--font-size-sm);transition:opacity var(--anim-duration) var(--anim-ease)}.footer-nav-column a:hover{opacity:0.75;text-decoration:underline;text-underline-offset:0.2em;color:inherit}.footer-contact{display:flex;flex-direction:column;gap:var(--space-block)}.contact-info{display:flex;flex-direction:column;gap:0.5rem;font-size:var(--font-size-sm)}.contact-info p{margin:0;color:inherit}.contact-info a{color:inherit;text-decoration:none;transition:opacity var(--anim-duration) var(--anim-ease)}.contact-info a:hover{opacity:0.75;text-decoration:underline;text-underline-offset:0.2em;color:inherit}.contact-address{line-height:1.5}.footer-disclaimer{font-size:var(--font-size-sm);color:inherit;margin:0;line-height:1.5;opacity:0.85}.footer-copy{font-size:var(--font-size-sm);color:inherit;margin:0;opacity:0.7}

  @media (max-width: 768px) {.footer-container{grid-template-columns:1fr;gap:var(--space-section-y)}.footer-brand{gap:var(--space-block)}.footer-nav{gap:var(--space-block)}.footer-contact{gap:var(--space-block)}
  }

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

.cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--card-bg, #ffffff);
    color: var(--card-fg, #1a1a1a);
    box-shadow: var(--shadow-md, 0 -4px 12px rgba(0, 0, 0, 0.08));
    border-top: 1px solid var(--card-border, #e5e5e5);
    font-family: var(--font-family, system-ui, sans-serif);
    font-size: var(--font-size-sm, 0.875rem);
    line-height: var(--line-height-base, 1.5);
  }

  .cookie-bar {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-block, 1rem) var(--space-section-x, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
    flex-wrap: wrap;
  }

  .cookie-copy {
    flex: 1 1 300px;
    min-width: 240px;
  }

  .cookie-title {
    margin: 0 0 0.25rem 0;
    font-size: var(--font-size-md, 1rem);
    font-weight: 600;
    color: inherit;
  }

  .cookie-text {
    margin: 0;
    color: inherit;
    opacity: 0.85;
    max-width: 65ch;
  }

  .cookie-actions {
    display: flex;
    align-items: center;
    gap: var(--gap, 0.75rem);
    flex-shrink: 0;
    flex-wrap: wrap;
  }

  .cookie-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--radius-sm, 6px);
    font-family: inherit;
    font-size: var(--font-size-sm, 0.875rem);
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    background: var(--btn-ghost-bg, #f0f0f0);
    color: var(--page-fg, #1a1a1a);
  }

  .cookie-btn:hover {
    background: var(--btn-ghost-bg-hover, #e0e0e0);
  }

  .cookie-accept {
    background: var(--primary-bg, #1a1a1a);
    color: var(--primary-fg, #ffffff);
  }

  .cookie-accept:hover {
    background: var(--primary-hover, #333333);
  }

  .cookie-reject {
    background: transparent;
    color: inherit;
    border: 1px solid var(--card-border, #ccc);
  }

  .cookie-reject:hover {
    background: var(--muted-bg, #f5f5f5);
  }

  .cookie-manage {
    background: transparent;
    color: inherit;
    text-decoration: underline;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .cookie-manage:hover {
    background: transparent;
    opacity: 0.8;
  }

  @media (max-width: 640px) {
    .cookie-bar {
      flex-direction: column;
      align-items: flex-start;
      padding: var(--space-block, 1rem) var(--space-section-x, 1rem);
    }

    .cookie-actions {
      width: 100%;
      justify-content: flex-start;
    }

    .cookie-btn {
      flex: 1 1 auto;
      text-align: center;
    }
  }

.intro-focus {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4.5rem 1.25rem 5rem;
  }
  .intro-focus .inner {
    max-width: 46rem;
    margin: 0 auto;
  }
  .intro-focus h1 {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    line-height: 1.15;
    margin: 0 0 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
  }
  .intro-focus .lead {
    font-size: 1.08rem;
    line-height: 1.65;
    margin: 0 0 2.25rem;
    max-width: 40rem;
  }
  .intro-focus .route {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    align-items: center;
  }
  .intro-focus .action {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary-fg);
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.98rem;
  }
  .intro-focus .action:hover {
    background: var(--primary-hover);
  }
  .intro-focus .secondary {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.98rem;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
  }
  .intro-focus .secondary:hover {
    border-bottom-color: currentColor;
  }

.intro-focus {
  background: var(--page-bg);
  color: var(--page-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: 600;
        line-height: 1.3;
        margin: 0 0 1.25rem 0;
    }

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

    .clarifications ul {
        margin: 1.5rem 0 0 0;
        padding: 0;
        list-style: none;
    }

    .clarifications li {
        font-size: 1rem;
        line-height: 1.7;
        padding-left: 1.5rem;
        position: relative;
    }

    .clarifications li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.65rem;
        width: 0.5rem;
        height: 0.5rem;
        background: var(--accent-bg);
        border-radius: 50%;
    }

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

.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: left;
    }
    .next-step h2 {
      font-size: 1.65rem;
      line-height: 1.3;
      margin: 0 0 0.75rem;
      color: var(--page-fg);
      font-weight: 600;
    }
    .next-step p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1.5rem;
      color: var(--page-fg);
      max-width: 60ch;
    }
    .next-step .route {
      display: inline-block;
      background: var(--primary-bg);
      color: var(--primary-fg);
      padding: 0.7rem 1.4rem;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: background 0.2s ease;
    }
    .next-step .route:hover {
      background: var(--primary-hover);
    }
    @media (max-width: 480px) {
      .next-step {
        padding: 2.5rem 1rem;
      }
      .next-step h2 {
        font-size: 1.4rem;
      }
    }

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

.recommendations {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 4rem 1.5rem;
        }
        .recommendations .inner {
            max-width: 760px;
            margin: 0 auto;
        }
        .recommendations h2 {
            font-size: 1.8rem;
            font-weight: 600;
            line-height: 1.25;
            margin: 0 0 1rem;
        }
        .recommendations p {
            font-size: 1rem;
            line-height: 1.7;
            margin: 0 0 1rem;
            color: var(--page-fg);
        }
        .recommendations .route {
            margin-top: 2rem;
            display: block;
        }
        .recommendations .route a {
            display: block;
            padding: 0.85rem 0;
            border-bottom: 1px solid var(--muted-bg);
            color: var(--brand-primary-bg, #2F6B4F);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            line-height: 1.4;
        }
        .recommendations .route a:hover {
            color: var(--brand-primary-hover, #275A42);
            text-decoration: underline;
        }
        .recommendations .route a:first-child {
            border-top: 1px solid var(--muted-bg);
        }

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

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

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

  .our-story h2 {
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 1.5rem;
    color: var(--page-fg);
  }

  .our-story p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.25rem;
    color: var(--page-fg);
  }

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

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

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

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

  .mission h2 {
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 1.75rem;
    color: var(--page-fg);
  }

  .mission p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 1.4rem;
    color: var(--page-fg);
  }

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

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

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

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

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

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

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

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

    .people-behind .people-list {
      display: flex;
      flex-direction: column;
      gap: 2.25rem;
    }

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

    .people-behind .person:last-of-type {
      border-bottom: none;
    }

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

    .people-behind .role {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--brand-primary-bg);
      margin: 0 0 0.75rem;
      letter-spacing: 0.01em;
    }

    .people-behind .bio {
      font-size: 0.98rem;
      line-height: 1.65;
      margin: 0;
      max-width: 720px;
    }

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

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

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

      .people-behind .lead {
        font-size: 1.1rem;
      }

      .people-behind .people-list {
        gap: 2.5rem;
      }
    }

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

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

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

  .plans-overview h2 {
    font-size: 1.8rem;
    line-height: 1.25;
    margin: 0 0 1rem;
    max-width: 30rem;
  }

  .plans-overview .intro {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
    max-width: 34rem;
  }

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

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

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

  .plans-overview .entry h3 {
    font-size: 1.25rem;
    margin: 0 0 0.75rem;
  }

  .plans-overview .entry p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 0.75rem;
    max-width: 38rem;
  }

  .plans-overview .entry .note {
    color: var(--muted-fg);
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: 1rem;
  }

  .plans-overview .choice {
    display: inline-block;
    color: var(--brand-primary-bg);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--brand-primary-bg);
    padding-bottom: 2px;
  }

  .plans-overview .choice:hover {
    color: var(--brand-primary-hover);
    border-color: var(--brand-primary-hover);
  }

  .plans-overview .closing {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 2rem 0 0;
    max-width: 34rem;
    color: var(--muted-fg);
  }

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

    .plans-overview h2 {
      font-size: 2rem;
    }
  }

.plans-overview {
  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.9rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
  }

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

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

  .capabilities .route {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    padding-top: 0.25rem;
  }

  .capabilities .route a {
    color: var(--primary-bg);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
  }

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

.capabilities {
  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: 720px;
        margin: 0 auto;
    }

    .how-it-works h2 {
        font-size: 1.9rem;
        font-weight: 600;
        margin: 0 0 0.75rem;
        line-height: 1.2;
    }

    .how-it-works .intro {
        font-size: 1.05rem;
        line-height: 1.6;
        margin: 0 0 2.5rem;
        color: var(--muted-fg);
    }

    .how-it-works .steps {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .how-it-works .step {
        border-left: 3px solid var(--primary-bg);
        padding-left: 1.25rem;
    }

    .how-it-works .step-num {
        display: block;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        color: var(--accent-bg);
        margin-bottom: 0.25rem;
    }

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

    .how-it-works .step p {
        font-size: 0.95rem;
        line-height: 1.55;
        margin: 0;
        color: var(--muted-fg);
    }

    .how-it-works .note {
        margin: 2.5rem 0 0;
        font-size: 0.95rem;
        line-height: 1.5;
        color: var(--muted-fg);
    }

    .how-it-works .route {
        display: inline-block;
        margin-top: 0.75rem;
        color: var(--primary-bg);
        font-weight: 500;
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-color: var(--accent-bg);
    }

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

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

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

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

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

  .value-points p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.25rem;
    color: #4B5563;
  }

  .value-points .route {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--muted-bg);
  }

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

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

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

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

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

.next-step {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 3.5rem 1.25rem;
    }
    .next-step .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .next-step h2 {
      font-size: 1.75rem;
      line-height: 1.2;
      margin: 0 0 0.75rem;
      font-weight: 600;
    }
    .next-step p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1.75rem;
      opacity: 0.92;
      max-width: 60ch;
    }
    .next-step .action {
      display: inline-block;
      background: var(--accent-bg);
      color: var(--accent-fg);
      padding: 0.7rem 1.6rem;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: background 0.2s ease;
    }
    .next-step .action:hover {
      background: var(--accent-hover);
    }
    @media (max-width: 480px) {
      .next-step {
        padding: 2.5rem 1rem;
      }
      .next-step h2 {
        font-size: 1.5rem;
      }
    }

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

.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.75rem;
            line-height: 1.3;
            margin: 0 0 1rem;
            font-weight: 600;
        }

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

        .social-proof .notes {
            border-top: 1px solid var(--muted-bg);
        }

        .social-proof .note {
            padding: 1.5rem 0;
            border-bottom: 1px solid var(--muted-bg);
        }

        .social-proof .note-text {
            margin: 0 0 0.75rem;
            line-height: 1.6;
            font-size: 1rem;
        }

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

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

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

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

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

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

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

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

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

  .support .route a {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary-fg);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
  }

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

.support {
  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: 760px;
      margin: 0 auto;
    }

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

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

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

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

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

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

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

    .faq .note {
      font-size: 0.9rem;
      line-height: 1.6;
      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(--inverse-bg);
  color: var(--inverse-fg);
}

.how-it-works {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 56px 24px;
  }
  .how-it-works .inner {
    max-width: 880px;
    margin: 0 auto;
  }
  .how-it-works .intro h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 1.2;
  }
  .how-it-works .intro p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 32px;
    max-width: 640px;
  }
  .how-it-works .path {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
  }
  .how-it-works .step {
    border-top: 2px solid var(--muted-bg);
    padding-top: 16px;
  }
  .how-it-works .step .num {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-bg);
    margin-bottom: 8px;
  }
  .how-it-works .step h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.3;
  }
  .how-it-works .step p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
  }
  .how-it-works .note {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 36px 0 0;
    max-width: 640px;
  }
  .how-it-works .route {
    font-size: 14px;
    line-height: 1.6;
    margin: 16px 0 0;
  }
  .how-it-works .route a {
    color: var(--primary-bg);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .how-it-works .route a:hover {
    color: var(--primary-hover);
  }
  @media (max-width: 600px) {
    .how-it-works .path {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .how-it-works .intro h2 {
      font-size: 24px;
    }
  }

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

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

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

  .contacts h2 {
    font-size: 28px;
    line-height: 1.25;
    margin: 0 0 16px;
    font-weight: 600;
  }

  .contacts .lead {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 36px;
    max-width: 620px;
  }

  .contacts .lines {
    border-top: 1px solid var(--muted-bg);
  }

  .contacts .line {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 0;
    border-bottom: 1px solid var(--muted-bg);
  }

  .contacts .label {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted-fg);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .contacts .value {
    font-size: 16px;
    line-height: 1.5;
  }

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

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

  .contacts .note {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 28px 0 0;
    max-width: 620px;
  }

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

    .contacts h2 {
      font-size: 32px;
    }

    .contacts .line {
      flex-direction: row;
      align-items: baseline;
      gap: 32px;
    }

    .contacts .label {
      flex: 0 0 140px;
    }
  }

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

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

  .stay-in-touch .inner {
    max-width: 640px;
    margin: 0 auto;
  }

  .stay-in-touch h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    line-height: 1.2;
  }

  .stay-in-touch p {
    margin: 0 0 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
  }

  .stay-in-touch form {
    border-top: 1px solid var(--muted-bg);
    padding-top: 1.5rem;
  }

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

  .stay-in-touch label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
  }

  .stay-in-touch input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--muted-bg);
    border-radius: 6px;
    background: var(--card-bg);
    color: var(--card-fg);
    font-size: 1rem;
    box-sizing: border-box;
  }

  .stay-in-touch button {
    background: var(--primary-bg);
    color: var(--primary-fg);
    border: none;
    border-radius: 6px;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 0.5rem;
  }

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

  .stay-in-touch .note {
    font-size: 0.85rem;
    color: var(--muted-fg);
    margin-top: 1.25rem;
    margin-bottom: 0;
    line-height: 1.5;
  }

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

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

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

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

    .support .lead {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 0 2rem;
        opacity: 0.9;
    }

    .support .route {
        margin-bottom: 1.75rem;
    }

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

    .support .route p {
        font-size: 0.95rem;
        line-height: 1.55;
        margin: 0;
        opacity: 0.85;
    }

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

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

    .support .note {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 2rem 0 0;
        padding-top: 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        opacity: 0.75;
    }

    .support .note a {
        color: var(--accent-bg);
    }

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

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

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

    .social-proof h2 {
      font-size: 1.9rem;
      line-height: 1.25;
      margin: 0 0 16px;
      font-weight: 600;
    }

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

    .social-proof .quotes {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px 56px;
    }

    .social-proof .quote {
      margin: 0;
      padding: 0;
      border: 0;
    }

    .social-proof .quote p {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 16px;
      padding-left: 20px;
      border-left: 3px solid var(--accent-bg);
    }

    .social-proof .quote footer {
      padding-left: 20px;
    }

    .social-proof .quote cite {
      display: block;
      font-style: normal;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--page-fg);
    }

    .social-proof .quote footer span {
      display: block;
      font-size: 0.85rem;
      color: var(--muted-fg);
      margin-top: 4px;
    }

    @media (max-width: 700px) {
      .social-proof {
        padding: 48px 20px;
      }

      .social-proof .quotes {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

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

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

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

  .next-step h2 {
    font-size: 28px;
    line-height: 1.3;
    margin: 0 0 16px;
    font-weight: 600;
  }

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

  .next-step .action {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary-fg);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 8px;
  }

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

  .next-step .route {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--muted-bg);
    display: flex;
    gap: 24px;
  }

  .next-step .route a {
    color: var(--accent-bg);
    text-decoration: none;
    font-size: 14px;
  }

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

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

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

        .plans-overview h2 {
            font-size: 1.9rem;
            line-height: 1.25;
            margin: 0 0 16px;
            font-weight: 600;
        }

        .plans-overview > .inner > p {
            font-size: 1.05rem;
            line-height: 1.6;
            margin: 0 0 48px;
            max-width: 720px;
            color: var(--muted-fg);
        }

        .plans-overview .plan-row {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 32px;
            padding: 28px 0;
        }

        .plans-overview .plan-row + .plan-row {
            border-top: 1px solid var(--muted-bg);
        }

        .plans-overview .plan-main {
            flex: 1;
            max-width: 680px;
        }

        .plans-overview .plan-main h3 {
            font-size: 1.25rem;
            line-height: 1.3;
            margin: 0 0 10px;
            font-weight: 600;
        }

        .plans-overview .plan-main p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0 0 10px;
        }

        .plans-overview .plan-main p:last-child {
            margin-bottom: 0;
            color: var(--muted-fg);
            font-size: 0.9rem;
        }

        .plans-overview .plan-action {
            flex-shrink: 0;
            padding-top: 4px;
        }

        .plans-overview .plan-action a {
            display: inline-block;
            background: var(--primary-bg);
            color: var(--primary-fg);
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            white-space: nowrap;
        }

        .plans-overview .plan-action a:hover {
            background: var(--primary-hover);
        }

        @media (max-width: 640px) {
            .plans-overview .plan-row {
                flex-direction: column;
                gap: 16px;
            }

            .plans-overview .plan-action a {
                width: 100%;
                text-align: center;
            }
        }

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

    .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.25rem;
    }

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

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

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

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

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

    .feedback h2 {
      font-size: 2rem;
      line-height: 1.2;
      margin: 0 0 20px;
      font-weight: 600;
      max-width: 640px;
    }

    .feedback .inner > p {
      font-size: 1.05rem;
      line-height: 1.7;
      margin: 0 0 48px;
      max-width: 680px;
      opacity: 0.92;
    }

    .feedback .notes {
      display: block;
    }

    .feedback .note {
      border-top: 1px solid rgba(249, 250, 251, 0.18);
      padding: 28px 0;
    }

    .feedback .note:last-child {
      border-bottom: 1px solid rgba(249, 250, 251, 0.18);
    }

    .feedback .note h3 {
      font-size: 1rem;
      font-weight: 600;
      margin: 0 0 10px;
      letter-spacing: 0.02em;
    }

    .feedback .note p {
      font-size: 1rem;
      line-height: 1.65;
      margin: 0;
      opacity: 0.88;
      max-width: 720px;
    }

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

      .feedback h2 {
        font-size: 2.4rem;
      }

      .feedback .note {
        padding: 32px 0;
      }
    }

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

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

  .identity .inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .identity .lead-note {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-fg);
    margin: 0 0 1.25rem;
    border-left: 2px solid var(--accent-bg);
    padding-left: 0.75rem;
  }

  .identity h1 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 600;
    margin: 0;
    max-width: 34rem;
  }

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

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

  .identity .closing {
    border-top: 1px solid var(--muted-bg);
    padding-top: 1.25rem;
    font-size: 0.95rem;
    color: var(--page-fg);
    font-weight: 500;
  }

  @media (max-width: 800px) {
    .identity .inner {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

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

.identity {
  background: var(--inverse-bg);
  color: var(--inverse-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: 600;
      margin: 0 0 0.75rem;
    }

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

    .timeline .entry {
      padding: 0 0 2rem 1.5rem;
      border-left: 2px solid var(--muted-bg);
      margin-left: 0.5rem;
    }

    .timeline .entry:last-child {
      padding-bottom: 0;
    }

    .timeline .entry h3 {
      font-size: 1rem;
      font-weight: 600;
      color: var(--primary-bg);
      margin: 0 0 0.5rem;
      position: relative;
    }

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

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

.timeline {
  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: 960px;
    margin: 0 auto;
  }

  .our-story .intro {
    max-width: 720px;
    margin-bottom: 3.5rem;
  }

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

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

  .our-story .timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .our-story .entry {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .our-story .year {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-bg);
    margin: 0.35rem 0 0 0;
    line-height: 1.4;
  }

  .our-story .text h2 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 0 0 0.6rem 0;
    font-weight: 600;
  }

  .our-story .text p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    color: var(--muted-fg);
  }

  @media (max-width: 640px) {
    .our-story .entry {
      grid-template-columns: 1fr;
      gap: 0.4rem;
    }

    .our-story .year {
      margin-bottom: 0.2rem;
    }
  }

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

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

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

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

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

    .capability-list {
        display: block;
        margin: 0 0 2rem;
    }

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

    .capability-item:last-child {
        border-bottom: 1px solid var(--muted-bg);
    }

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

    .capability-item p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
        max-width: 40rem;
    }

    .capabilities .closing {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0 0 1.5rem;
        max-width: 40rem;
    }

    .capabilities .route {
        margin: 0;
    }

    .capabilities .route a {
        color: var(--brand-primary-bg);
        font-size: 0.95rem;
        text-decoration: none;
        border-bottom: 1px solid var(--brand-primary-bg);
        padding-bottom: 2px;
    }

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

.value-points {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }
  .value-points .inner {
    max-width: 960px;
    margin: 0 auto;
  }
  .value-points h2 {
    font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 1rem;
    max-width: 640px;
  }
  .value-points .intro {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
    max-width: 640px;
  }
  .value-points .benefit {
    border-left: 3px solid var(--primary-bg, #2F6B4F);
    padding: 0 0 1.8rem 1.5rem;
    margin: 0 0 1.8rem 0;
    max-width: 720px;
  }
  .value-points .benefit h3 {
    font-size: 1.15rem;
    line-height: 1.4;
    margin: 0 0 0.5rem;
  }
  .value-points .benefit p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
  }
  .value-points .note {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 2rem 0 0;
    max-width: 720px;
    padding-left: 1.5rem;
  }
  @media (min-width: 768px) {
    .value-points {
      padding: 5rem 2rem;
    }
    .value-points h2 {
      font-size: 2.2rem;
    }
    .value-points .benefit {
      padding-left: 2rem;
    }
    .value-points .note {
      padding-left: 2rem;
    }
  }

.value-points {
  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;
    line-height: 1.25;
    margin: 0 0 1.25rem;
    font-weight: 600;
  }
  .why-choose .lead {
    font-size: 1.1rem;
    line-height: 1.65;
    margin: 0 0 1rem;
  }
  .why-choose p {
    line-height: 1.6;
    margin: 0 0 1rem;
  }
  .why-choose .route {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
  }
  .why-choose .route a {
    color: var(--brand-primary-bg, #2F6B4F);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
  }
  .why-choose .route a:hover {
    color: var(--brand-primary-hover, #275A42);
  }

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

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

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

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

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

    .feedback .entries {
      display: block;
    }

    .feedback .entry {
      margin-bottom: 2.5rem;
    }

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

    .feedback .quote {
      font-size: 1rem;
      line-height: 1.7;
      margin: 0 0 0.6rem;
    }

    .feedback .author {
      font-size: 0.9rem;
      line-height: 1.5;
      margin: 0;
      color: var(--muted-fg);
    }

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

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

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

  .social-proof h2 {
    font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 16px;
    font-weight: 600;
  }

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

  .social-proof .reviews {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

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

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

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

.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.6rem;
      font-weight: 600;
      margin: 0 0 0.5rem;
      line-height: 1.3;
    }

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

    .recommendations .note {
      border-top: 1px solid var(--muted-bg);
      padding: 1.25rem 0;
    }

    .recommendations .note-title {
      font-weight: 600;
      font-size: 1.05rem;
      margin: 0 0 0.4rem;
    }

    .recommendations .note p:not(.note-title) {
      margin: 0 0 0.75rem;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .recommendations .route {
      display: inline-block;
      color: var(--primary-bg);
      font-size: 0.9rem;
      font-weight: 500;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }

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

.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.8rem;
    font-weight: 600;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
  }

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

  .clarifications .note {
    margin: 0 0 2rem;
    padding: 0 0 1.5rem;
    border-bottom: 1px solid var(--muted-bg, #E5E7EB);
  }

  .clarifications .note:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-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.6;
    margin: 0;
    color: var(--muted-fg, #374151);
  }

.blog-item {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 48px 20px;
    }
    .blog-item .inner {
      max-width: 760px;
      margin: 0 auto;
    }
    .blog-item .post-head {
      margin-bottom: 24px;
    }
    .blog-item .post-date {
      font-size: 14px;
      color: var(--muted-fg);
      margin: 0 0 8px;
      letter-spacing: 0.02em;
    }
    .blog-item h1 {
      font-size: 32px;
      line-height: 1.2;
      margin: 0;
      font-weight: 600;
    }
    .blog-item .post-media {
      margin: 24px 0 28px;
      border-radius: 12px;
      overflow: hidden;
      background: var(--card-bg);
    }
    .blog-item .post-media img {
      display: block;
      width: 100%;
      height: auto;
    }
    .blog-item .post-body p {
      font-size: 17px;
      line-height: 1.7;
      margin: 0 0 20px;
    }
    .blog-item .post-foot {
      margin-top: 36px;
      padding-top: 20px;
      border-top: 1px solid var(--card-border);
    }
    .blog-item .post-foot p {
      font-size: 15px;
      line-height: 1.6;
      margin: 0 0 12px;
      color: var(--muted-fg);
    }
    .blog-item .route {
      font-size: 15px;
    }
    .blog-item .route a {
      color: var(--primary-bg);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }
    .blog-item .route a:hover {
      border-bottom-color: var(--primary-bg);
    }
    .blog-item .route a + a {
      margin-left: 16px;
    }

.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 .post-header {
        margin-bottom: 2rem;
    }

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

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

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

    .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.25rem;
        border-top: 1px solid var(--muted-bg);
        font-size: 0.95rem;
    }

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

    .blog-item .post-more a:hover {
        color: var(--primary-hover);
    }

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

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

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

    .blog-item .post-date {
      font-size: 0.9rem;
      color: var(--muted-fg);
      margin: 0 0 0.75rem;
      letter-spacing: 0.02em;
    }

    .blog-item h1 {
      font-size: 2rem;
      line-height: 1.25;
      margin: 0;
      font-weight: 600;
    }

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

    .blog-item .post-lead {
      font-size: 1.15rem;
      line-height: 1.6;
      color: var(--muted-fg);
      border-left: 3px solid var(--accent-bg);
      padding-left: 1rem;
      margin-bottom: 1.75rem;
    }

    .blog-item .post-close {
      margin-top: 2rem;
      padding-top: 1.25rem;
      border-top: 1px solid var(--muted-bg);
      font-style: italic;
    }

    .blog-item .post-foot {
      margin-top: 2.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--muted-bg);
    }

    .blog-item .foot-note {
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 0 0 1rem;
    }

    .blog-item .foot-links {
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1.5rem;
    }

    .blog-item .foot-links a {
      color: var(--primary-bg);
      text-decoration: none;
      font-size: 0.95rem;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }

    .blog-item .foot-links a:hover {
      border-bottom-color: var(--primary-bg);
    }

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

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

  .map-head {
    max-width: 720px;
    margin-bottom: 2.5rem;
  }

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

  .map-head p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    color: var(--page-fg);
  }

  .map-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    border-top: 1px solid var(--muted-bg);
    padding-top: 2.5rem;
  }

  .map-info p,
  .map-route p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1.25rem;
    color: var(--page-fg);
  }

  .map-data {
    margin: 1.5rem 0 0;
    padding: 0;
  }

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

  .map-item:last-child {
    border-bottom: none;
  }

  .map-item dt {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted-fg);
    margin-bottom: 0.3rem;
  }

  .map-item dd {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    color: var(--page-fg);
  }

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

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

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

    .map-layout {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

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

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

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

  .form .intro {
    margin-bottom: 2.5rem;
  }

  .form h1 {
    font-size: 1.75rem;
    line-height: 1.25;
    margin: 0 0 0.75rem;
    font-weight: 600;
  }

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

  .form form {
    display: block;
  }

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

  .form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
  }

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

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

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

  .form button {
    background: var(--primary-bg);
    color: var(--primary-fg);
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    
  }

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

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

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

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

  .contacts .note {
    background: var(--card-bg);
    color: var(--card-fg);
    border-left: 4px solid var(--brand-primary-bg);
    padding: 1.25rem 1.5rem;
    margin-bottom: 3rem;
    line-height: 1.65;
  }

  .contacts .details {
    border-top: 1px solid var(--muted-bg);
  }

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

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

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

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

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

  @media (min-width: 640px) {
    .contacts .entry {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 2rem;
      align-items: baseline;
    }

    .contacts .entry h2 {
      margin: 0;
    }
  }

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

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

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

  .policy-items h1 {
    font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 0.75rem;
    font-weight: 600;
  }

  .policy-items .intro {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
  }

  .policy-items .entry {
    margin-bottom: 2rem;
  }

  .policy-items h2 {
    font-size: 1.15rem;
    line-height: 1.4;
    margin: 0 0 0.5rem;
    font-weight: 600;
  }

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

  .policy-items .closing {
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: var(--muted-fg);
  }

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

.terms-items {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 48px 24px 64px;
  }

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

  .terms-items h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 16px;
    font-weight: 600;
  }

  .terms-items .lead {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 40px;
    color: var(--muted-fg);
  }

  .terms-items .terms-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .terms-items .term-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--muted-bg);
  }

  .terms-items .term-item:last-child {
    border-bottom: none;
  }

  .terms-items .term-item h2 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--brand-primary-bg);
  }

  .terms-items .term-item p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    color: var(--muted-fg);
  }

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

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

    .thank .inner {
      max-width: 720px;
      margin: 0 auto;
      display: block;
    }

    .thank .note {
      margin-bottom: 48px;
    }

    .thank .note-label {
      font-size: 14px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--muted-fg, #374151);
      margin: 0 0 12px 0;
    }

    .thank h1 {
      font-size: 36px;
      line-height: 1.2;
      margin: 0 0 20px 0;
      max-width: 560px;
    }

    .thank .note-text {
      font-size: 17px;
      line-height: 1.65;
      margin: 0 0 16px 0;
      max-width: 600px;
    }

    .thank .note-close {
      font-size: 15px;
      line-height: 1.6;
      margin: 0;
      max-width: 560px;
      color: var(--muted-fg, #374151);
    }

    .thank .route {
      border-top: 1px solid var(--muted-bg, #E5E7EB);
      padding-top: 28px;
    }

    .thank .route-label {
      font-size: 14px;
      font-weight: 600;
      margin: 0 0 14px 0;
    }

    .thank .route-link {
      display: block;
      color: var(--brand-primary-bg, #2F6B4F);
      text-decoration: none;
      font-size: 15px;
      line-height: 1.5;
      padding: 6px 0;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }

    .thank .route-link:hover {
      border-bottom-color: var(--brand-primary-bg, #2F6B4F);
    }

    @media (max-width: 640px) {
      .thank {
        padding: 48px 20px;
      }

      .thank h1 {
        font-size: 28px;
      }

      .thank .note-text {
        font-size: 16px;
      }
    }

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

.next-step {
            background: var(--gradient-hero-bg);
            color: var(--gradient-hero-fg);
            padding: 4rem 1.5rem;
        }
        .next-step .inner {
            max-width: 640px;
            margin: 0 auto;
            text-align: center;
        }
        .next-step h2 {
            font-size: 1.75rem;
            font-weight: 600;
            margin: 0 0 1rem;
            line-height: 1.3;
        }
        .next-step p {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0 0 1rem;
            opacity: 0.92;
        }
        .next-step p:last-of-type {
            margin-bottom: 2rem;
        }
        .next-step .route {
            display: inline-block;
            background: var(--accent-bg);
            color: var(--accent-fg);
            padding: 0.75rem 1.75rem;
            border-radius: 8px;
            font-weight: 500;
            text-decoration: none;
            transition: background 0.2s ease;
        }
        .next-step .route:hover {
            background: var(--accent-hover);
        }

.404 {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 80px 20px;
    }
    .404 .inner {
      max-width: 620px;
      margin: 0 auto;
    }
    .404 .code {
      color: var(--brand-primary-bg);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin: 0 0 12px;
    }
    .404 h1 {
      font-size: 32px;
      line-height: 1.25;
      margin: 0 0 16px;
    }
    .404 .intro {
      color: var(--muted-fg);
      font-size: 16px;
      line-height: 1.6;
      margin: 0 0 32px;
    }
    .404 .route {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }
    .404 .main {
      display: inline-block;
      background: var(--brand-primary-bg);
      color: var(--brand-primary-fg);
      padding: 10px 22px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
    }
    .404 .main:hover {
      background: var(--brand-primary-hover);
    }
    .404 .side {
      color: var(--brand-primary-bg);
      text-decoration: underline;
      text-underline-offset: 3px;
      font-weight: 500;
    }
    .404 .side:hover {
      color: var(--brand-primary-hover);
    }

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