/* Los tokens globales van primero; despues siguen los estilos de seccion. */

:root {
  --font-family: "Space Grotesk", sans-serif;
  --font-size-base: 19.7px;
  --line-height-base: 1.63;

  --max-w: 1300px;
  --space-x: 1.51rem;
  --space-y: 1.5rem;
  --gap: 2.12rem;
  --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.34rem;
  --radius-lg: 0.86rem;
  --radius-md: 0.44rem;
  --radius-sm: 0.25rem;

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.09);
  --shadow-md: 0 10px 18px rgba(0,0,0,0.12);
  --shadow-lg: 0 28px 30px rgba(0,0,0,0.14);

  --overlay: rgba(10, 14, 23, 0.7);
  --anim-duration: 300ms;
  --anim-ease: ease;
  --random-number: 2;

  --brand: #0F766E;
  --brand-contrast: #FFFFFF;
  --accent: #00A3E0;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F4F6F8;
  --neutral-300: #D0D5DD;
  --neutral-600: #475467;
  --neutral-800: #1D2939;
  --neutral-900: #101828;

  --page-bg: #F8FAFC;
  --page-fg: #1E293B;
  --muted-bg: #EEF2F6;
  --muted-fg: #475467;
  --card-bg: #FFFFFF;
  --card-fg: #1E293B;
  --card-border: #E2E8F0;
  --inverse-bg: #0F172A;
  --inverse-fg: #E2E8F0;
  --primary-bg: #0F766E;
  --primary-fg: #FFFFFF;
  --primary-hover: #115E59;
  --accent-bg: #00A3E0;
  --accent-fg: #FFFFFF;
  --accent-hover: #0077B6;
  --gradient-hero-bg: linear-gradient(135deg, #0F172A 0%, #1E3A5F 100%);
  --gradient-hero-fg: #FFFFFF;
  --gradient-accent-bg: linear-gradient(135deg, #00A3E0 0%, #0F766E 100%);
  --gradient-accent-fg: #FFFFFF;

  --ring: #00A3E0;

  --link: #0F766E;
  --link-hover: #00A3E0;

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

.site-header {
    background: var(--inverse-bg);
    color: var(--inverse-fg);
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-wrapper {
    max-width: var(--max-w);
    margin: 0 auto;
    padding-left: var(--space-x);
    padding-right: var(--space-x);
  }

  .header-utility {
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: var(--font-size-sm);
  }

  .header-utility .header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 36px;
    gap: var(--gap);
  }

  .utility-text {
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
  }

  .utility-link {
    color: var(--accent-fg);
    background: var(--accent-bg);
    padding: 4px 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .utility-link:hover {
    background: var(--accent-hover);
    color: var(--accent-fg);
  }

  .header-main {
    background: transparent;
  }

  .header-nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 72px;
    gap: var(--gap);
  }

  .logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--inverse-fg);
    text-decoration: none;
    line-height: 1.2;
    flex-shrink: 0;
  }

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

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

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

  .nav-item {
    margin: 0;
    padding: 0;
  }

  .nav-link {
    display: block;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: var(--font-size-md);
    font-weight: 450;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    line-height: 1.4;
  }

  .nav-link:hover {
    color: var(--inverse-fg);
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-link[aria-current="page"] {
    color: var(--accent-fg);
  }

  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    cursor: pointer;
    gap: 5px;
    transition: border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-toggle:hover {
    border-color: rgba(255, 255, 255, 0.5);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header-utility .header-wrapper {
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      padding-top: 6px;
      padding-bottom: 6px;
      text-align: center;
    }

    .utility-text {
      font-size: 0.75rem;
    }

    .utility-link {
      font-size: 0.75rem;
      padding: 3px 10px;
    }

    .header-nav-row {
      min-height: 64px;
      position: relative;
    }

    .nav-toggle {
      display: flex;
      order: 2;
    }

    .logo {
      font-size: 1.4rem;
      order: 1;
    }

    .primary-nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--inverse-bg);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: var(--shadow-lg);
      z-index: 100;
    }

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

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      padding: 8px 0;
      gap: 0;
    }

    .nav-item {
      width: 100%;
    }

    .nav-link {
      padding: 14px var(--space-x);
      border-radius: 0;
      font-size: var(--font-size-md);
    }

    .nav-link:hover {
      background: rgba(255, 255, 255, 0.08);
    }
  }

.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}.footer-grid{display:grid;grid-template-columns:1.5fr 2fr 1fr 1.5fr;gap:var(--space-section-x);margin-bottom:var(--space-section-y)}.footer-brand-col{display:flex;flex-direction:column;gap:var(--space-block)}.footer-logo{font-size:var(--font-size-h2);font-weight:700;text-decoration:none;letter-spacing:-0.02em;transition:opacity var(--anim-duration) var(--anim-ease)}.footer-logo:hover{opacity:0.85}.footer-tagline{font-size:var(--font-size-sm);opacity:0.8;margin:0;max-width:28ch}.footer-heading{font-size:var(--font-size-md);font-weight:600;margin:0 0 var(--space-block);text-transform:uppercase;letter-spacing:0.08em;opacity:0.9}.footer-links{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:calc(var(--space-block) * 0.5)}.footer-links a{text-decoration:none;font-size:var(--font-size-sm);transition:opacity var(--anim-duration) var(--anim-ease);opacity:0.85;color:inherit}.footer-links a:hover{opacity:1;text-decoration:underline;text-underline-offset:4px;color:inherit}.footer-contact-info{font-style:normal;display:flex;flex-direction:column;gap:var(--space-block)}.contact-item{display:flex;flex-direction:column;gap:0.25rem;margin:0}.contact-label{font-size:var(--font-size-sm);font-weight:600;text-transform:uppercase;letter-spacing:0.05em;opacity:0.7}.contact-value{font-size:var(--font-size-sm);text-decoration:none;opacity:0.9;transition:opacity var(--anim-duration) var(--anim-ease)}a.contact-value:hover{opacity:1;text-decoration:underline;text-underline-offset:4px;color:inherit}.footer-bottom{border-top:1px solid rgba(255, 255, 255, 0.15);padding-top:var(--space-block);display:flex;flex-direction:column;gap:var(--space-block)}.footer-copyright{font-size:var(--font-size-sm);margin:0;opacity:0.8}.footer-disclaimer{font-size:var(--font-size-sm);margin:0;opacity:0.7;max-width:80ch;line-height:var(--line-height-base)}

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

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

.cookies {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--card-bg);
    color: var(--card-fg);
    border-bottom: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-base);
    padding: var(--space-card) var(--space-section-x);
    box-sizing: border-box;
  }

  .notice {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
  }

  .copy {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-y) * 0.25);
    flex: 1 1 300px;
    min-width: 200px;
  }

  .title {
    font-size: var(--font-size-md);
    font-weight: 600;
    line-height: 1.3;
    /* hereda color del padre .cookies */
  }

  .copy p {
    margin: 0;
    /* hereda color del padre .cookies */
  }

  .actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-x);
    align-items: center;
    flex-shrink: 0;
  }

  .actions button {
    font-family: inherit;
    font-size: var(--font-size-sm);
    line-height: 1.2;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.2s var(--anim-ease), border-color 0.2s var(--anim-ease);
    background: var(--primary-bg);
    color: var(--primary-fg);
  }

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

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

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

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

  .actions .cookie-manage:hover {
    background: transparent;
    color: var(--link-hover);
  }

  @media (max-width: 640px) {
    .cookies {
      padding: var(--space-card) var(--space-section-y);
    }
    .notice {
      flex-direction: column;
      align-items: flex-start;
    }
    .actions {
      width: 100%;
      justify-content: flex-start;
    }
  }

.intro-focus {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 72px 0 80px;
  }

  .intro-focus .inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .intro-focus h1 {
    font-size: 2.6rem;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.02em;
    max-width: 820px;
    margin: 0 0 24px;
  }

  .intro-focus p {
    font-size: 1.06rem;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 0 20px;
    color: #CBD5E1;
  }

  .intro-focus .route {
    font-size: 0.95rem;
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(226, 232, 240, 0.18);
    max-width: 640px;
  }

  .intro-focus .route a {
    color: #7DD3FC;
    text-decoration: none;
    border-bottom: 1px solid rgba(125, 211, 252, 0.4);
    transition: border-color 0.2s ease;
  }

  .intro-focus .route a:hover {
    border-bottom-color: #7DD3FC;
  }

.intro-focus {
  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: 860px;
    margin: 0 auto;
  }
  .capabilities h2 {
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 1.25rem;
    letter-spacing: -0.01em;
  }
  .capabilities p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 1.1rem;
    color: var(--muted-fg, #475467);
  }
  .capabilities p:first-of-type {
    color: var(--page-fg);
    font-size: 1.15rem;
    line-height: 1.6;
  }
  .capabilities .route {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--card-border, #E2E8F0);
    font-size: 0.95rem;
  }
  .capabilities .route a {
    color: var(--primary-bg, #0F766E);
    text-decoration: none;
    border-bottom: 1px solid rgba(15, 118, 110, 0.3);
    transition: border-color 0.15s ease;
  }
  .capabilities .route a:hover {
    border-bottom-color: var(--primary-bg, #0F766E);
  }

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

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

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

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

  .clarifications p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 20px;
    color: var(--inverse-fg);
    opacity: 0.88;
  }

  .clarifications h3 {
    font-size: 20px;
    line-height: 1.4;
    margin: 44px 0 16px;
    font-weight: 600;
    color: var(--inverse-fg);
  }

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

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

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

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

  .faq h2 {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
  }

  .faq .lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 0 0 48px;
    max-width: 640px;
  }

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

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

  .faq .entry h3 {
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 10px;
    font-weight: 600;
  }

  .faq .entry p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--muted-fg);
    margin: 0;
    max-width: 720px;
  }

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

  .faq .route {
    display: flex;
    gap: 24px;
    margin-top: 12px;
  }

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

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

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

  .mission-copy {
    flex: 1 1 68%;
  }

  .mission-copy h2 {
    font-size: 1.9rem;
    line-height: 1.25;
    font-weight: 600;
    margin: 0 0 1.4rem;
    letter-spacing: -0.02em;
  }

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

  .mission-copy .mission-close {
    font-weight: 500;
    margin-top: 1.6rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--card-border);
  }

  .mission-note {
    flex: 0 1 32%;
    background: var(--muted-bg);
    color: var(--muted-fg);
    padding: 1.6rem 1.4rem;
    border-radius: 10px;
  }

  .mission-note h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.8rem;
    color: var(--page-fg);
  }

  .mission-note p {
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0 0 1.2rem;
  }

  .mission-note a {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-bg);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

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

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

    .mission-copy,
    .mission-note {
      flex: 1 1 auto;
      width: 100%;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .identity h1 {
    font-size: 2.25rem;
    line-height: 1.15;
    margin: 0 0 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  .identity .lead {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
    max-width: 40rem;
  }

  .identity .note {
    border-top: 1px solid var(--card-border);
    padding-top: 1.75rem;
  }

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

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

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

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

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

  .value-points h2 {
    font-size: 28px;
    line-height: 1.25;
    font-weight: 600;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
  }

  .value-points .lead {
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 48px 0;
    color: var(--muted-fg);
  }

  .value-points .benefit {
    margin-bottom: 36px;
  }

  .value-points .benefit:last-of-type {
    margin-bottom: 48px;
  }

  .value-points .benefit h3 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px 0;
  }

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

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

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

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

.value-points {
  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: 48rem;
    margin: 0 auto;
  }

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

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

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

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

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

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

    .plans-overview h2 {
        font-size: 1.9rem;
        font-weight: 600;
        line-height: 1.25;
        margin: 0 0 1rem;
        letter-spacing: -0.02em;
    }

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

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

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

    .plans-overview .entry h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin: 0 0 0.6rem;
        letter-spacing: -0.01em;
    }

    .plans-overview .entry p {
        font-size: 0.98rem;
        line-height: 1.65;
        color: var(--muted-fg);
        margin: 0 0 0.9rem;
        max-width: 760px;
    }

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

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

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

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

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

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

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

  .social-proof .notes {
    list-style: none;
    margin: 2.5rem 0 0;
    padding: 0;
  }

  .social-proof .note {
    border-left: 3px solid var(--accent-bg, #00A3E0);
    padding: 0.25rem 0 0.25rem 1.25rem;
  }

  .social-proof .note p {
    margin-bottom: 0.5rem;
  }

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

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

.next-step {
            background: var(--inverse-bg);
            color: var(--inverse-fg);
            padding: 4rem 1.5rem;
        }
        .next-step .inner {
            max-width: 720px;
            margin: 0 auto;
        }
        .next-step h2 {
            font-size: 1.75rem;
            line-height: 1.2;
            margin: 0 0 1rem;
            font-weight: 600;
        }
        .next-step p {
            margin: 0 0 1rem;
            line-height: 1.6;
            max-width: 60ch;
        }
        .next-step .route {
            display: inline-block;
            margin-top: 0.5rem;
            background: var(--accent-bg);
            color: var(--accent-fg);
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
        }
        .next-step .route:hover {
            background: var(--accent-hover);
        }
        .next-step .more {
            margin-top: 2rem;
            font-size: 0.9rem;
            color: var(--muted-fg);
        }
        .next-step .more a {
            color: var(--inverse-fg);
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .next-step .more a:hover {
            color: var(--accent-bg);
        }

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

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

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

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

    .value-points .lead {
        font-size: 1.05rem;
        line-height: 1.65;
        color: var(--muted-fg);
        max-width: 680px;
        margin: 0 0 3rem 0;
    }

    .value-points .benefit-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        border-top: 1px solid var(--card-border);
    }

    .value-points .benefit-item {
        padding: 1.75rem 0;
        border-bottom: 1px solid var(--card-border);
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 2rem;
        align-items: start;
    }

    .value-points .benefit-item h3 {
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.4;
        margin: 0;
        color: var(--page-fg);
    }

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

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

    .value-points .route {
        margin: 1.5rem 0 0 0;
        font-size: 0.95rem;
    }

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

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

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

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

        .value-points .benefit-item {
            grid-template-columns: 1fr;
            gap: 0.5rem;
            padding: 1.5rem 0;
        }
    }

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

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

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

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

    .how-it-works .columns {
        display: flex;
        gap: 2.5rem;
        align-items: flex-start;
        margin-bottom: 2.5rem;
    }

    .how-it-works .setup,
    .how-it-works .next-actions {
        flex: 1;
        border-top: 2px solid var(--card-border);
        padding-top: 1.25rem;
    }

    .how-it-works h3 {
        font-size: 1.15rem;
        font-weight: 600;
        margin: 0 0 0.6rem 0;
    }

    .how-it-works p {
        line-height: 1.65;
        margin: 0;
    }

    .how-it-works .closing {
        font-size: 0.95rem;
        max-width: 640px;
        color: var(--muted-fg);
    }

    @media (max-width: 640px) {
        .how-it-works .columns {
            flex-direction: column;
            gap: 1.75rem;
        }
    }

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

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

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

    .timeline h2 {
      font-size: 1.75rem;
      line-height: 1.25;
      margin: 0 0 16px;
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    .timeline .intro {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 40px;
      max-width: 640px;
      color: var(--inverse-fg);
      opacity: 0.85;
    }

    .timeline .stages {
      list-style: none;
      margin: 0;
      padding: 0;
      border-left: 1px solid rgba(226, 232, 240, 0.25);
    }

    .timeline .stage {
      padding: 0 0 36px 28px;
      position: relative;
    }

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

    .timeline .stage::before {
      content: "";
      position: absolute;
      left: -5px;
      top: 6px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--accent-bg, #00A3E0);
    }

    .timeline .date {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 6px;
      color: var(--accent-bg, #00A3E0);
      font-weight: 500;
    }

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

    .timeline .stage p {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0;
      color: var(--inverse-fg);
      opacity: 0.8;
      max-width: 620px;
    }

    .timeline .note {
      margin: 40px 0 0;
      padding: 16px 20px;
      background: rgba(255, 255, 255, 0.06);
      border-left: 3px solid var(--accent-bg, #00A3E0);
      font-size: 0.9rem;
      line-height: 1.55;
      color: var(--inverse-fg);
      opacity: 0.9;
    }

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

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

      .timeline .stage {
        padding-left: 22px;
      }
    }

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

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

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

    .support h2 {
      font-size: 1.75rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 1rem;
      letter-spacing: -0.01em;
    }

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

    .support .channels {
      border-top: 1px solid var(--card-border, #E2E8F0);
    }

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

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

    .support .channel p {
      font-size: 0.9rem;
      line-height: 1.55;
      margin: 0;
      max-width: 640px;
    }

    .support .channel .meta {
      font-size: 0.8rem;
      margin-top: 0.4rem;
      color: var(--muted-fg, #475467);
    }

    .support .note {
      font-size: 0.85rem;
      line-height: 1.5;
      margin: 1.5rem 0 0;
      max-width: 720px;
      color: var(--muted-fg, #475467);
    }

    .support .route {
      margin: 1.75rem 0 0;
      font-size: 0.9rem;
    }

    .support .route a {
      color: var(--brand-primary-bg, #0F766E);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .support .route a:hover {
      color: var(--brand-primary-hover, #115E59);
    }

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

.support {
            background: var(--inverse-bg);
            color: var(--inverse-fg);
            padding: 4.5rem 1.5rem;
        }
        .support .inner {
            max-width: 58rem;
            margin: 0 auto;
        }
        .support h2 {
            font-size: 1.9rem;
            line-height: 1.25;
            font-weight: 600;
            margin: 0 0 1.2rem;
            letter-spacing: -0.01em;
        }
        .support .lead {
            font-size: 1.05rem;
            line-height: 1.7;
            margin: 0 0 2.8rem;
            max-width: 46rem;
        }
        .support .channels {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-bottom: 2.8rem;
        }
        .support .channel h3 {
            font-size: 1rem;
            font-weight: 600;
            margin: 0 0 0.7rem;
            line-height: 1.4;
        }
        .support .channel p {
            font-size: 0.92rem;
            line-height: 1.65;
            margin: 0;
        }
        .support .channel a {
            color: var(--accent-bg);
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .support .footer-note {
            font-size: 0.92rem;
            line-height: 1.6;
            margin: 0;
            padding-top: 1.8rem;
            border-top: 1px solid rgba(226, 232, 240, 0.15);
            max-width: 46rem;
        }
        .support .footer-note a {
            color: var(--accent-bg);
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        @media (max-width: 768px) {
            .support .channels {
                grid-template-columns: 1fr;
                gap: 1.8rem;
            }
            .support {
                padding: 3rem 1.25rem;
            }
        }

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

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

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

  .contacts h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1rem 0;
    letter-spacing: -0.01em;
  }

  .contacts p {
    margin: 0 0 1.25rem 0;
    line-height: 1.6;
  }

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

  .contacts .contact-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted-fg);
    margin: 0 0 0.35rem 0;
  }

  .contacts .contact-value {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
  }

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

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

  .contacts .closing-line {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--muted-bg);
    font-size: 0.95rem;
    color: var(--muted-fg);
  }

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

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

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

    .faq h2 {
      font-size: 2rem;
      line-height: 1.2;
      margin: 0 0 16px;
      letter-spacing: -0.02em;
    }

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

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

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

    .faq .entry h3 {
      font-size: 1.1rem;
      line-height: 1.4;
      margin: 0 0 10px;
      font-weight: 600;
    }

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

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

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

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

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

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

      .faq .lead {
        font-size: 1rem;
        margin-bottom: 36px;
      }
    }

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

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

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

  .recommendations h2 {
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
  }

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

  .recommendations .route {
    border-top: 1px solid var(--card-border, #E2E8F0);
  }

  .recommendations .entry {
    padding: 20px 0;
    border-bottom: 1px solid var(--card-border, #E2E8F0);
  }

  .recommendations .entry h3 {
    font-size: 17px;
    line-height: 1.4;
    margin: 0 0 6px 0;
    font-weight: 600;
  }

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

  .recommendations .entry h3 a:hover {
    color: var(--primary-bg, #0F766E);
    text-decoration: underline;
  }

  .recommendations .entry p {
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
    max-width: 620px;
  }

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

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

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

  .clarifications h2 {
    font-size: 28px;
    line-height: 1.25;
    font-weight: 600;
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;
  }

  .clarifications p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    color: var(--inverse-fg);
    opacity: 0.85;
  }

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

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

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

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

  .social-proof > .inner > p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 0 0 40px 0;
    max-width: 640px;
  }

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

  .social-proof .review {
    padding: 24px 0;
    border-bottom: 1px solid var(--card-border);
  }

  .social-proof .review:first-child {
    padding-top: 0;
  }

  .social-proof .review:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .social-proof .review-text {
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 12px 0;
  }

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

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

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

  .next-step h2 {
    font-size: 28px;
    line-height: 1.25;
    font-weight: 600;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
  }

  .next-step p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 16px 0;
    color: #CBD5E1;
  }

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

  .next-step .route-link {
    display: inline-block;
    background: var(--accent-bg);
    color: var(--accent-fg);
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease;
  }

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

  .next-step .route-note {
    font-size: 14px;
    color: #94A3B8;
  }

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

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

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

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

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

    .timeline .stage {
      position: relative;
      padding-bottom: 2.75rem;
    }

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

    .timeline .stage::before {
      content: "";
      position: absolute;
      left: -2.45rem;
      top: 0.35rem;
      width: 0.75rem;
      height: 0.75rem;
      border-radius: 50%;
      background: var(--primary-bg);
      border: 2px solid var(--page-bg);
    }

    .timeline .meta {
      display: flex;
      align-items: baseline;
      gap: 0.75rem;
      margin-bottom: 0.5rem;
    }

    .timeline .period {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--primary-bg);
      letter-spacing: 0.02em;
    }

    .timeline .marker {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--muted-fg);
    }

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

    .timeline .stage p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 0;
      max-width: 620px;
    }

    @media (max-width: 560px) {
      .timeline {
        padding: 3.5rem 1.25rem;
      }

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

      .timeline .stages {
        padding-left: 1.5rem;
      }

      .timeline .stage::before {
        left: -1.95rem;
        width: 0.6rem;
        height: 0.6rem;
      }

      .timeline .meta {
        flex-direction: column;
        gap: 0.15rem;
      }
    }

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

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

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

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

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

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

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

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

    .timeline h2 {
      font-size: 1.9rem;
      font-weight: 600;
      line-height: 1.25;
      margin: 0 0 16px;
      letter-spacing: -0.01em;
    }

    .timeline > .inner > p {
      font-size: 1rem;
      line-height: 1.65;
      color: var(--muted-fg);
      max-width: 640px;
      margin: 0 0 48px;
    }

    .timeline .line {
      border-left: 2px solid var(--card-border);
      padding-left: 32px;
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .timeline .step {
      position: relative;
    }

    .timeline .step::before {
      content: "";
      position: absolute;
      left: -38px;
      top: 4px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--primary-bg);
    }

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

    .timeline h3 {
      font-size: 1.2rem;
      font-weight: 600;
      margin: 0 0 8px;
      line-height: 1.3;
    }

    .timeline .step p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 0;
      max-width: 560px;
    }

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

      .timeline .line {
        padding-left: 24px;
        gap: 32px;
      }

      .timeline .step::before {
        left: -30px;
      }
    }

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

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

  .how-it-works h2 {
    font-size: 1.75rem;
    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 2.5rem;
    max-width: 720px;
  }

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

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

  .how-it-works .step-number {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-primary-bg, #0F766E);
    min-width: 2.5rem;
    padding-top: 0.25rem;
  }

  .how-it-works .step-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
  }

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

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

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

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

  .how-it-works .route a:hover {
    color: var(--brand-primary-hover, #115E59);
  }

  @media (max-width: 640px) {
    .how-it-works .step {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

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

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

.feedback h2 {
  font-size: 28px;
  line-height: 1.25;
  font-weight: 600;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}

.feedback > .inner > p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted-fg);
  margin: 0 0 40px 0;
  max-width: 720px;
}

.feedback .note {
  border-left: 2px solid var(--primary-bg);
  padding: 8px 0 8px 24px;
  margin: 0 0 32px 0;
}

.feedback .note-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-bg);
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.feedback .note p:last-child {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  color: var(--page-fg);
}

.feedback .closing {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-fg);
  margin: 40px 0 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
  max-width: 720px;
}

@media (max-width: 640px) {
  .feedback {
    padding: 48px 20px;
  }
  
  .feedback h2 {
    font-size: 23px;
  }
  
  .feedback .note {
    padding-left: 16px;
  }
}

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

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

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

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

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

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

    .why-choose .route {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .why-choose .route a {
        color: var(--primary-bg, #0F766E);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        width: fit-content;
        border-bottom: 1px solid transparent;
        transition: border-color 0.2s ease;
    }

    .why-choose .route a:hover {
        border-bottom-color: currentColor;
    }

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

        .why-choose .route {
            flex-direction: row;
            gap: 2rem;
        }
    }

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

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

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

  .partners h2 {
    font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 20px;
    max-width: 560px;
  }

  .partners p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 16px;
    max-width: 560px;
  }

  .partners .note {
    color: var(--muted-fg);
    font-size: 0.9rem;
    margin-bottom: 28px;
  }

  .partners a {
    color: var(--primary-bg);
    font-size: 0.95rem;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

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

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

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

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

  .value-points h2 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
  }

  .value-points .lead {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 16px;
  }

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

  .value-points .route {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--card-border, #E2E8F0);
  }

  .value-points .route p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted-fg, #475467);
    margin: 0;
  }

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

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

.next-step {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3.5rem 1.25rem;
    }
    .next-step .inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 2.5rem;
    }
    .next-step .step-copy {
      flex: 1 1 55%;
    }
    .next-step h2 {
      font-size: 1.6rem;
      line-height: 1.25;
      margin: 0 0 1rem;
      font-weight: 600;
    }
    .next-step p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 0.75rem;
      max-width: 60ch;
    }
    .next-step .step-note {
      font-size: 0.9rem;
      color: var(--muted-fg);
      border-left: 2px solid var(--primary-bg);
      padding-left: 0.9rem;
      margin-top: 1.25rem;
    }
    .next-step .step-action {
      flex: 1 1 30%;
      min-width: 260px;
    }
    .next-step .step-link {
      display: inline-block;
      background: var(--accent-bg);
      color: var(--accent-fg);
      padding: 0.85rem 1.6rem;
      border-radius: 6px;
      font-weight: 600;
      text-decoration: none;
      font-size: 1rem;
      transition: background 0.2s ease;
    }
    .next-step .step-link:hover {
      background: var(--accent-hover);
    }
    .next-step .step-alternative {
      font-size: 0.85rem;
      line-height: 1.5;
      margin-top: 1.25rem;
      color: var(--muted-fg);
    }
    .next-step .step-alternative a {
      color: var(--inverse-fg);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .next-step .step-alternative a:hover {
      color: var(--accent-bg);
    }
    @media (max-width: 720px) {
      .next-step .inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.75rem;
      }
      .next-step .step-action {
        min-width: 0;
      }
    }

.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-head {
      border-bottom: 1px solid var(--card-border, #E2E8F0);
      padding-bottom: 1.5rem;
      margin-bottom: 2rem;
    }

    .blog-item h1 {
      font-size: 1.9rem;
      line-height: 1.25;
      margin: 0 0 0.75rem;
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    .blog-item .post-date {
      font-size: 0.9rem;
      color: var(--muted-fg, #475467);
      margin: 0;
    }

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

    .blog-item .post-foot {
      margin-top: 2.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--card-border, #E2E8F0);
    }

    .blog-item .post-note {
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--muted-fg, #475467);
      margin: 0 0 1.25rem;
      padding: 0.9rem 1.1rem;
      background: var(--muted-bg, #EEF2F6);
      border-left: 3px solid var(--primary-bg, #0F766E);
    }

    .blog-item .post-more {
      margin: 0;
      font-size: 0.95rem;
    }

    .blog-item .post-more a {
      color: var(--primary-bg, #0F766E);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }

    .blog-item .post-more a:hover {
      border-bottom-color: var(--primary-bg, #0F766E);
    }

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

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

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

    .blog-list h2 {
      font-size: 28px;
      line-height: 1.3;
      margin: 0 0 12px;
      letter-spacing: -0.01em;
    }

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

    .blog-list .entries {
      display: block;
    }

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

    .blog-list .entry:first-child {
      padding-top: 0;
    }

    .blog-list .entry:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .blog-list .entry-body h3 {
      font-size: 20px;
      line-height: 1.4;
      margin: 0 0 6px;
      font-weight: 600;
    }

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

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

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

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

    .blog-list .read {
      font-size: 14px;
      font-weight: 500;
      color: var(--primary-bg);
      text-decoration: none;
      display: inline-block;
    }

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

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

      .blog-list h2 {
        font-size: 24px;
      }

      .blog-list .entry {
        padding: 22px 0;
      }
    }

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

.blog-item {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3.5rem 1.25rem;
    }
    .blog-item .inner {
      max-width: 46rem;
      margin: 0 auto;
    }
    .blog-item .entry-head {
      border-bottom: 1px solid var(--card-border, #E2E8F0);
      padding-bottom: 1.75rem;
      margin-bottom: 2rem;
    }
    .blog-item .entry-meta {
      font-size: 0.8rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--muted-fg, #475467);
      margin: 0 0 0.75rem;
    }
    .blog-item h1 {
      font-size: 1.9rem;
      line-height: 1.25;
      margin: 0 0 1rem;
      color: var(--page-fg);
    }
    .blog-item .entry-deck {
      font-size: 1.05rem;
      line-height: 1.6;
      color: var(--muted-fg, #475467);
      margin: 0;
    }
    .blog-item .entry-body p {
      line-height: 1.7;
      margin: 0 0 1.25rem;
      font-size: 0.98rem;
    }
    .blog-item .entry-foot {
      border-top: 1px solid var(--card-border, #E2E8F0);
      margin-top: 2.25rem;
      padding-top: 1.5rem;
    }
    .blog-item .entry-note {
      font-size: 0.92rem;
      color: var(--muted-fg, #475467);
      margin: 0 0 0.75rem;
      line-height: 1.55;
    }
    .blog-item .entry-route a {
      color: var(--primary-bg, #0F766E);
      font-weight: 600;
      text-decoration: none;
      font-size: 0.95rem;
    }
    .blog-item .entry-route a:hover {
      text-decoration: underline;
    }
    @media (min-width: 640px) {
      .blog-item {
        padding: 4.5rem 2rem;
      }
      .blog-item h1 {
        font-size: 2.3rem;
      }
      .blog-item .entry-body p {
        font-size: 1rem;
      }
    }

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

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

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

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

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

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

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

    .blog-list h3 {
      font-size: 1.35rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 0.4rem;
    }

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

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

    .blog-list .date {
      font-size: 0.85rem;
      color: var(--muted-fg);
      margin: 0 0 0.9rem;
    }

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

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

    .blog-list .read-more:hover {
      border-bottom-color: var(--primary-bg);
    }

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

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

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

.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-head {
      border-bottom: 1px solid var(--muted-bg);
      padding-bottom: 1.5rem;
      margin-bottom: 2rem;
    }

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

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

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

    .blog-item .post-body h2 {
      font-size: 1.25rem;
      margin: 2rem 0 0.75rem;
      font-weight: 600;
      line-height: 1.3;
    }

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

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

    .blog-item .read {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .blog-item .read a {
      color: var(--primary-bg);
      text-decoration: none;
      font-size: 0.95rem;
      line-height: 1.4;
    }

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

    @media (min-width: 640px) {
      .blog-item .read {
        flex-direction: row;
        gap: 2rem;
      }
    }

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

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

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

    .blog-list > .inner > p {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 0 2.5rem 0;
        max-width: 720px;
    }

    .blog-list .entries {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    .blog-list .entry {
        border-bottom: 1px solid var(--muted-bg);
        padding-bottom: 2rem;
    }

    .blog-list .entry:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .blog-list .entry h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin: 0 0 0.35rem 0;
        line-height: 1.4;
    }

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

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

    .blog-list .date {
        font-size: 0.85rem;
        margin: 0 0 0.75rem 0;
        color: var(--muted-fg);
    }

    .blog-list .entry p:not(.date) {
        font-size: 0.95rem;
        line-height: 1.65;
        margin: 0 0 1rem 0;
    }

    .blog-list .read-more {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--primary-bg);
        text-decoration: none;
        display: inline-block;
    }

    .blog-list .read-more:hover {
        text-decoration: underline;
    }

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

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

  .form form {
    display: block;
  }

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

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

  .form input,
  .form select,
  .form textarea {
    width: 100%;
    padding: 0.625rem 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    background: var(--card-bg);
    color: var(--card-fg);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    box-sizing: border-box;
    
  }

  .form input:focus,
  .form select:focus,
  .form textarea:focus {
    outline: none;
    border-color: var(--primary-bg);
  }

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

  .form button {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary-fg);
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    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: 760px;
    margin: 0 auto;
  }

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

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

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

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

  .contact-label {
    flex: 0 0 110px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted-fg);
  }

  .contact-value {
    font-size: 1rem;
    line-height: 1.6;
  }

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

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

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

    .contact-line {
      flex-direction: column;
      gap: 0.25rem;
    }

    .contact-label {
      flex: none;
    }
  }

.stay-in-touch {
        background: var(--gradient-hero-bg);
        color: var(--gradient-hero-fg);
        padding: 4rem 1.5rem;
    }
    .stay-in-touch .inner {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    .stay-in-touch .note {
        max-width: 640px;
    }
    .stay-in-touch h2 {
        font-size: 1.75rem;
        font-weight: 600;
        line-height: 1.2;
        margin: 0 0 1rem 0;
        letter-spacing: -0.01em;
    }
    .stay-in-touch .note p {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0;
        color: var(--gradient-hero-fg);
        opacity: 0.85;
    }
    .stay-in-touch .details {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        border-top: 1px solid rgba(226, 232, 240, 0.2);
        padding-top: 2rem;
    }
    .stay-in-touch .entry {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        min-width: 200px;
    }
    .stay-in-touch .label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        opacity: 0.6;
    }
    .stay-in-touch a {
        color: var(--gradient-hero-fg);
        text-decoration: none;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(226, 232, 240, 0.3);
        padding-bottom: 0.1rem;
        width: fit-content;
    }
    .stay-in-touch a:hover {
        border-bottom-color: var(--accent-bg);
    }
    .stay-in-touch .entry p {
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 260px;
    }
    @media (min-width: 640px) {
        .stay-in-touch {
            padding: 5rem 2rem;
        }
        .stay-in-touch .inner {
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-start;
            gap: 4rem;
        }
        .stay-in-touch .note {
            flex: 1;
        }
        .stay-in-touch .details {
            flex: 0 0 auto;
            flex-direction: column;
            gap: 1.5rem;
            border-top: none;
            border-left: 1px solid rgba(226, 232, 240, 0.2);
            padding-top: 0;
            padding-left: 2.5rem;
        }
    }

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

.policy-items {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 64px 24px 80px;
    }
    .policy-items .inner {
      max-width: 860px;
      margin: 0 auto;
    }
    .policy-items h1 {
      font-size: 32px;
      line-height: 1.2;
      margin: 0 0 16px;
      letter-spacing: -0.02em;
    }
    .policy-items .lead {
      font-size: 17px;
      line-height: 1.6;
      margin: 0 0 48px;
      max-width: 720px;
    }
    .policy-items .legal-block {
      border-top: 1px solid var(--card-border);
      padding: 32px 0 8px;
      margin-bottom: 24px;
    }
    .policy-items .legal-block:last-child {
      border-bottom: 1px solid var(--card-border);
      padding-bottom: 32px;
    }
    .policy-items h2 {
      font-size: 20px;
      line-height: 1.3;
      margin: 0 0 12px;
    }
    .policy-items p {
      font-size: 15px;
      line-height: 1.65;
      margin: 0 0 16px;
      max-width: 780px;
    }
    @media (max-width: 640px) {
      .policy-items {
        padding: 48px 20px 64px;
      }
      .policy-items h1 {
        font-size: 26px;
      }
      .policy-items .lead {
        font-size: 16px;
      }
    }

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

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

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

  .terms-items h2 {
    font-size: 1.75rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 1.25rem;
    letter-spacing: -0.01em;
  }

  .terms-items p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1rem;
    color: var(--inverse-fg);
    opacity: 0.85;
  }

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

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

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

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

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

    .next-step p {
      font-size: 16px;
      line-height: 1.65;
      margin: 0 0 32px;
      max-width: 620px;
    }

    .next-step .route {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

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

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

    .next-step .note {
      font-size: 14px;
      line-height: 1.5;
      color: #94A3B8;
      max-width: 340px;
    }

    .next-step .note a {
      color: var(--accent-bg);
      text-decoration: underline;
    }

.thank {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 5rem 1.5rem;
  }
  .thank .inner {
    max-width: 42rem;
    margin: 0 auto;
  }
  .thank h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    font-weight: 600;
  }
  .thank .lead {
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 0 1.25rem;
  }
  .thank p {
    line-height: 1.6;
    margin: 0 0 1.25rem;
  }
  .thank .route {
    margin: 1.75rem 0;
  }
  .thank .route a,
  .thank .contact a,
  .thank .back a {
    color: var(--primary-bg);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .thank .route a:hover,
  .thank .contact a:hover,
  .thank .back a:hover {
    color: var(--primary-hover);
  }
  .thank .contact {
    background: var(--muted-bg);
    color: var(--muted-fg);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0 1.5rem;
  }
  .thank .contact p {
    margin: 0;
    font-size: 0.95rem;
  }
  .thank .back {
    margin-top: 2rem;
    font-size: 0.95rem;
  }

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

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

  .404 .inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
  }

  .404 .media {
    background: var(--inverse-bg);
    color: var(--inverse-fg);
    border-radius: 12px;
    padding: 32px 40px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .404 .code {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
  }

  .404 .note {
    background: var(--muted-bg);
    color: var(--muted-fg);
    border-left: 3px solid var(--primary-bg);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 32px;
  }

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

  .404 h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.2;
  }

  .404 .subtitle {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 32px 0;
    max-width: 60ch;
  }

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

  .404 .route a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
  }

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

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

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

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

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

    .404 .media {
      padding: 24px;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    .404 .code {
      font-size: 2rem;
    }

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

    .404 .route {
      flex-direction: column;
      align-items: stretch;
    }

    .404 .route a {
      text-align: center;
    }
  }

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