:root {
  --font-family: "Source Sans 3", sans-serif;
  --font-size-base: 14.6px;
  --line-height-base: 1.84;

  --max-w: 980px;
  --space-x: 1.6rem;
  --space-y: 1.5rem;
  --gap: 0.86rem;
  --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: 1rem;
  --radius-md: 0.7rem;
  --radius-sm: 0.36rem;

  --shadow-sm: 0 0px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 6px 14px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 34px rgba(0,0,0,0.08);

  --overlay: rgba(15, 23, 42, 0.6);
  --anim-duration: 500ms;
  --anim-ease: cubic-bezier(0.4,0,0.2,1);
  --random-number: 1;

  --brand: #3a7d6f;
  --brand-contrast: #ffffff;
  --accent: #e8f4f1;
  --accent-contrast: #1a3a33;

  --neutral-0: #ffffff;
  --neutral-100: #f4f6f8;
  --neutral-300: #d1d9e0;
  --neutral-600: #5a6b7a;
  --neutral-800: #2c3e50;
  --neutral-900: #1a252f;

  --page-bg: #fafcfb;
  --page-fg: #2c3e50;
  --muted-bg: #f0f5f3;
  --muted-fg: #5a6b7a;
  --card-bg: #ffffff;
  --card-fg: #2c3e50;
  --card-border: #e2e8e6;
  --inverse-bg: #2c3e50;
  --inverse-fg: #ffffff;
  --primary-bg: #3a7d6f;
  --primary-fg: #ffffff;
  --primary-hover: #2f6b5f;
  --accent-bg: #e8f4f1;
  --accent-fg: #1a3a33;
  --accent-hover: #d0e9e3;
  --gradient-hero-bg: linear-gradient(135deg, #f0f5f3 0%, #e8f4f1 100%);
  --gradient-hero-fg: #2c3e50;
  --gradient-accent-bg: linear-gradient(135deg, #3a7d6f 0%, #2c5e54 100%);
  --gradient-accent-fg: #ffffff;

  --ring: #3a7d6f;

  --link: #3a7d6f;
  --link-hover: #e8f4f1;

  --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;
    min-height: 72px;
    gap: var(--gap);
  }

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

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

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

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

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

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

  .cta-link {
    background-color: var(--primary-bg);
    color: var(--primary-fg);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    margin-left: 0.5rem;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .cta-link:hover {
    background-color: var(--primary-hover);
    color: var(--primary-fg);
  }

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

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

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

  @media (max-width: 767px) {
    .header-wrapper {
      min-height: 64px;
      flex-wrap: wrap;
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
    }

    .menu-toggle {
      display: flex;
    }

    .main-nav {
      display: none;
      width: 100%;
      order: 3;
      padding: 0.5rem 0 1rem;
    }

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

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

    .nav-link {
      display: block;
      padding: 0.75rem 0.875rem;
      font-size: var(--font-size-lg);
      border-radius: var(--radius-md);
    }

    .cta-link {
      margin-left: 0;
      margin-top: 0.25rem;
      text-align: center;
      padding: 0.75rem 1.25rem;
    }

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

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

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

.site-footer{padding:var(--space-section-y) var(--space-section-x);font-family:var(--font-family);font-size:var(--font-size-sm);line-height:var(--line-height-base);background:var(--inverse-bg);color:var(--inverse-fg);}.footer-container{max-width:var(--max-w);margin:0 auto;display:flex;flex-direction:column;gap:var(--space-y)}.footer-brand{display:flex;flex-direction:column;gap:var(--space-x)}.footer-logo{font-size:var(--font-size-lg);font-weight:700;color:inherit;text-decoration:none;letter-spacing:0.02em}.footer-logo:hover{color:inherit;opacity:0.85}.footer-tagline{margin:0;color:inherit;opacity:0.8;max-width:40rem}.footer-nav{display:grid;grid-template-columns:repeat(3, 1fr);gap:var(--gap);padding:var(--space-y) 0;border-top:1px solid rgba(255, 255, 255, 0.1);border-bottom:1px solid rgba(255, 255, 255, 0.1)}.footer-nav-column{display:flex;flex-direction:column;gap:var(--space-x)}.footer-nav-column a{color:inherit;text-decoration:none;opacity:0.85;transition:opacity var(--anim-duration) var(--anim-ease)}.footer-nav-column a:hover{opacity:1;text-decoration:underline;text-underline-offset:0.2em;color:inherit}.footer-bottom{display:flex;flex-direction:column;gap:var(--space-y)}.footer-contact{display:flex;flex-wrap:wrap;gap:var(--space-x) var(--space-y);font-style:normal;color:inherit}.footer-contact span{display:inline-flex;align-items:center;gap:0.25rem}.footer-contact a{color:inherit;text-decoration:none;opacity:0.85;transition:opacity var(--anim-duration) var(--anim-ease)}.footer-contact a:hover{opacity:1;text-decoration:underline;text-underline-offset:0.2em;color:inherit}.footer-disclaimer{margin:0;color:inherit;opacity:0.75;font-size:var(--font-size-sm);line-height:var(--line-height-base);max-width:60rem}.footer-copyright{margin:0;color:inherit;opacity:0.6;font-size:var(--font-size-sm)}

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

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

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

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

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

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

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

.cookies .actions button {
  font-family: inherit;
  font-size: var(--font-size-sm);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-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: transparent;
  color: var(--page-fg);
  border-color: var(--card-border);
}

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

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

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

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

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

  .intro-focus h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .intro-focus p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
    max-width: 620px;
  }

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

  .intro-focus .route a {
    color: var(--brand-primary-bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
  }

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

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

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

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

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

  .faq .entry {
    border-top: 1px solid var(--card-border, #e2e8e6);
    padding: 1.75rem 0;
  }

  .faq .entry:last-child {
    border-bottom: 1px solid var(--card-border, #e2e8e6);
  }

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

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

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

  .faq a:hover {
    color: var(--primary-hover, #2f6b5f);
  }

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

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

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

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

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

    .why-choose .reasons {
        border-top: 1px solid var(--card-border);
    }

    .why-choose .reason {
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--card-border);
    }

    .why-choose .reason h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0 0 0.5rem;
    }

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

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

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

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

  .value-points .benefit {
    margin: 0 0 2rem;
    padding-left: 1.25rem;
    border-left: 3px solid var(--primary-bg, #3a7d6f);
  }

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

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

  .value-points .note {
    font-size: 0.9rem;
    background: var(--muted-bg);
    color: var(--muted-fg);
    padding: 0.6rem 0.9rem;
    border-radius: 4px;
    display: inline-block;
    margin-top: 0.25rem;
  }

  .value-points .closing {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 2.5rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border, #e2e8e6);
  }

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

  .value-points .closing a:hover {
    color: var(--primary-hover, #2f6b5f);
  }

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

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

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

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

  .second-hero-block .inner {
    max-width: 46rem;
    margin: 0 auto;
  }

  .second-hero-block h1 {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 1.25rem;
    letter-spacing: -0.01em;
  }

  .second-hero-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    max-width: 40rem;
  }

.second-hero-block {
  background: var(--page-bg);
  color: var(--page-fg);
}

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

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

    .our-story h2 {
      font-size: 1.8rem;
      font-weight: 600;
      margin: 0 0 1.2rem;
      letter-spacing: -0.01em;
    }

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

    .our-story .timeline {
      border-left: 2px solid var(--accent-bg);
      padding-left: 1.8rem;
      margin: 0 0 2.5rem;
    }

    .our-story .entry {
      margin-bottom: 2.4rem;
    }

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

    .our-story .year {
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--brand-primary-bg);
      margin: 0 0 0.4rem;
    }

    .our-story .entry h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 0 0 0.6rem;
      line-height: 1.3;
    }

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

    .our-story .closing {
      font-size: 0.95rem;
      line-height: 1.65;
      color: var(--muted-fg);
      margin: 0;
      padding-top: 1.5rem;
      border-top: 1px solid var(--card-border);
    }

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

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

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

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

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

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

  .identity .note {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border, #e2e8e6);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted-fg, #5a6b7a);
  }

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

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

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

  .partners h2 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1.2rem 0;
    letter-spacing: -0.01em;
  }

  .partners > .inner > p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 3rem 0;
    opacity: 0.85;
    max-width: 38rem;
  }

  .partners .list {
    display: block;
  }

  .partners .item {
    padding: 1.6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

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

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

  .partners .item p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    opacity: 0.8;
    max-width: 36rem;
  }

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

.second-hero-block {
            background: var(--gradient-hero-bg);
            color: var(--gradient-hero-fg);
            padding: 4.5rem 1.5rem 3.5rem;
        }
        .second-hero-block .inner {
            max-width: 48rem;
            margin: 0 auto;
        }
        .second-hero-block h1 {
            font-size: 2.1rem;
            line-height: 1.25;
            font-weight: 600;
            margin: 0 0 1rem 0;
            letter-spacing: -0.01em;
        }
        .second-hero-block p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin: 0;
            max-width: 42rem;
        }
        @media (min-width: 640px) {
            .second-hero-block {
                padding: 5.5rem 2rem 4rem;
            }
            .second-hero-block h1 {
                font-size: 2.5rem;
            }
            .second-hero-block p {
                font-size: 1.2rem;
            }
        }

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

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

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

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

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

  .how-it-works .step {
    border-left: 2px solid var(--brand-primary-bg, #3a7d6f);
    padding: 0 0 1.75rem 1.5rem;
    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.4rem;
  }

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

  .how-it-works .route {
    margin-top: 2.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted-fg, #5a6b7a);
  }

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

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

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

.value-points {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }
  .value-points .inner {
    max-width: 760px;
    margin: 0 auto;
  }
  .value-points h2 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1.2rem;
  }
  .value-points p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1rem;
  }
  .value-points .benefits {
    margin: 2rem 0 0;
    border-top: 1px solid var(--muted-bg);
  }
  .value-points .benefit {
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--muted-bg);
  }
  .value-points .benefit h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.4rem;
  }
  .value-points .benefit p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
  }
  .value-points .route {
    font-size: 0.9rem;
    margin-top: 1.5rem;
    color: var(--muted-fg);
  }
  .value-points .route a {
    color: var(--brand-primary-bg);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .value-points .route a:hover {
    color: var(--brand-primary-hover);
  }

.second-hero-block {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4.5rem 1.25rem 3.5rem;
    }
    .second-hero-block .inner {
      max-width: 46rem;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2rem;
      font-weight: 600;
      line-height: 1.25;
      margin: 0 0 1rem;
      letter-spacing: -0.01em;
    }
    .second-hero-block p {
      font-size: 1.125rem;
      line-height: 1.6;
      margin: 0;
      max-width: 40rem;
    }
    @media (min-width: 640px) {
      .second-hero-block {
        padding-top: 5.5rem;
      }
      .second-hero-block h1 {
        font-size: 2.5rem;
      }
    }

.next-step {
            background: var(--gradient-accent-bg);
            color: var(--gradient-accent-fg);
            padding: 3.5rem 1.25rem;
        }
        .next-step .inner {
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
        }
        .next-step h2 {
            font-size: 1.75rem;
            font-weight: 600;
            line-height: 1.3;
            margin: 0 0 1rem;
        }
        .next-step p {
            font-size: 1.0625rem;
            line-height: 1.65;
            margin: 0 0 1.75rem;
            opacity: 0.92;
        }
        .next-step .action {
            display: inline-block;
            background: var(--accent-bg);
            color: var(--accent-fg);
            padding: 0.8rem 1.75rem;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.2s ease;
        }
        .next-step .action:hover {
            background: var(--accent-hover);
        }
        .next-step .route {
            font-size: 0.9375rem;
            margin-top: 1.5rem;
            margin-bottom: 0;
            opacity: 0.85;
        }
        .next-step .route a {
            color: inherit;
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .next-step .route a:hover {
            text-decoration-thickness: 2px;
        }

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

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

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

  .value-points h2 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1rem;
    max-width: 560px;
  }

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

  .value-points .benefit-list {
    border-top: 1px solid var(--card-border);
  }

  .value-points .benefit-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--card-border);
  }

  .value-points .benefit-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    max-width: 480px;
  }

  .value-points .benefit-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 620px;
  }

  .value-points .closing-note {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 2rem 0 0;
    max-width: 600px;
  }

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

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

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

.second-hero-block {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 5rem 1.5rem 4rem;
  }

  .second-hero-block .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .second-hero-block h1 {
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 1.25rem;
    letter-spacing: -0.01em;
  }

  .second-hero-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    max-width: 60ch;
  }

  @media (min-width: 640px) {
    .second-hero-block {
      padding: 6rem 2rem 4.5rem;
    }

    .second-hero-block h1 {
      font-size: 2.4rem;
    }
  }

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

    .timeline .inner {
      max-width: 860px;
      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: 1.05rem;
      line-height: 1.6;
      margin: 0 0 3rem;
      max-width: 640px;
    }

    .timeline .entry {
      display: flex;
      gap: 2.5rem;
      padding: 1.75rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .timeline .entry:first-of-type {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .timeline .period {
      flex: 0 0 220px;
    }

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

    .timeline .date {
      font-size: 0.9rem;
      margin: 0;
      opacity: 0.75;
    }

    .timeline .detail {
      flex: 1;
    }

    .timeline .title {
      font-size: 1.05rem;
      font-weight: 600;
      margin: 0 0 0.5rem;
    }

    .timeline .detail p:last-child {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      opacity: 0.85;
    }

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

      .timeline .period {
        flex: none;
      }
    }

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

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

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

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

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

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

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

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

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

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

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

    .how-it-works .steps {
      display: block;
      border-top: 1px solid var(--card-border);
    }

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

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

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

    .how-it-works .footnote {
      margin: 2rem 0 0 0;
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--muted-fg);
      border-left: 3px solid var(--primary-bg);
      padding-left: 1rem;
    }

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

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

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

      .how-it-works h2 {
        font-size: 1.6rem;
      }

      .how-it-works .lead {
        font-size: 1rem;
      }

      .how-it-works .step h3 {
        font-size: 1.05rem;
      }
    }

.second-hero-block {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 72px 24px 64px;
  }

  .second-hero-block .inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .second-hero-block h1 {
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 600;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
  }

  .second-hero-block p {
    font-size: 1.0625rem;
    line-height: 1.65;
    margin: 0;
    color: var(--muted-fg);
  }

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

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

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

  .support p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin: 0 0 2rem;
    color: var(--muted-fg, #5a6b7a);
  }

  .support .route {
    border-top: 1px solid var(--card-border, #e2e8e6);
    padding-top: 1.5rem;
  }

  .support .route a {
    display: inline-block;
    background: var(--primary-bg, #3a7d6f);
    color: var(--primary-fg, #ffffff);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s ease;
  }

  .support .route a:hover {
    background: var(--primary-hover, #2f6b5f);
  }

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

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

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

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

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

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

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

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

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

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

  .second-hero-block .inner {
    max-width: 46rem;
    margin: 0 auto;
  }

  .second-hero-block h1 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
  }

  .second-hero-block p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
    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;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 0.75rem;
  }

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

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

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

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

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

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

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

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

.recommendations {
  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: 760px;
      margin: 0 auto;
    }
    .capabilities h2 {
      font-size: 1.9rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 1.5rem;
      letter-spacing: -0.01em;
    }
    .capabilities p {
      font-size: 1.05rem;
      line-height: 1.7;
      margin: 0 0 1.4rem;
      color: var(--page-fg);
    }
    .capabilities p:last-of-type {
      margin-bottom: 2.2rem;
    }
    .capabilities .route {
      display: flex;
      flex-wrap: wrap;
      gap: 1.8rem;
      margin-top: 0.5rem;
      padding-top: 0.25rem;
    }
    .capabilities .route a {
      color: var(--brand-primary-bg);
      font-weight: 500;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.15s ease;
      font-size: 1rem;
    }
    .capabilities .route a:hover {
      border-bottom-color: var(--brand-primary-bg);
    }
    @media (max-width: 480px) {
      .capabilities .route {
        flex-direction: column;
        gap: 0.8rem;
      }
    }

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

.value-points {
    background: linear-gradient(135deg, #f0f5f3 0%, #e8f4f1 100%);
    color: #2c3e50;
    padding: 4.5rem 1.25rem;
  }

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

  .value-points h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 600;
    margin: 0 0 1rem 0;
    max-width: 34rem;
  }

  .value-points .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 2.75rem 0;
    max-width: 36rem;
  }

  .value-points .entry {
    border-top: 1px solid #d0e9e3;
    padding: 1.75rem 0 1.75rem 2rem;
    margin-left: 1rem;
  }

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

  .value-points .entry p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    max-width: 34rem;
  }

  .value-points .note {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 2.5rem 0 0 0;
    padding-left: 2rem;
    margin-left: 1rem;
    border-left: 3px solid #3a7d6f;
    max-width: 34rem;
  }

  .value-points .note a {
    color: #2f6b5f;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .value-points .note a:hover {
    color: #1a3a33;
  }

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

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

    .value-points .entry {
      padding-left: 1rem;
      margin-left: 0;
    }

    .value-points .note {
      padding-left: 1rem;
      margin-left: 0;
    }
  }

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

.second-hero-block {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 5rem 1.5rem;
    }
    .second-hero-block .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2.25rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 1.25rem;
      letter-spacing: -0.01em;
    }
    .second-hero-block p {
      font-size: 1.125rem;
      line-height: 1.7;
      margin: 0;
      max-width: 42rem;
    }
    @media (max-width: 640px) {
      .second-hero-block {
        padding: 3.5rem 1.25rem;
      }
      .second-hero-block h1 {
        font-size: 1.75rem;
      }
      .second-hero-block p {
        font-size: 1rem;
      }
    }

.second-hero-block {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

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

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

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

        .clarifications > .inner > p {
            font-size: 1.05rem;
            line-height: 1.6;
            margin: 0 0 2.5rem 0;
            color: var(--muted-fg, #5a6b7a);
        }

        .clarifications .note {
            margin: 0 0 2rem 0;
            padding: 0 0 0 1.25rem;
            border-left: 3px solid var(--primary-bg, #3a7d6f);
        }

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

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

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

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

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

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

  .feedback .note {
    margin: 0 0 2.2rem;
    padding-left: 1.25rem;
    border-left: 2px solid var(--brand-primary-bg, #3a7d6f);
  }

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

  .feedback .note-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.4rem;
    color: var(--brand-primary-bg, #3a7d6f);
  }

  .feedback .note p:last-child {
    margin: 0;
    line-height: 1.65;
    font-size: 0.98rem;
  }

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

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

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

    .plans-overview .intro {
      max-width: 720px;
      margin-bottom: 3rem;
    }

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

    .plans-overview .intro p {
      font-size: 1.05rem;
      line-height: 1.65;
      margin: 0;
      color: var(--muted-fg);
    }

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

    .plans-overview .option {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 10px;
      padding: 1.8rem 2rem;
      margin-bottom: 1.2rem;
    }

    .plans-overview .option h3 {
      font-size: 1.25rem;
      margin: 0 0 0.8rem;
      font-weight: 600;
    }

    .plans-overview .option p {
      font-size: 0.98rem;
      line-height: 1.6;
      margin: 0 0 0.8rem;
    }

    .plans-overview .option .note {
      font-size: 0.9rem;
      color: var(--muted-fg);
      background: var(--muted-bg);
      border-radius: 6px;
      padding: 0.8rem 1rem;
      margin: 1rem 0 1.2rem;
      line-height: 1.5;
    }

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

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

    @media (min-width: 768px) {
      .plans-overview .option {
        padding: 2rem 2.4rem;
      }
    }

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

.second-hero-block {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4.5rem 1.25rem 3.5rem;
    }
    .second-hero-block .inner {
      max-width: 760px;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2rem;
      font-weight: 600;
      line-height: 1.25;
      margin: 0 0 1rem 0;
      letter-spacing: -0.01em;
    }
    .second-hero-block p {
      font-size: 1.0625rem;
      line-height: 1.65;
      margin: 0;
      max-width: 640px;
      color: var(--muted-fg);
    }
    @media (min-width: 640px) {
      .second-hero-block {
        padding: 5.5rem 2rem 4rem;
      }
      .second-hero-block h1 {
        font-size: 2.5rem;
      }
      .second-hero-block p {
        font-size: 1.125rem;
      }
    }

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

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

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

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

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

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

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

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

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

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

    .feedback .entries {
      margin-top: 2.25rem;
      border-top: 1px solid var(--muted-bg);
    }

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

    .feedback .quote {
      font-size: 1.05rem;
      line-height: 1.55;
      margin: 0 0 0.75rem;
      font-style: italic;
    }

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

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

.second-hero-block {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 5rem 1.5rem 4rem;
    }
    .second-hero-block .inner {
      max-width: 46rem;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2.4rem;
      line-height: 1.2;
      font-weight: 600;
      margin: 0 0 1.25rem;
      letter-spacing: -0.01em;
    }
    .second-hero-block p {
      font-size: 1.1rem;
      line-height: 1.7;
      margin: 0;
      max-width: 40rem;
    }
    @media (max-width: 640px) {
      .second-hero-block {
        padding: 3.5rem 1.25rem 2.75rem;
      }
      .second-hero-block h1 {
        font-size: 1.9rem;
      }
    }

.clarifications {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3.5rem 1.25rem;
    }
    .clarifications .inner {
      max-width: 46rem;
      margin: 0 auto;
      background: var(--card-bg);
      color: var(--card-fg);
      border: 1px solid var(--card-border);
      border-radius: 12px;
      padding: 2rem 2.25rem;
    }
    .clarifications h2 {
      font-size: 1.5rem;
      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;
    }
    .clarifications p:last-child {
      margin-bottom: 0;
    }

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

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

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

    .social-proof .lead {
      font-size: 1.05rem;
      line-height: 1.65;
      color: var(--muted-fg, #5a6b7a);
      margin: 0 0 2.75rem;
    }

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

    .social-proof .review {
      border-left: 2px solid var(--primary-bg, #3a7d6f);
      padding-left: 1.5rem;
    }

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

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

    @media (max-width: 600px) {
      .social-proof {
        padding: 3rem 1.1rem;
      }

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

      .social-proof .lead {
        font-size: 1rem;
      }

      .social-proof .review {
        padding-left: 1.1rem;
      }
    }

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

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

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

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

  .recommendations .intro {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2rem;
    opacity: 0.85;
  }

  .recommendations .route {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .recommendations .entry {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

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

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

  .recommendations .entry h3 a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .recommendations .entry p {
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
  }

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

  .second-hero-block .inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .second-hero-block h1 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 600;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
  }

  .second-hero-block p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    max-width: 640px;
  }

  @media (min-width: 640px) {
    .second-hero-block {
      padding: 96px 32px 80px;
    }

    .second-hero-block h1 {
      font-size: 40px;
    }

    .second-hero-block p {
      font-size: 18px;
    }
  }

.social-proof {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 4rem 1.5rem;
    }
    .social-proof .inner {
        max-width: 760px;
        margin: 0 auto;
    }
    .social-proof h2 {
        font-size: 1.6rem;
        font-weight: 600;
        line-height: 1.3;
        margin: 0 0 1rem;
    }
    .social-proof .lead {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--muted-fg);
        margin: 0 0 2.5rem;
    }
    .social-proof .quotes {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .social-proof .quote {
        border-left: 3px solid var(--primary-bg);
        padding: 0 0 0 1.25rem;
        margin-bottom: 2rem;
    }
    .social-proof .quote:last-child {
        margin-bottom: 0;
    }
    .social-proof .quote-text {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 0 0.5rem;
    }
    .social-proof .quote-meta {
        font-size: 0.875rem;
        color: var(--muted-fg);
        margin: 0;
    }

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

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

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

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

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

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

  .next-step .note {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 1.75rem 0 0;
    max-width: 52ch;
    border-top: 1px solid var(--card-border);
    padding-top: 1.25rem;
  }

.second-hero-block {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 4.5rem 1.5rem;
  }

  .second-hero-block .inner {
    max-width: 48rem;
    margin: 0 auto;
  }

  .second-hero-block h1 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 1.25rem 0;
    letter-spacing: -0.01em;
  }

  .second-hero-block p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 42rem;
  }

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

    .second-hero-block h1 {
      font-size: 2.5rem;
    }
  }

.clarifications {
    background: var(--inverse-bg);
    color: var(--inverse-fg);
    padding: 4rem 1.5rem;
  }
  .clarifications .inner {
    max-width: 960px;
    margin: 0 auto;
  }
  .clarifications h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 1rem;
  }
  .clarifications > .inner > p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
    max-width: 640px;
  }
  .clarifications .notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 3rem;
    margin-bottom: 2.5rem;
  }
  .clarifications .note h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
  }
  .clarifications .note p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
  }
  .clarifications a {
    color: var(--accent-bg);
    font-size: 0.95rem;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .clarifications a:hover {
    color: var(--accent-hover);
  }
  @media (max-width: 640px) {
    .clarifications .notes {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .clarifications {
      padding: 3rem 1.25rem;
    }
  }

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

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

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

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

  .plans-overview .intro p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
  }

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

  .plans-overview .option {
    border-top: 1px solid var(--card-bg, #e2e8e6);
    padding: 2rem 0;
  }

  .plans-overview .option:last-child {
    border-bottom: 1px solid var(--card-bg, #e2e8e6);
  }

  .plans-overview .option h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
  }

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

  .plans-overview .option .note {
    font-size: 0.9rem;
    color: var(--muted-fg, #5a6b7a);
    margin-bottom: 1.25rem;
  }

  .plans-overview .select {
    display: inline-block;
    background: var(--primary-bg, #3a7d6f);
    color: var(--primary-fg, #ffffff);
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
  }

  .plans-overview .select:hover {
    background: var(--primary-hover, #2f6b5f);
  }

  @media (min-width: 700px) {
    .plans-overview .option {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 3rem;
      align-items: start;
    }

    .plans-overview .option h3 {
      grid-column: 1;
      margin-bottom: 0.5rem;
    }

    .plans-overview .option p {
      grid-column: 1;
    }

    .plans-overview .option .note {
      grid-column: 2;
      grid-row: 1 / span 3;
      margin-top: 0.25rem;
    }

    .plans-overview .select {
      grid-column: 1;
      justify-self: start;
    }
  }

.blog-item {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 3.5rem 1.25rem;
  }
  
  .blog-item .inner {
    max-width: 720px;
    margin: 0 auto;
  }
  
  .blog-item .date {
    font-size: 0.85rem;
    color: var(--muted-fg);
    margin: 0 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  
  .blog-item h1 {
    font-size: 2rem;
    line-height: 1.25;
    margin: 0 0 1.25rem;
    font-weight: 600;
  }
  
  .blog-item .lead {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0 0 2rem;
    color: var(--muted-fg);
  }
  
  .blog-item .body p {
    line-height: 1.7;
    margin: 0 0 1.25rem;
    font-size: 1rem;
  }
  
  .blog-item .note {
    background: var(--accent-bg);
    color: var(--accent-fg);
    padding: 1rem 1.25rem;
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 2rem 0 1.5rem;
  }
  
  .blog-item .route {
    font-size: 0.9rem;
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--card-border);
  }
  
  .blog-item .route a {
    color: var(--primary-bg);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  
  .blog-item .route a:hover {
    color: var(--brand-primary-hover);
  }

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

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

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

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

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

    .blog-item .lead {
      font-size: 1.1rem;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 0 0 2.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--card-border, #e2e8e6);
    }

    .blog-item .body p {
      font-size: 1rem;
      line-height: 1.75;
      margin: 0 0 1.5rem;
    }

    .blog-item .closing {
      padding-top: 0.5rem;
      font-style: normal;
    }

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

    .blog-item .route a {
      color: var(--primary-bg);
      text-decoration: none;
      margin-right: 1rem;
    }

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

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

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

    .blog-item .entry-head {
      margin-bottom: 2rem;
    }

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

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

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

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

    .blog-item .read-next {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
    }

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

    .blog-item .read-next a:hover {
      color: var(--primary-hover);
    }

.second-hero-block {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem 3rem;
    }
    .second-hero-block .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2.2rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 1rem;
      letter-spacing: -0.01em;
    }
    .second-hero-block p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin: 0;
      max-width: 60ch;
      color: var(--muted-fg, #5a6b7a);
    }
    @media (max-width: 640px) {
      .second-hero-block {
        padding: 2.5rem 1.25rem 2rem;
      }
      .second-hero-block h1 {
        font-size: 1.8rem;
      }
    }

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

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

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

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

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

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

  .form textarea,
  .form input[type="email"] {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--card-border, #e2e8e6);
    border-radius: 6px;
    background: var(--card-bg);
    color: var(--card-fg);
    font-size: 1rem;
    
    box-sizing: border-box;
  }

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

  .form textarea::placeholder,
  .form input::placeholder {
    color: var(--muted-fg);
  }

  .form button {
    background: var(--primary-bg);
    color: var(--primary-fg);
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
  }

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

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

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

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

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

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

  .stay-in-touch form {
    margin: 0 0 1rem;
  }

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

  .stay-in-touch .row {
    display: flex;
    gap: 0.6rem;
    align-items: stretch;
  }

  .stay-in-touch input[type="email"] {
    flex: 1;
    min-width: 0;
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
    color: var(--page-fg);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 6px;
  }

  .stay-in-touch input[type="email"]:focus {
    outline: 2px solid var(--primary-bg);
    outline-offset: 1px;
    border-color: transparent;
  }

  .stay-in-touch button {
    padding: 0.65rem 1.1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-fg);
    background: var(--primary-bg);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
  }

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

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

  @media (max-width: 480px) {
    .stay-in-touch .row {
      flex-direction: column;
    }

    .stay-in-touch button {
      width: 100%;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .policy-items .divider {
      border-top: 1px solid var(--card-border, #e2e8e6);
      margin: 2rem 0;
    }

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

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

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

    .policy-items a {
      color: var(--primary-bg, #3a7d6f);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .policy-items a:hover {
      color: var(--primary-hover, #2f6b5f);
    }

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

      .policy-items h1 {
        font-size: 1.6rem;
      }

      .policy-items .divider {
        margin: 1.5rem 0;
      }
    }

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

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

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

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

    .terms-items .lead {
      font-size: 1.05rem;
      line-height: 1.7;
      margin: 0 0 3rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--card-border, #e2e8e6);
    }

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

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

    .terms-items .note {
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--card-border, #e2e8e6);
      font-size: 0.9rem;
      line-height: 1.6;
    }

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

.second-hero-block {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 72px 24px;
    }
    .second-hero-block .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2.2rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 16px 0;
      letter-spacing: -0.01em;
    }
    .second-hero-block p {
      font-size: 1.1rem;
      line-height: 1.65;
      margin: 0;
      max-width: 560px;
    }
    @media (max-width: 600px) {
      .second-hero-block {
        padding: 48px 20px;
      }
      .second-hero-block h1 {
        font-size: 1.7rem;
      }
      .second-hero-block p {
        font-size: 1rem;
      }
    }

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

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

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

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

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

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

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

  .next-step .more {
    color: var(--primary-bg);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    font-size: 1rem;
    line-height: 1.4;
  }

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

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

.thank {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4.5rem 1.25rem 5rem;
    }
    .thank .inner {
      max-width: 44rem;
      margin: 0 auto;
    }
    .thank h1 {
      font-size: 2rem;
      line-height: 1.25;
      margin: 0 0 1.25rem;
      font-weight: 600;
    }
    .thank h2 {
      font-size: 1.15rem;
      line-height: 1.4;
      margin: 0 0 0.75rem;
      font-weight: 600;
    }
    .thank p {
      font-size: 1rem;
      line-height: 1.65;
      margin: 0 0 1rem;
    }
    .thank .lead {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 0.75rem;
    }
    .thank .note {
      color: var(--muted-fg);
      font-size: 0.95rem;
      margin-bottom: 2.5rem;
    }
    .thank .next,
    .thank .direct {
      border-top: 1px solid var(--card-border);
      padding-top: 1.75rem;
      margin-top: 1.75rem;
    }
    .thank .route {
      margin-top: 0.5rem;
    }
    .thank a {
      color: var(--primary-bg);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .thank a:hover {
      color: var(--primary-hover);
    }
    @media (max-width: 640px) {
      .thank {
        padding: 3rem 1.25rem 3.5rem;
      }
      .thank h1 {
        font-size: 1.6rem;
      }
    }

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

.404 {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 5rem 1.5rem;
  }
  .404 .inner {
    max-width: 640px;
    margin: 0 auto;
  }
  .404 .code {
    color: var(--primary-bg);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 1rem;
  }
  .404 h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 1.25rem;
    font-weight: 600;
  }
  .404 p {
    line-height: 1.6;
    margin: 0 0 1rem;
    color: var(--muted-fg);
  }
  .404 .route {
    border-top: 1px solid var(--card-border);
    margin-top: 2rem;
    padding-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .404 .route a {
    color: var(--primary-bg);
    text-decoration: none;
    font-weight: 600;
  }
  .404 .route a:hover {
    text-decoration: underline;
  }

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