:root {
  --font-family: "Libre Baskerville", sans-serif;
  --font-size-base: 19px;
  --line-height-base: 1.8;

  --max-w: 1660px;
  --space-x: 2.05rem;
  --space-y: 1.5rem;
  --gap: 2.51rem;
  --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.19rem;
  --radius-lg: 0.77rem;
  --radius-md: 0.44rem;
  --radius-sm: 0.29rem;

  --shadow-sm: 0 1px 7px rgba(0,0,0,0.13);
  --shadow-md: 0 8px 16px rgba(0,0,0,0.16);
  --shadow-lg: 0 26px 38px rgba(0,0,0,0.2);

  --overlay: rgba(15, 23, 42, 0.7);
  --anim-duration: 510ms;
  --anim-ease: ease;
  --random-number: 1;

  --brand: #0EA5E9;
  --brand-contrast: #FFFFFF;
  --accent: #6366F1;
  --accent-contrast: #FFFFFF;

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

  --page-bg: #F8FAFC;
  --page-fg: #0F172A;
  --muted-bg: #E2E8F0;
  --muted-fg: #334155;
  --card-bg: #FFFFFF;
  --card-fg: #1E293B;
  --card-border: #E2E8F0;
  --inverse-bg: #0F172A;
  --inverse-fg: #F8FAFC;
  --primary-bg: #0EA5E9;
  --primary-fg: #FFFFFF;
  --primary-hover: #0284C7;
  --accent-bg: #6366F1;
  --accent-fg: #FFFFFF;
  --accent-hover: #4F46E5;
  --gradient-hero-bg: linear-gradient(135deg, #0F172A 0%, #1E3A5F 100%);
  --gradient-hero-fg: #F8FAFC;
  --gradient-accent-bg: linear-gradient(135deg, #0EA5E9 0%, #6366F1 100%);
  --gradient-accent-fg: #FFFFFF;

  --ring: #0EA5E9;

  --link: #0EA5E9;
  --link-hover: #6366F1;

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

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-block);
  }

  .brand {
    text-decoration: none;
    color: var(--page-fg);
    display: inline-flex;
    align-items: center;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .brand-name {
    font-size: var(--font-size-h2);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

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

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

  .nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--page-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);
  }

  .site-nav {
    width: 100%;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
  }

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

  .nav-link {
    display: inline-block;
    padding: 0.5rem 0.25rem;
    font-size: var(--font-size-md);
    font-weight: 500;
    color: var(--page-fg);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    color: var(--link-hover);
    border-bottom-color: var(--link-hover);
    outline: none;
  }

  @media (max-width: 767px) {
    .header-inner {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      padding: var(--space-y) var(--space-x);
      gap: var(--space-x);
    }

    .brand-name {
      font-size: var(--font-size-h3);
    }

    .nav-toggle {
      display: flex;
    }

    .site-nav {
      display: none;
      width: 100%;
    }

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

    .nav-list {
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      padding-top: var(--space-block);
      border-top: 1px solid var(--card-border);
      margin-top: var(--space-block);
    }

    .nav-item {
      width: 100%;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 0;
      font-size: var(--font-size-lg);
      border-bottom: none;
      border-left: 3px solid transparent;
      padding-left: 0.5rem;
    }

    .nav-link:hover,
    .nav-link:focus-visible {
      border-bottom: none;
      border-left-color: var(--link-hover);
    }
  }

.site-footer{padding:var(--space-section-y) var(--space-section-x);font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);background:var(--inverse-bg);color:var(--inverse-fg);}.footer-container{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:1.2fr 1.5fr 1.2fr;gap:var(--space-x);align-items:start}.footer-column{display:flex;flex-direction:column;gap:var(--space-y)}.footer-logo{font-size:var(--font-size-h2);font-weight:700;color:inherit;text-decoration:none;letter-spacing:-0.02em}.footer-logo:hover{color:inherit;opacity:0.9}.footer-tagline{font-size:var(--font-size-sm);color:inherit;opacity:0.8;max-width:28rem}.footer-heading{font-size:var(--font-size-md);font-weight:600;color:inherit;margin:0 0 var(--space-y);text-transform:uppercase;letter-spacing:0.05em}.footer-links{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:repeat(2, 1fr);gap:var(--space-y) var(--space-x)}.footer-links a{color:inherit;text-decoration:none;font-size:var(--font-size-sm);transition:opacity var(--anim-duration) var(--anim-ease)}.footer-links a:hover{opacity:0.8;text-decoration:underline;text-underline-offset:0.2em;color:inherit}.footer-legal-links{display:flex;gap:var(--space-x);margin-top:var(--space-y);padding-top:var(--space-y);border-top:1px solid rgba(255, 255, 255, 0.2)}.footer-legal-links a{color:inherit;text-decoration:none;font-size:var(--font-size-sm);opacity:0.9}.footer-legal-links a:hover{opacity:0.7;text-decoration:underline;text-underline-offset:0.2em;color:inherit}.footer-contact-info{display:flex;flex-direction:column;gap:var(--space-y);font-size:var(--font-size-sm)}.footer-contact-info a{color:inherit;text-decoration:none;transition:opacity var(--anim-duration) var(--anim-ease)}.footer-contact-info a:hover{opacity:0.8;text-decoration:underline;text-underline-offset:0.2em;color:inherit}.footer-address{color:inherit;opacity:0.9}.footer-disclaimer{font-size:var(--font-size-sm);color:inherit;opacity:0.7;line-height:1.6;margin-top:var(--space-y);padding-top:var(--space-y);border-top:1px solid rgba(255, 255, 255, 0.2)}.footer-bottom{max-width:var(--max-w);margin:var(--space-x) auto 0;padding-top:var(--space-y);border-top:1px solid rgba(255, 255, 255, 0.2);text-align:center}.footer-bottom p{font-size:var(--font-size-sm);color:inherit;opacity:0.8;margin:0}

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

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

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

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

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

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

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

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

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

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

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

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

  .intro-focus .inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: start;
  }

  .intro-focus h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin: 0 0 20px;
    max-width: 640px;
  }

  .intro-focus .intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 0 0 28px;
    max-width: 560px;
  }

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

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

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

  .intro-focus .side-link {
    color: var(--brand-primary);
    text-decoration: none;
    font-size: 0.92rem;
    border-bottom: 1px solid transparent;
    padding: 4px 0;
  }

  .intro-focus .side-link:hover {
    border-bottom-color: var(--brand-primary);
  }

  .intro-focus .note {
    background: var(--card-bg);
    color: var(--card-fg);
    border-left: 3px solid var(--brand-primary);
    padding: 24px 26px;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .intro-focus .note p {
    margin: 0 0 14px;
  }

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

  @media (max-width: 800px) {
    .intro-focus .inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }

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

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

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

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

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

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

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

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

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

  .plans-overview .choice:first-child {
    border-top: 1px solid var(--muted-bg);
  }

  .plans-overview .choice h3 {
    font-size: 1.15rem;
    line-height: 1.4;
    margin: 0 0 0.6rem;
    font-weight: 600;
  }

  .plans-overview .choice p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 0.8rem;
    max-width: 720px;
  }

  .plans-overview .choice a {
    color: var(--primary-bg);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
  }

  .plans-overview .choice a:hover {
    text-decoration: underline;
  }

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

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

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

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

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

  .recommendations .intro {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 2.2rem;
    color: var(--muted-fg, #334155);
  }

  .recommendations .route {
    border-top: 1px solid var(--muted-bg, #E2E8F0);
    padding: 1.1rem 0;
  }

  .recommendations .route:last-child {
    border-bottom: 1px solid var(--muted-bg, #E2E8F0);
  }

  .recommendations .route a {
    color: var(--primary-bg, #0EA5E9);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
    display: inline-block;
  }

  .recommendations .route a:hover {
    text-decoration: underline;
    color: var(--primary-hover, #0284C7);
  }

  .recommendations .route p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0.4rem 0 0;
    color: var(--muted-fg, #334155);
  }

.recommendations {
  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;
    }

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

    .second-hero-block h1 {
        font-size: 2.25rem;
        line-height: 1.2;
        margin: 0 0 1.25rem;
        font-weight: 400;
    }

    .second-hero-block p {
        font-size: 1.125rem;
        line-height: 1.65;
        margin: 0;
        opacity: 0.85;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .partners .list {
        list-style: none;
        margin: 0;
        padding: 0;
        border-top: 1px solid rgba(248, 250, 252, 0.2);
    }

    .partners .item {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(248, 250, 252, 0.2);
    }

    .partners .name {
        font-weight: 600;
        font-size: 1rem;
        white-space: nowrap;
    }

    .partners .meta {
        font-size: 0.875rem;
        opacity: 0.7;
        text-align: right;
    }

    @media (max-width: 600px) {
        .partners .item {
            flex-direction: column;
            gap: 0.25rem;
        }

        .partners .meta {
            text-align: left;
        }
    }

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

.identity {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 96px 0 88px;
  }

  .identity .inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .identity__kicker {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-primary-bg, #0EA5E9);
    margin: 0 0 20px;
  }

  .identity h1 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;
    margin: 0 0 28px;
    letter-spacing: -0.01em;
  }

  .identity__lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--page-fg);
    margin: 0 0 20px;
  }

  .identity__note {
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted-fg, #334155);
    margin: 0;
    padding-left: 20px;
    border-left: 2px solid var(--brand-primary-bg, #0EA5E9);
  }

  @media (max-width: 640px) {
    .identity {
      padding: 64px 0 56px;
    }

    .identity h1 {
      font-size: 30px;
    }

    .identity__lead {
      font-size: 16px;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

    .plans-overview .intro {
      font-size: 1.05rem;
      line-height: 1.7;
      margin: 0 0 3rem;
      max-width: 720px;
    }

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

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

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

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

    .plans-overview .option p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0 0 0.75rem;
      max-width: 720px;
    }

    .plans-overview .option p:last-of-type {
      margin-bottom: 1.25rem;
    }

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

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

    .plans-overview .note {
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 2.5rem 0 0;
      max-width: 720px;
    }

    .plans-overview .note a {
      color: var(--primary-bg);
      text-decoration: none;
      border-bottom: 1px solid var(--primary-bg);
    }

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

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

.clarifications {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 4rem 1.5rem;
    }
    .clarifications .inner {
        max-width: 760px;
        margin: 0 auto;
    }
    .clarifications h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin: 0 0 1rem;
        font-weight: 600;
    }
    .clarifications .intro {
        font-size: 1.05rem;
        line-height: 1.6;
        margin: 0 0 2.5rem;
        color: var(--page-fg);
        opacity: 0.85;
    }
    .clarifications .note {
        margin: 0 0 2rem;
        padding-left: 1.25rem;
        border-left: 2px solid var(--primary-bg);
    }
    .clarifications .note h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0 0 0.5rem;
        color: var(--page-fg);
    }
    .clarifications .note p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
        color: var(--page-fg);
        opacity: 0.85;
    }

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

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

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

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

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

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

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

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

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

  .second-hero-block h1 {
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 600;
    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: 42rem;
  }

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

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

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

.why-choose {
        background: var(--gradient-hero-bg);
        color: var(--gradient-hero-fg);
        padding: 5rem 1.5rem;
    }
    .why-choose .inner {
        max-width: 860px;
        margin: 0 auto;
    }
    .why-choose h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin: 0 0 1.5rem;
        font-weight: 700;
        letter-spacing: -0.01em;
    }
    .why-choose .lead {
        font-size: 1.15rem;
        line-height: 1.7;
        margin: 0 0 1.25rem;
        color: var(--gradient-hero-fg);
        opacity: 0.92;
    }
    .why-choose p {
        line-height: 1.7;
        margin: 0 0 1.25rem;
        font-size: 1rem;
        color: var(--gradient-hero-fg);
        opacity: 0.85;
    }
    .why-choose .note {
        border-left: 3px solid var(--primary-bg);
        padding-left: 1.25rem;
        margin: 2rem 0 2.5rem;
        opacity: 1;
        font-size: 1.05rem;
    }
    .why-choose .route {
        margin: 0;
        font-size: 0.95rem;
        opacity: 1;
    }
    .why-choose .route a {
        color: var(--primary-bg);
        text-decoration: none;
        border-bottom: 1px solid rgba(14, 165, 233, 0.4);
        padding-bottom: 2px;
        transition: border-color 0.2s ease;
    }
    .why-choose .route a:hover {
        border-bottom-color: var(--primary-bg);
    }

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

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

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

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

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

  .social-proof .quote-list {
    border-top: 1px solid var(--muted-bg, #E2E8F0);
  }

  .social-proof .quote-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--muted-bg, #E2E8F0);
  }

  .social-proof .quote-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 0.75rem 0;
  }

  .social-proof .quote-meta {
    font-size: 0.8rem;
    color: var(--muted-fg, #334155);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

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

.recommendations {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }
  .recommendations .inner {
    max-width: 720px;
    margin: 0 auto;
  }
  .recommendations h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 0 0 1.25rem;
    font-weight: 600;
  }
  .recommendations .intro {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
    color: var(--muted-fg);
  }
  .recommendations .entries {
    border-top: 1px solid var(--muted-bg);
  }
  .recommendations .entry {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--muted-bg);
  }
  .recommendations .entry h3 {
    font-size: 1.15rem;
    line-height: 1.4;
    margin: 0 0 0.5rem;
    font-weight: 600;
  }
  .recommendations .entry h3 a {
    color: var(--page-fg);
    text-decoration: none;
  }
  .recommendations .entry h3 a:hover {
    color: var(--primary-bg);
  }
  .recommendations .entry p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
    color: var(--muted-fg);
  }
  .recommendations .closing {
    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);
}

.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: 400;
            margin: 0 0 1.5rem;
            letter-spacing: -0.01em;
        }
        .second-hero-block .lead {
            font-size: 1.1rem;
            line-height: 1.7;
            margin: 0 0 2rem;
            opacity: 0.92;
        }
        .second-hero-block .note {
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(248, 250, 252, 0.25);
            opacity: 0.75;
        }
        @media (min-width: 640px) {
            .second-hero-block {
                padding: 6rem 2rem 5rem;
            }
            .second-hero-block h1 {
                font-size: 3rem;
            }
            .second-hero-block .lead {
                font-size: 1.2rem;
            }
        }

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

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

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

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

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

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

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

  .support .channel p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
    color: var(--muted-fg, #334155);
  }

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

  .support .note {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 2rem 0 0;
    color: var(--muted-fg, #334155);
  }

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

  .support .route a {
    color: var(--primary-bg, #0EA5E9);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease;
  }

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

.support {
  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: 1100px;
    margin: 0 auto;
  }
  .how-it-works .intro {
    max-width: 720px;
    margin-bottom: 3rem;
  }
  .how-it-works h2 {
    font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 0.75rem;
    font-weight: 700;
  }
  .how-it-works .intro p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
  }
  .how-it-works .columns {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
  }
  .how-it-works .setup,
  .how-it-works .next {
    flex: 1;
  }
  .how-it-works h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--muted-bg);
  }
  .how-it-works .steps {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .how-it-works .step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.75rem;
  }
  .how-it-works .step-num {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-primary-bg);
    background: var(--muted-bg);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    height: fit-content;
    line-height: 1.4;
    white-space: nowrap;
  }
  .how-it-works .step-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.35rem;
  }
  .how-it-works .step-text p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
  }
  .how-it-works .note {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 2.5rem 0 0;
    padding: 1rem 1.25rem;
    background: var(--muted-bg);
    color: var(--muted-fg);
    border-radius: 6px;
  }
  .how-it-works .note a {
    color: var(--brand-primary-bg);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .how-it-works .note a:hover {
    color: var(--brand-primary-hover);
  }
  @media (max-width: 700px) {
    .how-it-works .columns {
      flex-direction: column;
      gap: 2rem;
    }
    .how-it-works h2 {
      font-size: 1.6rem;
    }
  }

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

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

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

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

  .next-step .intro {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 2rem;
    color: var(--muted-fg, #334155);
  }

  .next-step .action {
    display: inline-block;
    background: var(--primary-bg, #0EA5E9);
    color: var(--primary-fg, #FFFFFF);
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s ease;
  }

  .next-step .action:hover {
    background: var(--primary-hover, #0284C7);
  }

  .next-step .route {
    margin: 2rem 0 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted-fg, #334155);
  }

  .next-step .route a {
    color: var(--brand-primary, #0EA5E9);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .next-step .route a:hover {
    color: var(--brand-primary-hover, #0284C7);
  }

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

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

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

    .second-hero-block h1 {
        font-size: 2.25rem;
        line-height: 1.2;
        margin: 0 0 1.25rem 0;
        font-weight: 400;
    }

    .second-hero-block p {
        font-size: 1.125rem;
        line-height: 1.7;
        margin: 0;
        color: #CBD5E1;
    }

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

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

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

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

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

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

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

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

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

  .stay-in-touch .inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
  }

  .stay-in-touch .offer {
    flex: 1;
  }

  .stay-in-touch h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 0 0 1rem;
    font-weight: normal;
  }

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

  .stay-in-touch .offer a {
    color: var(--accent-bg);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .stay-in-touch .form {
    flex: 1;
    background: var(--card-bg);
    color: var(--card-fg);
    padding: 2rem;
    border-radius: 8px;
  }

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

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

  .stay-in-touch button {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--primary-bg);
    color: var(--primary-fg);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
  }

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

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

  @media (max-width: 700px) {
    .stay-in-touch .inner {
      flex-direction: column;
      gap: 2rem;
    }
  }

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

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

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

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

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

    .faq .question {
        border-top: 1px solid var(--card-border);
        padding: 1.5rem 0;
    }

    .faq .question:last-of-type {
        border-bottom: 1px solid var(--card-border);
    }

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

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

    .faq .route {
        margin-top: 2.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }

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

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

.second-hero-block {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 4.5rem 1.5rem 4rem;
    }
    .second-hero-block .inner {
      max-width: 46rem;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2.1rem;
      line-height: 1.2;
      margin: 0 0 1rem;
      font-weight: 600;
      letter-spacing: -0.01em;
    }
    .second-hero-block p {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0;
      max-width: 40rem;
      opacity: 0.9;
    }
    @media (min-width: 640px) {
      .second-hero-block {
        padding: 5.5rem 2rem 5rem;
      }
      .second-hero-block h1 {
        font-size: 2.6rem;
      }
      .second-hero-block p {
        font-size: 1.15rem;
      }
    }

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

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

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

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

  .next-step p:last-of-type {
    margin-bottom: 2.25rem;
  }

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

  .next-step .route a {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
  }

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

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

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

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

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

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

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

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

  .social-proof .notes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-top: 1px solid rgba(248, 250, 252, 0.15);
    padding-top: 2rem;
  }

  .social-proof .note {
    border-left: 3px solid var(--accent-bg);
    padding-left: 1.25rem;
  }

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

  .social-proof .note-meta {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.7;
  }

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

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

    .social-proof .notes {
      flex-direction: row;
      gap: 2.5rem;
    }

    .social-proof .note {
      flex: 1;
    }
  }

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

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

  .second-hero-block .inner {
    max-width: 760px;
    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.02em;
  }

  .second-hero-block .lead {
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0;
    max-width: 640px;
    opacity: 0.85;
  }

  @media (max-width: 640px) {
    .second-hero-block {
      padding: 4rem 1.25rem;
    }

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

    .second-hero-block .lead {
      font-size: 1.05rem;
    }
  }

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

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

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

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

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

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

  .contacts .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
  }

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

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

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

  @media (min-width: 600px) {
    .contacts .detail {
      flex-direction: row;
      justify-content: space-between;
      align-items: baseline;
    }

    .contacts .label {
      margin-bottom: 0;
      min-width: 140px;
    }
  }

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

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

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

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

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

    .faq .entries {
        margin: 0;
        padding: 0;
    }

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

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

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

    .faq dt {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

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

    .faq .route {
        margin: 2.5rem 0 0 0;
        font-size: 0.95rem;
        line-height: 1.6;
    }

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

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

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

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

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

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

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

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

  .clarifications .notes {
    list-style: none;
    margin: 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--muted-bg);
  }

  .clarifications .notes li {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--muted-bg);
    color: var(--muted-fg);
  }

  .clarifications .notes li:last-child {
    border-bottom: none;
  }

.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.1rem;
            line-height: 1.2;
            font-weight: 600;
            margin: 0 0 1.25rem;
            letter-spacing: -0.01em;
        }
        .second-hero-block .lead {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--muted-fg);
            margin: 0;
            max-width: 40rem;
        }
        @media (min-width: 640px) {
            .second-hero-block {
                padding: 6rem 2rem 4.5rem;
            }
            .second-hero-block h1 {
                font-size: 2.5rem;
            }
            .second-hero-block .lead {
                font-size: 1.1rem;
            }
        }

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

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

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

  .social-proof .lead {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
    max-width: 60ch;
  }

  .social-proof .quotes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

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

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

  .social-proof .quote footer {
    font-size: 0.85rem;
  }

  .social-proof .quote cite {
    font-style: normal;
    color: var(--muted-fg);
  }

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

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

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

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

  .feedback .note {
    background: var(--card-bg);
    border-left: 3px solid var(--brand-primary-bg);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
  }

  .feedback .note-text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 0.75rem;
  }

  .feedback .note-author {
    font-size: 0.875rem;
    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: 7rem 1.5rem 5rem;
    }
    .second-hero-block .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2.2rem;
      line-height: 1.25;
      font-weight: 600;
      letter-spacing: -0.01em;
      margin: 0 0 1.5rem;
    }
    .second-hero-block .lead {
      font-size: 1.05rem;
      line-height: 1.7;
      color: #CBD5E1;
      margin: 0;
      max-width: 60ch;
    }
    @media (min-width: 640px) {
      .second-hero-block {
        padding-top: 8rem;
      }
      .second-hero-block h1 {
        font-size: 2.6rem;
      }
    }

.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.2;
    margin: 0 0 1.5rem;
    font-weight: 600;
  }

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

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

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

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

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

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

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

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

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

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

.our-story {
  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 4.5rem;
    }
    .second-hero-block .inner {
      max-width: 860px;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2.2rem;
      line-height: 1.2;
      margin: 0 0 1rem;
      font-weight: 600;
      letter-spacing: -0.01em;
    }
    .second-hero-block p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin: 0;
      max-width: 640px;
      color: #CBD5E1;
    }
    @media (max-width: 640px) {
      .second-hero-block {
        padding: 3.5rem 1.25rem 3rem;
      }
      .second-hero-block h1 {
        font-size: 1.7rem;
      }
      .second-hero-block p {
        font-size: 1rem;
      }
    }

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

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

  .feedback-head {
    max-width: 640px;
    margin-bottom: 48px;
  }

  .feedback-head h2 {
    font-size: 30px;
    line-height: 1.25;
    margin: 0 0 16px;
    font-weight: 700;
  }

  .feedback-head p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 0;
  }

  .feedback-list {
    display: block;
  }

  .feedback-item {
    padding: 28px 0;
    border-top: 1px solid var(--muted-bg);
  }

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

  .feedback-text {
    font-size: 17px;
    line-height: 1.65;
    margin: 0 0 12px;
    max-width: 720px;
  }

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

.social-proof {
        background: var(--inverse-bg);
        color: var(--inverse-fg);
        padding: 5rem 1.5rem;
    }
    .social-proof .inner {
        max-width: 960px;
        margin: 0 auto;
    }
    .social-proof h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin: 0 0 1.5rem 0;
        font-weight: 600;
        letter-spacing: -0.01em;
    }
    .social-proof .lead {
        font-size: 1.1rem;
        line-height: 1.6;
        margin: 0 0 3rem 0;
        max-width: 640px;
        color: var(--inverse-fg);
        opacity: 0.85;
    }
    .social-proof .reviews {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    .social-proof .review {
        border-left: 2px solid var(--accent-bg);
        padding-left: 1.5rem;
    }
    .social-proof .review .text {
        font-size: 1rem;
        line-height: 1.65;
        margin: 0 0 0.75rem 0;
    }
    .social-proof .review .author {
        font-size: 0.9rem;
        margin: 0;
        opacity: 0.7;
    }
    @media (min-width: 700px) {
        .social-proof .reviews {
            display: grid;
            grid-template-columns: 1fr 1fr;
            column-gap: 3rem;
            row-gap: 2.5rem;
        }
        .social-proof .review:first-child {
            grid-column: 1 / -1;
        }
    }

.second-hero-block {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 7rem 1.5rem 8rem;
    }
    .second-hero-block .inner {
      max-width: 46rem;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2.6rem;
      line-height: 1.15;
      margin: 0 0 1.5rem;
      font-weight: 400;
      letter-spacing: -0.01em;
    }
    .second-hero-block p {
      font-size: 1.1rem;
      line-height: 1.7;
      margin: 0;
      max-width: 38rem;
    }
    @media (min-width: 640px) {
      .second-hero-block {
        padding: 8rem 2rem 9rem;
      }
      .second-hero-block h1 {
        font-size: 3rem;
      }
    }

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

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

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

  .people-behind .intro {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.2rem;
  }

  .people-behind .member-list {
    margin: 2.5rem 0 0;
  }

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

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

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

  .people-behind .role {
    font-size: 0.9rem;
    margin: 0 0 0.75rem;
    color: var(--muted-fg);
  }

  .people-behind .bio {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
  }

  .people-behind .note {
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 2.5rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--muted-bg);
  }

  .people-behind a {
    color: var(--brand-primary-bg);
  }

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

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

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

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

        .timeline .lead {
            font-size: 1.05rem;
            line-height: 1.7;
            margin: 0 0 3rem 0;
            opacity: 0.85;
        }

        .timeline .entry {
            padding: 0 0 2.5rem 1.25rem;
            border-left: 1px solid rgba(248, 250, 252, 0.25);
            margin-left: 0.25rem;
            position: relative;
        }

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

        .timeline .entry::before {
            content: "";
            position: absolute;
            left: -5px;
            top: 0.35rem;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--accent-bg);
        }

        .timeline time {
            display: block;
            font-size: 0.85rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 0.4rem;
            opacity: 0.7;
        }

        .timeline .entry h3 {
            font-size: 1.2rem;
            line-height: 1.4;
            margin: 0 0 0.6rem 0;
            font-weight: 600;
        }

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

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

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

            .timeline .entry {
                padding-left: 1rem;
            }
        }

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

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

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

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

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

  .our-story .lead {
    font-size: 1.125rem;
    line-height: 1.7;
  }

  .our-story .closing {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--muted-bg);
    font-size: 0.9375rem;
    color: var(--muted-fg);
  }

.our-story {
  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 .meta {
      font-size: 0.85rem;
      color: var(--muted-fg);
      margin: 0 0 1.5rem;
      letter-spacing: 0.02em;
    }
    .blog-item h1 {
      font-size: 2rem;
      line-height: 1.25;
      margin: 0 0 1.25rem;
      font-weight: 700;
    }
    .blog-item .lead {
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--muted-fg);
      margin: 0 0 2rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--muted-bg);
    }
    .blog-item p {
      font-size: 1rem;
      line-height: 1.75;
      margin: 0 0 1.5rem;
    }
    .blog-item .closing {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--muted-bg);
    }
    .blog-item .route {
      font-size: 0.9rem;
      margin-top: 2.5rem;
      color: var(--muted-fg);
    }
    .blog-item .route a {
      color: var(--primary-bg);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .blog-item .route a:hover {
      color: var(--primary-hover);
    }

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

.blog-item {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 3rem 1.5rem 4rem;
        }
        .blog-item .inner {
            max-width: 720px;
            margin: 0 auto;
        }
        .blog-item .meta {
            font-size: 0.85rem;
            color: var(--muted-fg);
            margin: 0 0 1.5rem;
            letter-spacing: 0.02em;
        }
        .blog-item h1 {
            font-size: 2rem;
            line-height: 1.25;
            margin: 0 0 1rem;
            font-weight: 700;
        }
        .blog-item .lead {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--muted-fg);
            margin: 0 0 2rem;
            border-left: 3px solid var(--primary-bg);
            padding-left: 1rem;
        }
        .blog-item .body p {
            font-size: 1rem;
            line-height: 1.75;
            margin: 0 0 1.5rem;
        }
        .blog-item .note {
            font-size: 0.9rem;
            color: var(--muted-fg);
            border-top: 1px solid var(--muted-bg);
            padding-top: 1.5rem;
            margin: 2.5rem 0 1.5rem;
            line-height: 1.6;
        }
        .blog-item .route {
            font-size: 0.9rem;
            margin: 0;
            padding-top: 1rem;
            border-top: 1px solid var(--muted-bg);
        }
        .blog-item .route a {
            color: var(--primary-bg);
            text-decoration: none;
        }
        .blog-item .route a:hover {
            text-decoration: underline;
        }
        @media (max-width: 600px) {
            .blog-item h1 {
                font-size: 1.6rem;
            }
            .blog-item .lead {
                font-size: 1rem;
            }
        }

.blog-item {
      background: #F8FAFC;
      color: #0F172A;
      padding: 3rem 1.5rem 4rem;
    }
    .blog-item .inner {
      max-width: 760px;
      margin: 0 auto;
    }
    .blog-item .date {
      font-size: 0.85rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #334155;
      margin: 0 0 1.2rem;
    }
    .blog-item h1 {
      font-size: 2rem;
      line-height: 1.25;
      margin: 0 0 1.5rem;
      font-weight: 700;
    }
    .blog-item .intro {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #334155;
      margin: 0 0 1.5rem;
    }
    .blog-item p {
      font-size: 1rem;
      line-height: 1.7;
      margin: 0 0 1.4rem;
    }
    .blog-item .note {
      border-left: 3px solid #0EA5E9;
      padding-left: 1rem;
      margin: 2rem 0 1.5rem;
      color: #1E293B;
    }
    .blog-item .note a {
      color: #0284C7;
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .blog-item .read {
      border-top: 1px solid #E2E8F0;
      padding-top: 1.5rem;
      margin-top: 2rem;
    }
    .blog-item .read span {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: #334155;
      margin-bottom: 0.6rem;
    }
    .blog-item .read a {
      display: block;
      color: #0F172A;
      text-decoration: none;
      padding: 0.35rem 0;
      font-size: 0.95rem;
      border-bottom: 1px solid #E2E8F0;
    }
    .blog-item .read a:hover {
      color: #0284C7;
    }

.second-hero-block {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4.5rem 1.5rem 3.5rem;
    }
    .second-hero-block .inner {
      max-width: 46rem;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2rem;
      line-height: 1.2;
      margin: 0 0 1.25rem;
      font-weight: 400;
      letter-spacing: -0.01em;
    }
    .second-hero-block p {
      font-size: 1.05rem;
      line-height: 1.7;
      margin: 0;
      color: var(--page-fg);
      opacity: 0.85;
    }
    @media (min-width: 640px) {
      .second-hero-block {
        padding: 6rem 2rem 4rem;
      }
      .second-hero-block h1 {
        font-size: 2.5rem;
      }
      .second-hero-block p {
        font-size: 1.1rem;
      }
    }

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

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

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

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

    .form form {
        display: block;
    }

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

    .form textarea {
        width: 100%;
        box-sizing: border-box;
        background: var(--card-bg);
        color: var(--card-fg);
        border: 1px solid var(--card-border);
        border-radius: 6px;
        padding: 0.75rem;
        font-size: 1rem;
        line-height: 1.5;
        resize: vertical;
        margin-bottom: 1.25rem;
    }

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

    .form button {
        background: var(--primary-bg);
        color: var(--primary-fg);
        border: none;
        border-radius: 6px;
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
        cursor: pointer;
    }

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

    .form .note {
        font-size: 0.9rem;
        color: var(--muted-fg);
        margin-top: 2rem;
        margin-bottom: 0;
        border-top: 1px solid var(--muted-bg);
        padding-top: 1.25rem;
    }

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

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

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

    .contacts h2 {
      font-size: 1.9rem;
      line-height: 1.2;
      margin: 0 0 1.2rem;
      font-weight: 600;
    }

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

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

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

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

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

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

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

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

.policy-items {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 4rem 1.5rem;
  }

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

  .policy-items .intro {
    margin-bottom: 2.5rem;
  }

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

  .policy-items .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    max-width: 720px;
  }

  .policy-items .note {
    background: rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--gradient-hero-fg);
    padding: 1rem 1.25rem;
    margin-bottom: 2.5rem;
  }

  .policy-items .note-title {
    font-weight: 600;
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
  }

  .policy-items .note p:last-child {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
  }

  .policy-items .section {
    margin-bottom: 2.5rem;
  }

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

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

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

  .policy-items .body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .policy-items .entry:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .policy-items .entry-title {
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 0.35rem;
  }

  .policy-items .entry-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.85;
  }

  .policy-items a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .policy-items a:hover {
    opacity: 0.8;
  }

  @media (min-width: 640px) {
    .policy-items .body {
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem 2rem;
    }

    .policy-items .entry {
      border-bottom: none;
      padding-bottom: 0;
    }

    .policy-items .entry:not(:last-child) {
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      padding-bottom: 1rem;
    }
  }

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

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

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

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

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

    .terms-items .terms-list {
      border-top: 1px solid var(--muted-bg);
    }

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

    .terms-items .term-item h2 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 0 0 0.6rem;
      line-height: 1.4;
    }

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

.terms-items {
  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: 42rem;
            margin: 0 auto;
        }
        .second-hero-block h1 {
            font-size: 2.25rem;
            line-height: 1.2;
            margin: 0 0 1rem;
            font-weight: 400;
        }
        .second-hero-block p {
            font-size: 1.125rem;
            line-height: 1.6;
            color: var(--muted-fg);
            margin: 0;
        }

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

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

  .thank h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    font-weight: 400;
  }

  .thank .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 0 2.5rem;
    max-width: 36rem;
  }

  .thank .note {
    border-left: 2px solid var(--primary-bg);
    padding-left: 1.25rem;
    margin-bottom: 2.5rem;
  }

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

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

  .thank .route {
    display: flex;
    gap: 1.5rem;
  }

  .thank .route a {
    color: var(--inverse-fg);
    text-decoration: none;
    border-bottom: 1px solid rgba(248, 250, 252, 0.4);
    padding-bottom: 2px;
    font-size: 0.95rem;
  }

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

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

    .thank h1 {
      font-size: 1.8rem;
    }

    .thank .route {
      flex-direction: column;
      gap: 1rem;
    }
  }

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

.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;
      line-height: 1.25;
      margin: 0 0 1.2rem;
      font-weight: 600;
    }
    .next-step p {
      font-size: 1.05rem;
      line-height: 1.7;
      margin: 0 0 1.8rem;
    }
    .next-step p a {
      color: var(--brand-primary-bg, #0EA5E9);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .next-step .route {
      display: inline-block;
      background: var(--primary-bg);
      color: var(--primary-fg);
      padding: 0.8rem 1.8rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 2.5rem;
    }
    .next-step .route:hover {
      background: var(--primary-hover);
    }
    .next-step .aside {
      font-size: 0.9rem;
      color: var(--muted-fg);
      border-top: 1px solid var(--muted-bg);
      padding-top: 1.5rem;
      margin-top: 0;
    }
    .next-step .aside a {
      color: var(--muted-fg);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .next-step .aside a:hover {
      color: var(--page-fg);
    }

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

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

  .404 .code {
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted-fg);
    margin: 0 0 1.5rem;
    border-bottom: 1px solid var(--muted-bg);
    padding-bottom: 0.75rem;
  }

  .404 h1 {
    font-size: 2rem;
    line-height: 1.25;
    margin: 0 0 1rem;
    font-weight: 400;
  }

  .404 .lead {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 0 0 2.5rem;
    max-width: 34rem;
  }

  .404 .route {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary-fg);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9375rem;
  }

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

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