:root {
  --font-family: "Rubik", sans-serif;
  --font-size-base: 15.7px;
  --line-height-base: 1.7;

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

  --radius-xl: 0.72rem;
  --radius-lg: 0.47rem;
  --radius-md: 0.39rem;
  --radius-sm: 0.19rem;

  --shadow-sm: 0 0px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 3px 12px rgba(0,0,0,0.11);
  --shadow-lg: 0 6px 20px rgba(0,0,0,0.13);

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

  --brand: #1e3a5f;
  --brand-contrast: #ffffff;
  --accent: #d96c2c;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f2f4f7;
  --neutral-300: #d0d5dd;
  --neutral-600: #475467;
  --neutral-800: #1d2939;
  --neutral-900: #101828;

  --page-bg: #f2f4f7;
  --page-fg: #1d2939;
  --muted-bg: #e8ebf0;
  --muted-fg: #475467;
  --card-bg: #ffffff;
  --card-fg: #1d2939;
  --card-border: #e4e7ec;
  --inverse-bg: #1e3a5f;
  --inverse-fg: #ffffff;
  --primary-bg: #1e3a5f;
  --primary-fg: #ffffff;
  --primary-hover: #16304e;
  --accent-bg: #d96c2c;
  --accent-fg: #ffffff;
  --accent-hover: #c25e24;
  --gradient-hero-bg: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 100%);
  --gradient-hero-fg: #ffffff;
  --gradient-accent-bg: linear-gradient(135deg, #d96c2c 0%, #f08a4b 100%);
  --gradient-accent-fg: #ffffff;

  --ring: #d96c2c;

  --link: #1e3a5f;
  --link-hover: #d96c2c;

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

.site-header {
        background-color: var(--page-bg);
        border-bottom: 1px solid var(--card-border);
        width: 100%;
    }

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

    .logo {
        font-size: var(--font-size-lg);
        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(--link-hover);
    }

    .main-nav {
        display: flex;
        align-items: center;
    }

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

    .nav-link {
        font-size: var(--font-size-md);
        font-weight: 500;
        color: var(--page-fg);
        text-decoration: none;
        padding: 0.5rem 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

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

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

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

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

    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        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: 24px;
        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.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 {
            min-height: 64px;
            padding: 0 var(--space-section-x);
        }

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

        .main-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--page-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 1000;
        }

        .main-nav.open {
            opacity: 1;
            visibility: visible;
        }

        .nav-list {
            flex-direction: column;
            gap: calc(var(--space-y) * 0.8);
            text-align: center;
        }

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

        .nav-link::after {
            display: none;
        }

        .cta-button {
            display: none;
        }
    }

    @media (min-width: 768px) {
        .main-nav {
            position: static;
            height: auto;
            width: auto;
            background: transparent;
            opacity: 1;
            visibility: visible;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1;
        }

        .nav-list {
            flex-direction: row;
            gap: calc(var(--gap) * 1.5);
            justify-content: center;
        }

        .cta-button {
            display: inline-flex;
        }
    }

.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 1fr;gap:var(--gap);padding-bottom:var(--space-block)}.footer-logo{display:inline-block;font-size:var(--font-size-h2);font-weight:700;color:inherit;text-decoration:none;margin-bottom:var(--space-block);letter-spacing:-0.02em}.footer-tagline{color:inherit;opacity:0.8;max-width:28rem;margin:0}.footer-nav{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-x)}.footer-nav-column{display:flex;flex-direction:column;gap:0.5rem}.footer-nav a{color:inherit;text-decoration:none;opacity:0.85;transition:opacity var(--anim-duration) var(--anim-ease);font-size:var(--font-size-sm)}.footer-nav a:hover{opacity:1;text-decoration:underline;text-underline-offset:0.2em;color:inherit}.footer-heading{font-size:var(--font-size-md);font-weight:600;margin:0 0 var(--space-block);color:inherit}.footer-contact-info{display:flex;flex-direction:column;gap:0.5rem}.footer-contact-info p{margin:0;color:inherit;font-size:var(--font-size-sm)}.footer-contact-info a{color:inherit;text-decoration:none;opacity:0.85;transition:opacity var(--anim-duration) var(--anim-ease)}.footer-contact-info a:hover{opacity:1;text-decoration:underline;text-underline-offset:0.2em;color:inherit}.footer-address{opacity:0.85}.footer-bottom{max-width:var(--max-w);margin:0 auto;border-top:1px solid rgba(255, 255, 255, 0.1);padding-top:var(--space-block);display:flex;flex-direction:column;gap:var(--space-block)}.footer-disclaimer{font-size:var(--font-size-sm);opacity:0.7;margin:0;max-width:60rem}.footer-copyright{font-size:var(--font-size-sm);opacity:0.7;margin:0}

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

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

.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);
}

.cookies .notice {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: var(--space-card);
  box-shadow: var(--shadow-md);
}

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

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

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

.cookies .actions button {
  font-family: inherit;
  font-size: var(--font-size-sm);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

.cookies .cookie-reject {
  background: var(--btn-ghost-bg);
  color: var(--page-fg);
  border-color: var(--card-border);
}

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

.cookies .cookie-manage {
  background: transparent;
  color: var(--link);
  text-decoration: underline;
}

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

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

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

  .intro-focus h1 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.15;
    font-weight: 600;
    margin: 0 0 1.4rem;
    max-width: 30ch;
  }

  .intro-focus p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 2.2rem;
    max-width: 62ch;
    opacity: 0.92;
  }

  .intro-focus .route {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.8rem;
    padding-top: 0.4rem;
  }

  .intro-focus .route a {
    color: var(--gradient-hero-fg);
    font-size: 0.95rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255, 255, 255, 0.45);
    transition: text-decoration-color 0.2s ease;
  }

  .intro-focus .route a:hover {
    text-decoration-color: var(--gradient-hero-fg);
  }

.intro-focus {
  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: 720px;
            margin: 0 auto;
        }
        .next-step h2 {
            font-size: 1.75rem;
            line-height: 1.25;
            margin: 0 0 1rem;
            font-weight: 600;
        }
        .next-step p {
            font-size: 1rem;
            line-height: 1.7;
            margin: 0 0 2rem;
            max-width: 60ch;
        }
        .next-step .route {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.25rem 1.75rem;
        }
        .next-step .action {
            display: inline-block;
            background: var(--accent-bg);
            color: var(--accent-fg);
            padding: 0.8rem 1.6rem;
            border-radius: 6px;
            font-weight: 500;
            text-decoration: none;
            font-size: 1rem;
        }
        .next-step .action:hover {
            background: var(--accent-hover);
        }
        .next-step .route a:not(.action) {
            color: var(--brand-primary-bg);
            text-decoration: underline;
            text-underline-offset: 3px;
            font-size: 0.95rem;
        }
        .next-step .route a:not(.action):hover {
            color: var(--brand-primary-hover);
        }

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

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

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

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

    .capabilities .lead {
      font-size: 1.05rem;
      line-height: 1.65;
      color: var(--muted-fg);
      margin: 0 0 56px;
      max-width: 640px;
    }

    .capability-row {
      margin-bottom: 48px;
    }

    .capability-row:last-of-type {
      margin-bottom: 40px;
    }

    .capability-row h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 0 0 8px;
      color: var(--primary-bg);
    }

    .capability-row p {
      font-size: 0.98rem;
      line-height: 1.6;
      margin: 0;
      max-width: 720px;
    }

    .capabilities .note {
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 8px 0 0;
      padding-top: 24px;
      border-top: 1px solid var(--muted-bg);
    }

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

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

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

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

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

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

  .faq .intro {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 0 0 40px;
  }

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

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

  .faq .item h3 {
    font-size: 17px;
    line-height: 1.4;
    margin: 0 0 8px;
  }

  .faq .item p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted-fg);
    margin: 0;
  }

  .faq .note {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 32px 0 16px;
  }

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

  .faq .route:hover {
    border-bottom-color: var(--accent-bg);
  }

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

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

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

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

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

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

  .our-story a {
    display: inline-block;
    color: var(--accent-bg);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(217, 108, 44, 0.4);
    padding-bottom: 0.15rem;
    transition: border-color 0.2s ease;
  }

  .our-story a:hover {
    border-color: var(--accent-bg);
  }

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

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

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

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

  .identity h1 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 1.5rem;
    color: var(--brand-primary-bg, #1e3a5f);
  }

  .identity p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.25rem;
    color: var(--page-fg, #1d2939);
  }

  .identity .note {
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    background: var(--muted-bg, #e8ebf0);
    color: var(--muted-fg, #475467);
    font-size: 0.95rem;
    line-height: 1.6;
    border-left: 3px solid var(--accent-bg, #d96c2c);
  }

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

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

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

  .mission .note {
    margin: 0 0 16px;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #f08a4b;
  }

  .mission h2 {
    margin: 0 0 24px;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 600;
    max-width: 640px;
  }

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

  .mission p {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #c9d4e2;
  }

  .mission p:last-of-type {
    margin-bottom: 28px;
  }

  .mission a {
    display: inline-block;
    background: var(--accent-bg);
    color: var(--accent-fg);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
  }

  .mission a:hover {
    background: var(--accent-hover);
  }

  @media (max-width: 600px) {
    .mission {
      padding: 56px 20px;
    }

    .mission h2 {
      font-size: 26px;
    }

    .mission .lead {
      font-size: 16px;
    }
  }

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

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

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

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

    .plans-overview > .inner > p {
        font-size: 16px;
        line-height: 1.6;
        max-width: 720px;
        margin: 0 0 40px;
    }

    .plans-overview .choices {
        display: block;
        border-top: 1px solid var(--muted-bg);
    }

    .plans-overview .choice {
        padding: 28px 0;
        border-bottom: 1px solid var(--muted-bg);
    }

    .plans-overview .choice h3 {
        font-size: 19px;
        font-weight: 600;
        margin: 0 0 10px;
    }

    .plans-overview .choice p {
        font-size: 15px;
        line-height: 1.6;
        margin: 0 0 16px;
        max-width: 780px;
    }

    .plans-overview .action {
        display: inline-block;
        font-size: 14px;
        font-weight: 500;
        color: var(--accent-bg);
        text-decoration: none;
        border-bottom: 1px solid var(--accent-bg);
        padding-bottom: 2px;
    }

    .plans-overview .action:hover {
        color: var(--accent-hover);
        border-bottom-color: var(--accent-hover);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .social-proof .quotes {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    border-top: 1px solid var(--card-border);
  }

  .social-proof .quote {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--card-border);
  }

  .social-proof .quote-text {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 0.5rem;
    color: var(--page-fg);
  }

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

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

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

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

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

    .feedback .inner > p {
      font-size: 16px;
      line-height: 1.6;
      margin: 0 0 40px 0;
      max-width: 640px;
    }

    .feedback .entry {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding: 24px 0;
    }

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

    .feedback .entry-text {
      font-size: 17px;
      line-height: 1.65;
      margin: 0 0 10px 0;
    }

    .feedback .entry-author {
      font-size: 14px;
      line-height: 1.5;
      margin: 0;
      opacity: 0.75;
    }

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

.why-choose {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 72px 24px;
  }
  .why-choose .inner {
    max-width: 880px;
    margin: 0 auto;
  }
  .why-choose h2 {
    font-size: 1.9rem;
    line-height: 1.2;
    margin: 0 0 20px;
    font-weight: 600;
    max-width: 640px;
  }
  .why-choose .lead {
    font-size: 1.1rem;
    line-height: 1.65;
    margin: 0 0 16px;
    max-width: 720px;
  }
  .why-choose p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 16px;
    max-width: 720px;
  }
  .why-choose .route {
    margin-top: 28px;
    display: flex;
    gap: 24px;
    align-items: center;
  }
  .why-choose .route a {
    color: var(--accent-bg);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
  }
  .why-choose .route a:hover {
    border-bottom-color: currentColor;
  }

.why-choose {
  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: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
  }

  .recommendations .intro {
    flex: 0 0 60%;
  }

  .recommendations .intro h2 {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 1.2rem;
    color: var(--page-fg);
  }

  .recommendations .intro p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    color: var(--page-fg);
    max-width: 34rem;
  }

  .recommendations .aside {
    flex: 1;
    padding-top: 0.4rem;
  }

  .recommendations .aside h3 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 0.8rem;
    color: var(--page-fg);
  }

  .recommendations .aside p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1.2rem;
    color: var(--page-fg);
  }

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

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

  @media (max-width: 760px) {
    .recommendations .inner {
      flex-direction: column;
      gap: 2.5rem;
    }

    .recommendations .intro {
      flex: 1;
    }
  }

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

    .value-points h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin: 0 0 1rem;
        font-weight: 500;
        letter-spacing: -0.01em;
    }

    .value-points .lead {
        font-size: 1.05rem;
        line-height: 1.6;
        margin: 0 0 2.5rem;
        color: var(--muted-fg);
        max-width: 60ch;
    }

    .value-points .benefit-list {
        display: flex;
        flex-direction: column;
        gap: 1.8rem;
        margin: 0 0 2.5rem;
    }

    .value-points .benefit-item {
        padding-left: 1.25rem;
        border-left: 2px solid var(--accent-bg);
    }

    .value-points .benefit-item h3 {
        font-size: 1.1rem;
        font-weight: 500;
        margin: 0 0 0.4rem;
        line-height: 1.4;
    }

    .value-points .benefit-item p {
        margin: 0;
        line-height: 1.6;
        font-size: 0.95rem;
        color: var(--muted-fg);
        max-width: 58ch;
    }

    .value-points .closing {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
        color: var(--muted-fg);
        max-width: 58ch;
    }

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

    .value-points .closing a:hover {
        color: var(--accent-hover);
    }

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

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

        .value-points .benefit-list {
            gap: 2.2rem;
        }
    }

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

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

  .how-it-works .inner {
    max-width: 46rem;
    margin: 0 auto;
  }

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

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

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

  .how-it-works .step {
    padding: 0 0 2rem 1.5rem;
    border-left: 2px solid var(--muted-bg);
    margin-left: 0.5rem;
  }

  .how-it-works .step:last-child {
    padding-bottom: 0;
  }

  .how-it-works .step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    position: relative;
  }

  .how-it-works .step h3::before {
    content: "";
    position: absolute;
    left: -1.65rem;
    top: 0.35rem;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: var(--accent-bg);
  }

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

  .how-it-works .footnote {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--muted-fg);
    margin: 2.5rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--muted-bg);
  }

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

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

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

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

  .timeline > .inner > p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 48px;
    max-width: 640px;
  }

  .timeline .line {
    border-left: 2px solid var(--muted-bg);
    margin-left: 8px;
    padding-left: 32px;
  }

  .timeline .step {
    margin-bottom: 40px;
  }

  .timeline .step:last-child {
    margin-bottom: 0;
  }

  .timeline .date {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent-bg);
    margin-bottom: 8px;
  }

  .timeline .note h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
  }

  .timeline .note p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: var(--muted-fg);
  }

  .timeline .footnote {
    font-size: 14px;
    line-height: 1.6;
    margin: 48px 0 0;
    color: var(--muted-fg);
  }

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

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

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

.support {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.25rem;
    }
    .support .inner {
      max-width: 920px;
      margin: 0 auto;
    }
    .support h2 {
      font-size: 1.9rem;
      line-height: 1.25;
      margin: 0 0 1rem;
      color: var(--brand-primary-bg, #1e3a5f);
    }
    .support .lead {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      max-width: 720px;
    }
    .support .route {
      display: block;
    }
    .support .entry {
      padding: 1.25rem 0 1.5rem;
      border-bottom: 1px solid var(--muted-bg, #e4e7ec);
    }
    .support .entry:last-of-type {
      border-bottom: none;
    }
    .support .entry h3 {
      font-size: 1.15rem;
      margin: 0 0 0.5rem;
      color: var(--brand-primary-bg, #1e3a5f);
    }
    .support .entry p {
      margin: 0 0 0.6rem;
      line-height: 1.55;
      max-width: 680px;
    }
    .support .note {
      font-size: 0.92rem;
      color: var(--muted-fg, #475467);
      margin: 0;
    }
    .support .foot {
      margin: 2rem 0 0.5rem;
      line-height: 1.6;
      font-size: 0.98rem;
    }
    .support .aside {
      margin: 1rem 0 0;
      font-size: 0.95rem;
    }
    .support .aside a {
      color: var(--accent-bg, #d96c2c);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }
    .support .aside a:hover {
      border-bottom-color: currentColor;
    }

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

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

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

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

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

  .stay-in-touch p:last-of-type {
    margin-bottom: 2rem;
  }

  .stay-in-touch a {
    display: inline-block;
    background: var(--accent-bg);
    color: var(--accent-fg);
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
  }

  .stay-in-touch a:hover {
    background: var(--accent-hover);
  }

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

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

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

    .faq h2 {
      font-size: 1.75rem;
      line-height: 1.2;
      margin: 0 0 0.75rem;
      color: var(--brand-primary-bg, #1e3a5f);
    }

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

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

    .faq .question:last-of-type {
      border-bottom: none;
    }

    .faq .question h3 {
      font-size: 1.1rem;
      line-height: 1.4;
      margin: 0 0 0.5rem;
      color: var(--brand-primary-bg, #1e3a5f);
    }

    .faq .question p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0;
      color: var(--page-fg, #1d2939);
    }

    .faq .route {
      margin-top: 2rem;
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--muted-fg, #475467);
    }

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

    .faq .route a:hover {
      color: var(--accent-hover, #c25e24);
    }

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

.clarifications {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 3.5rem 1.25rem;
    }
    .clarifications .inner {
        max-width: 720px;
        margin: 0 auto;
    }
    .clarifications h2 {
        font-size: 1.65rem;
        font-weight: 600;
        line-height: 1.3;
        margin: 0 0 1rem;
        letter-spacing: -0.01em;
    }
    .clarifications p {
        font-size: 1rem;
        line-height: 1.7;
        margin: 0 0 1rem;
    }
    .clarifications ul {
        margin: 1.5rem 0 0;
        padding: 0;
        list-style: none;
    }
    .clarifications li {
        font-size: 0.95rem;
        line-height: 1.6;
        padding-left: 1.25rem;
        position: relative;
    }
    .clarifications li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.6em;
        width: 6px;
        height: 6px;
        background: var(--accent-bg);
        color: var(--accent-fg);
    }

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

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

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

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

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

    .clarifications dl {
        margin: 0;
    }

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

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

    .clarifications dt {
        font-weight: 600;
        font-size: 1.05rem;
        margin-bottom: 0.35rem;
    }

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

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

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

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

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

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

  .recommendations .route {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid var(--muted-bg);
    padding-top: 1.25rem;
  }

  .recommendations .route a {
    color: var(--accent-bg);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 0.25rem 0;
  }

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

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

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

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

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

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

    .timeline .intro {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--muted-fg);
      max-width: 640px;
      margin: 0 0 3rem;
    }

    .timeline .entry {
      display: flex;
      gap: 2rem;
      padding: 1.5rem 0;
      border-top: 1px solid var(--card-border);
    }

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

    .timeline .period {
      flex: 0 0 160px;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .timeline .year {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--brand-primary-bg);
    }

    .timeline .phase {
      font-size: 0.85rem;
      color: var(--accent-bg);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .timeline .detail {
      flex: 1;
      max-width: 620px;
    }

    .timeline .detail h3 {
      font-size: 1.1rem;
      font-weight: 500;
      margin: 0 0 0.5rem;
      line-height: 1.4;
    }

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

    @media (max-width: 640px) {
      .timeline .entry {
        flex-direction: column;
        gap: 0.75rem;
      }

      .timeline .period {
        flex: none;
      }
    }

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

  .how-it-works .inner {
    max-width: 46rem;
    margin: 0 auto;
  }

  .how-it-works h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin: 0 0 1rem;
    color: var(--brand-primary-bg, #1e3a5f);
  }

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

  .how-it-works .steps {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    border-top: 1px solid var(--muted-bg, #e8ebf0);
  }

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

  .how-it-works .step h3 {
    font-size: 1.05rem;
    line-height: 1.4;
    margin: 0 0 0.4rem;
  }

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

  .how-it-works .route {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 1.5rem 0 0;
    color: var(--muted-fg, #475467);
  }

  .how-it-works .route a {
    color: var(--accent-bg, #d96c2c);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .how-it-works .route a:hover {
    color: var(--accent-hover, #c25e24);
  }

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

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

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

    .how-it-works .lead {
      margin: 0 0 2rem;
      font-size: 1rem;
      line-height: 1.6;
      max-width: 58ch;
    }

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

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

    .how-it-works .step:last-of-type {
      border-bottom: 1px solid var(--muted-bg);
    }

    .how-it-works .step h3 {
      font-size: 1.05rem;
      font-weight: 600;
      margin: 0 0 0.4rem;
    }

    .how-it-works .step p {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.55;
      max-width: 60ch;
    }

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

    .how-it-works .route {
      margin: 0.75rem 0 0;
    }

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

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

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

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

  .value-points h2 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin: 0 0 1rem;
    color: var(--page-fg);
  }

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

  .value-points .entry {
    margin-bottom: 2rem;
    padding-left: 1.25rem;
    border-left: 3px solid var(--accent-bg);
  }

  .value-points .entry h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin: 0 0 0.5rem;
    color: var(--page-fg);
  }

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

  .value-points .note {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 2.5rem 0 0;
    color: var(--muted-fg);
  }

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

  .value-points .note a:hover {
    color: var(--accent-bg);
  }

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

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

  .why-choose h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
  }

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

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

  .why-choose .route {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--muted-fg, #475467);
  }

  .why-choose .route a {
    color: var(--accent-bg, #d96c2c);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
  }

  .why-choose .route a:hover {
    color: var(--accent-hover, #c25e24);
  }

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

.recommendations {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }
  .recommendations .inner {
    max-width: 48rem;
    margin: 0 auto;
  }
  .recommendations h2 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1rem;
    color: var(--page-fg);
  }
  .recommendations p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 2rem;
    color: var(--page-fg);
  }
  .recommendations .route {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .recommendations .route a {
    color: var(--accent-bg);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 0.6rem;
  }
  .recommendations .route a:hover {
    color: var(--accent-hover);
    border-bottom-color: var(--accent-bg);
  }

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

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

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

  .capabilities h2 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1.5rem;
    color: var(--brand-primary-bg, #1e3a5f);
  }

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

  .capabilities .note {
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--muted-border, #e4e7ec);
    font-size: 0.95rem;
    color: var(--muted-fg, #475467);
  }

  .capabilities .note a {
    color: var(--accent-bg, #d96c2c);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .capabilities .note a:hover {
    color: var(--accent-hover, #c25e24);
  }

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

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

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

    .clarifications .inner {
        max-width: 46rem;
        margin: 0 auto;
        border-top: 1px solid var(--muted-bg);
        padding-top: 2.5rem;
    }

    .clarifications h2 {
        font-size: 1.6rem;
        font-weight: 600;
        line-height: 1.3;
        margin: 0 0 1.25rem;
        letter-spacing: -0.01em;
    }

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

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

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

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

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

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

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

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

  .timeline .stages {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    border-left: 2px solid var(--muted-bg);
  }

  .timeline .stage {
    position: relative;
    padding: 0 0 2rem 1.5rem;
  }

  .timeline .stage:last-child {
    padding-bottom: 0.5rem;
  }

  .timeline .stage::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-bg);
  }

  .timeline .stage time {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-bg);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .timeline .stage h3 {
    font-size: 1.15rem;
    line-height: 1.3;
    margin: 0 0 0.5rem;
    font-weight: 600;
  }

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

  .timeline .note {
    margin-top: 2rem;
    font-size: 0.95rem;
    border-top: 1px solid var(--muted-bg);
    padding-top: 1.25rem;
  }

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

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

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

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

  .how-it-works .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    color: var(--page-fg);
  }

  .how-it-works .note {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--muted-fg);
    margin: 0 0 2.5rem;
    padding-left: 1rem;
    border-left: 2px solid var(--accent-bg);
  }

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

  .how-it-works .step {
    padding: 0 0 2rem 1.5rem;
    border-left: 1px solid var(--card-border);
    margin-left: 0.5rem;
    position: relative;
  }

  .how-it-works .step:last-child {
    padding-bottom: 0.5rem;
    border-left-color: transparent;
  }

  .how-it-works .step::before {
    content: "";
    position: absolute;
    left: -0.35rem;
    top: 0.4rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--accent-bg);
  }

  .how-it-works .step h3 {
    font-size: 1.1rem;
    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(--page-fg);
  }

  .how-it-works .route {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 1.5rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
  }

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

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

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

.blog-item {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 48px 20px;
    }
    .blog-item .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .blog-item .meta {
      font-size: 14px;
      color: var(--muted-fg);
      margin: 0 0 12px;
      letter-spacing: 0.02em;
    }
    .blog-item h1 {
      font-size: 32px;
      line-height: 1.2;
      margin: 0 0 16px;
      font-weight: 600;
    }
    .blog-item .lead {
      font-size: 18px;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 0 0 32px;
      border-bottom: 1px solid var(--card-border);
      padding-bottom: 24px;
    }
    .blog-item .content p {
      font-size: 16px;
      line-height: 1.75;
      margin: 0 0 20px;
    }
    .blog-item .route {
      font-size: 15px;
      line-height: 1.6;
      color: var(--muted-fg);
      border-top: 1px solid var(--card-border);
      padding-top: 20px;
      margin: 32px 0 0;
    }
    .blog-item .route a {
      color: var(--accent-bg);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }
    .blog-item .route a:hover {
      border-bottom-color: var(--accent-bg);
    }

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

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

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

  .blog-item .date {
    font-size: 14px;
    color: var(--muted-fg);
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .blog-item h1 {
    font-size: 36px;
    line-height: 1.2;
    margin: 0 0 16px;
    font-weight: 600;
  }

  .blog-item .lead {
    font-size: 18px;
    line-height: 1.5;
    color: var(--muted-fg);
    margin: 0 0 32px;
  }

  .blog-item .content p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 20px;
  }

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

  .blog-item .related {
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
    font-size: 15px;
    color: var(--muted-fg);
  }

  .blog-item .related a {
    color: var(--accent-bg);
    text-decoration: none;
  }

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

  @media (max-width: 600px) {
    .blog-item {
      padding: 40px 20px;
    }

    .blog-item h1 {
      font-size: 28px;
    }

    .blog-item .lead {
      font-size: 16px;
    }
  }

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

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

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

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

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

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

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

    .blog-item .route {
      margin-top: 2rem;
      padding-top: 1.25rem;
      border-top: 1px solid var(--card-border);
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1.5rem;
      font-size: 0.9rem;
    }

    .blog-item .route a {
      color: var(--brand-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(--brand-primary-bg);
    }

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

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

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

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

  .form form {
    display: block;
  }

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

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

  .form input,
  .form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 0.9rem;
    font-size: 1rem;
    
    color: var(--page-fg);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.15s ease;
  }

  .form input:focus,
  .form textarea:focus {
    border-color: var(--accent-bg);
  }

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

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

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

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

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

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

  .map-intro {
    max-width: 640px;
    margin-bottom: 3rem;
  }

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

  .map-intro p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.85;
  }

  .map-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2.5rem;
  }

  .map-details h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.02em;
  }

  .map-details p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    opacity: 0.85;
  }

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

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

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

    .map-intro h2 {
      font-size: 1.6rem;
    }

    .map-details {
      grid-template-columns: 1fr;
      gap: 1.75rem;
    }
  }

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

.contacts {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 3.5rem 1.25rem;
  }
  .contacts .inner {
    max-width: 720px;
    margin: 0 auto;
  }
  .contacts h1 {
    font-size: 1.9rem;
    line-height: 1.25;
    font-weight: 600;
    margin: 0 0 1rem;
  }
  .contacts .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2.2rem;
    max-width: 58ch;
  }
  .contacts .contact-line {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--muted-bg);
  }
  .contacts .label {
    flex: 0 0 7.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted-fg);
  }
  .contacts .value {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--page-fg);
    text-decoration: none;
  }
  .contacts a.value:hover {
    color: var(--accent-bg);
  }
  .contacts .hours {
    margin: 1.8rem 0 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted-fg);
    max-width: 56ch;
  }

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

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

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

    .policy-items h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin: 0 0 1rem;
        font-weight: 600;
    }

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

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

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

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

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

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

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

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

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

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

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

        .terms-items .rule:last-of-type {
            border-bottom: 1px solid var(--muted-bg);
        }

        .terms-items .rule h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0 0 0.5rem;
            color: var(--brand-primary-bg);
        }

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

        .terms-items .contact-note {
            margin-top: 2rem;
            font-size: 0.9rem;
            color: var(--muted-fg);
            line-height: 1.5;
        }

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

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

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

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

    .thank .note-label {
      font-size: 13px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--accent-bg);
      margin: 0 0 12px;
      font-weight: 500;
    }

    .thank h1 {
      font-size: 32px;
      line-height: 1.25;
      margin: 0 0 16px;
      font-weight: 600;
      color: var(--page-fg);
    }

    .thank .note-text {
      font-size: 16px;
      line-height: 1.7;
      color: var(--muted-fg);
      margin: 0;
    }

    .thank .aside {
      max-width: 520px;
      margin: 0 0 0 auto;
      padding-left: 48px;
      border-left: 3px solid var(--accent-bg);
    }

    .thank .aside-title {
      font-size: 15px;
      font-weight: 600;
      margin: 0 0 8px;
      color: var(--page-fg);
    }

    .thank .aside-text {
      font-size: 14px;
      line-height: 1.65;
      color: var(--muted-fg);
      margin: 0 0 12px;
    }

    .thank .aside-link {
      font-size: 14px;
      font-weight: 500;
      color: var(--accent-bg);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }

    .thank .aside-link:hover {
      border-bottom-color: var(--accent-bg);
    }

    .thank .contact {
      margin-top: 56px;
      padding-top: 32px;
      border-top: 1px solid var(--muted-bg);
      max-width: 620px;
    }

    .thank .contact-title {
      font-size: 15px;
      font-weight: 600;
      margin: 0 0 8px;
      color: var(--page-fg);
    }

    .thank .contact-text {
      font-size: 14px;
      line-height: 1.65;
      color: var(--muted-fg);
      margin: 0 0 16px;
    }

    .thank .contact-line {
      font-size: 14px;
      margin: 0 0 8px;
    }

    .thank .contact-line a {
      color: var(--accent-bg);
      text-decoration: none;
      font-weight: 500;
    }

    .thank .contact-line a:hover {
      text-decoration: underline;
    }

    .thank .contact-sep {
      color: var(--muted-fg);
      margin: 0 8px;
    }

    .thank .contact-address {
      font-size: 13px;
      color: var(--muted-fg);
      margin: 0;
      line-height: 1.5;
    }

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

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

      .thank .aside {
        margin-left: 0;
        padding-left: 20px;
        margin-top: 40px;
      }

      .thank .contact {
        margin-top: 40px;
      }
    }

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

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

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

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

    .next-step p {
      font-size: 16px;
      line-height: 1.65;
      margin: 0 0 14px;
    }

    .next-step .note {
      font-size: 14px;
      line-height: 1.6;
      opacity: 0.85;
      margin-bottom: 28px;
    }

    .next-step .route {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 20px;
      margin-top: 8px;
    }

    .next-step .action {
      display: inline-block;
      background: var(--accent-bg);
      color: var(--accent-fg);
      padding: 12px 22px;
      border-radius: 6px;
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
    }

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

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

    .next-step .route a:not(.action):hover {
      opacity: 1;
    }

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

.404 {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 72px 20px 80px;
  }
  .404 .inner {
    max-width: 640px;
    margin: 0 auto;
  }
  .404 .code {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-bg, #d96c2c);
    margin: 0 0 16px;
  }
  .404 h1 {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 16px;
    font-weight: 600;
  }
  .404 .lead {
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 14px;
  }
  .404 .note {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted-fg, #475467);
    margin: 0 0 28px;
    padding-left: 14px;
    border-left: 2px solid var(--accent-bg, #d96c2c);
  }
  .404 .route {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    border-top: 1px solid var(--card-border, #e4e7ec);
    padding-top: 24px;
  }
  .404 .route a {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-bg, #1e3a5f);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
  }
  .404 .route a:hover {
    border-bottom-color: var(--primary-bg, #1e3a5f);
  }
  .404 .route a:last-child {
    color: var(--accent-bg, #d96c2c);
  }
  .404 .route a:last-child:hover {
    border-bottom-color: var(--accent-bg, #d96c2c);
  }

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