:root {
  --font-family: "Nunito", sans-serif;
  --font-size-base: 14.6px;
  --line-height-base: 1.79;

  --max-w: 920px;
  --space-x: 2rem;
  --space-y: 1.5rem;
  --gap: 0.97rem;
  --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.24rem;
  --radius-lg: 1rem;
  --radius-md: 0.67rem;
  --radius-sm: 0.31rem;

  --shadow-sm: 0 0px 5px rgba(0,0,0,0.05);
  --shadow-md: 0 5px 18px rgba(0,0,0,0.06);
  --shadow-lg: 0 14px 32px rgba(0,0,0,0.08);

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

  --brand: #A8D8EA;
  --brand-contrast: #1E3A5F;
  --accent: #F4A261;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F7F9FC;
  --neutral-300: #D1D9E6;
  --neutral-600: #5A6B7A;
  --neutral-800: #2D3A45;
  --neutral-900: #1A242E;

  --page-bg: #F4F8FA;
  --page-fg: #2D3A45;
  --muted-bg: #E8F1F5;
  --muted-fg: #5A6B7A;
  --card-bg: #FFFFFF;
  --card-fg: #2D3A45;
  --card-border: #D1D9E6;
  --inverse-bg: #1E3A5F;
  --inverse-fg: #FFFFFF;
  --primary-bg: #A8D8EA;
  --primary-fg: #1E3A5F;
  --primary-hover: #7EC8E3;
  --accent-bg: #F4A261;
  --accent-fg: #FFFFFF;
  --accent-hover: #E76F51;
  --gradient-hero-bg: linear-gradient(135deg, #E0F2FE 0%, #FDE8D0 100%);
  --gradient-hero-fg: #2D3A45;
  --gradient-accent-bg: linear-gradient(135deg, #F4A261 0%, #E76F51 100%);
  --gradient-accent-fg: #FFFFFF;

  --ring: #A8D8EA;

  --link: #A8D8EA;
  --link-hover: #F4A261;

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

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

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    position: relative;
  }

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

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

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

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

  .nav-link {
    font-size: var(--font-size-sm);
    color: var(--page-fg);
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

    .burger {
      display: flex;
    }

    .header-nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--page-bg);
      border-bottom: 1px solid var(--card-border);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      display: none;
      z-index: 100;
    }

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

    .nav-list {
      flex-direction: column;
      align-items: flex-start;
      gap: var(--gap);
    }

    .nav-link {
      display: block;
      width: 100%;
      padding: 0.6rem 0.8rem;
      font-size: var(--font-size-md);
    }
  }

.site-footer {
    background: var(--inverse-bg, #1a2e35);
    color: var(--inverse-fg, #f5f5f0);
    padding: var(--space-section-y, 4rem) var(--space-section-x, 2rem) 2rem;
    font-family: var(--font-family, 'Segoe UI', sans-serif);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.6);
  }

  .footer-container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
  }

  .footer-newsletter {
    text-align: center;
    padding-bottom: var(--space-block, 2.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-block, 2.5rem);
  }

  .footer-newsletter-title {
    font-size: var(--font-size-h2, 2rem);
    margin-bottom: var(--space-y, 1rem);
    font-weight: 600;
  }

  .footer-newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-y, 1.5rem);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-newsletter-form {
    display: flex;
    gap: var(--gap, 0.75rem);
    max-width: 480px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-newsletter-input {
    flex: 1 1 240px;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md, 8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--inverse-fg, #f5f5f0);
    font-size: var(--font-size-sm, 0.875rem);
  }

  .footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }

  .footer-newsletter-button {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md, 8px);
    border: none;
    background: var(--primary-bg, #4a7c59);
    color: var(--primary-fg, #ffffff);
    font-size: var(--font-size-sm, 0.875rem);
    cursor: pointer;
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .footer-newsletter-button:hover {
    background: var(--primary-hover, #3d6b4c);
  }

  .footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--gap, 2rem);
    padding-bottom: var(--space-block, 2.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-block, 2rem);
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-y, 0.75rem);
  }

  .footer-logo {
    font-size: var(--font-size-h3, 1.5rem);
    font-weight: 700;
    color: var(--inverse-fg, #f5f5f0);
    text-decoration: none;
    letter-spacing: 0.02em;
  }

  .footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm, 0.875rem);
    max-width: 280px;
  }

  .footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-y, 0.75rem);
  }

  .footer-nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .footer-nav-link:hover {
    color: var(--accent-fg, #f0c987);
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-y, 0.5rem);
  }

  .footer-contact-title {
    font-size: var(--font-size-md, 1.125rem);
    font-weight: 600;
    margin-bottom: var(--space-y, 0.);}

footer .footer-risk-disclaimer{flex:1 1 100%;max-width:var(--max-w);margin:var(--space-y) auto 0;padding-top:var(--space-card);border-top:1px solid color-mix(in srgb,currentColor 22%,transparent);font-size:var(--font-size-sm);line-height:var(--line-height-base);opacity:.82;overflow-wrap:anywhere;}

.cookies {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  max-width: 440px;
  width: calc(100% - 2rem);
  z-index: 9999;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  background: var(--card-bg);
  color: var(--card-fg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--card-border);
  padding: var(--space-card);
}

.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;
  font-size: var(--font-size-sm);
  opacity: 0.9;
}

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

.cookies .choice {
  padding: 0.5rem 1rem;
  font-size: var(--font-size-sm);
  font-family: inherit;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s ease;
}

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

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

.cookies .reject {
  background: var(--muted-bg);
  color: var(--muted-fg);
}

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

.cookies .manage {
  background: transparent;
  color: var(--link);
  border: 1px solid var(--card-border);
}

.cookies .manage:hover {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}

@media (max-width: 480px) {
  .cookies {
    bottom: 0.5rem;
    left: 0.5rem;
    width: calc(100% - 1rem);
    max-width: none;
  }
}

.intro-focus {
    background: linear-gradient(135deg, #E0F2FE 0%, #FDE8D0 100%);
    color: #2D3A45;
    padding: 5rem 1.5rem 6rem;
  }

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

  .intro-focus h1 {
    font-size: 2.4rem;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 1.5rem;
  }

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

  .intro-focus .start-link {
    display: inline-block;
    background: #F4A261;
    color: #FFFFFF;
    padding: 0.9rem 2rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
  }

  .intro-focus .start-link:hover {
    background: #E76F51;
  }

  @media (min-width: 768px) {
    .intro-focus {
      padding: 7rem 2rem 8rem;
    }

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

    .intro-focus p {
      font-size: 1.2rem;
    }
  }

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

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

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

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

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

  .how-it-works .steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

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

  .how-it-works .step:last-child {
    border-bottom: none;
  }

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

  .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 {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    color: var(--muted-fg);
  }

  .how-it-works .closing {
    margin-top: 2.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--page-fg);
    font-weight: 500;
  }

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

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

    .how-it-works .step {
      display: grid;
      grid-template-columns: 80px 1fr;
      column-gap: 1.5rem;
      align-items: start;
    }

    .how-it-works .step-num {
      margin-bottom: 0;
      padding-top: 0.2rem;
    }
  }

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

.next-step {
    background: linear-gradient(135deg, #E0F2FE 0%, #FDE8D0 100%);
    color: #2D3A45;
    padding: 4rem 1.5rem;
  }

  .next-step .inner {
    max-width: 640px;
    margin: 0 auto;
    padding-left: 1rem;
  }

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

  .next-step p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 2rem 0;
    color: #3A4A58;
    max-width: 480px;
  }

  .next-step .start-link {
    display: inline-block;
    background: #F4A261;
    color: #FFFFFF;
    padding: 0.8rem 1.8rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s ease;
  }

  .next-step .start-link:hover {
    background: #E76F51;
  }

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

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

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

  .social-proof h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 16px 0;
    color: var(--page-fg);
  }

  .social-proof .lead {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 40px 0;
    color: var(--page-fg);
  }

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

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

  .social-proof .note:first-child {
    border-top: 1px solid var(--card-border);
  }

  .social-proof .quote {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 12px 0;
    color: var(--page-fg);
  }

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

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

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

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

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

  .recommendations .inner > p {
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 2rem;
    opacity: 0.9;
  }

  .recommendations .notes {
    display: block;
  }

  .recommendations .note {
    background: var(--card-bg);
    color: var(--card-fg);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1rem;
  }

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

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

  .recommendations .note a {
    color: var(--primary-fg);
    background: var(--primary-bg);
    display: inline-block;
    padding: 0.45rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
  }

  .recommendations .note a:hover {
    background: var(--primary-hover);
  }

  .recommendations .closing {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 1.5rem 0 0;
    opacity: 0.85;
  }

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

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

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

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

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

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

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

    .feedback .entry-text {
        font-size: 1rem;
        line-height: 1.65;
        margin: 0 0 0.4rem 0;
    }

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

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

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

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

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

  .clarifications a {
    color: var(--brand-primary-bg, #1E3A5F);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .clarifications a:hover {
    color: var(--brand-primary-hover, #7EC8E3);
  }

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

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

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

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

  .capabilities > .inner > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted-fg);
    margin: 0 0 40px 0;
  }

  .capabilities .entry {
    margin-bottom: 36px;
  }

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

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

  .capabilities .entry p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted-fg);
    margin: 0;
  }

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

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

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

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

  .plans-overview .note {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 40px 0;
    max-width: 640px;
    color: var(--inverse-fg);
    opacity: 0.85;
  }

  .plans-overview .options {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .plans-overview .option {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .plans-overview .option:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .plans-overview .option h3,
  .plans-overview .option h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
  }

  .plans-overview .option p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 12px 0;
    color: var(--inverse-fg);
    opacity: 0.85;
    max-width: 620px;
  }

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

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

  .plans-overview .closing {
    font-size: 15px;
    line-height: 1.6;
    margin: 32px 0 0 0;
    color: var(--inverse-fg);
    opacity: 0.85;
    max-width: 620px;
  }

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

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

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

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

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

  .support-link {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-fg);
    background: var(--primary-bg);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 28px;
  }

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

  .support-note {
    font-size: 15px;
    color: var(--muted-fg);
    margin-bottom: 12px;
  }

  .support-faq {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-fg);
    background: var(--accent-bg);
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
  }

  .support-faq:hover {
    background: var(--accent-hover);
  }

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

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

    .stay-in-touch .inner {
      max-width: 42rem;
      margin: 0 auto;
    }

    .stay-in-touch h2 {
      font-size: 1.8rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 1.25rem 0;
      letter-spacing: -0.01em;
    }

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

    .stay-in-touch .contacts {
      list-style: none;
      margin: 0 0 2rem 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      border-top: 1px solid var(--muted-bg);
      padding-top: 1.75rem;
    }

    .stay-in-touch .contacts li {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .stay-in-touch .label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--muted-fg);
    }

    .stay-in-touch .contacts a {
      color: var(--primary-fg);
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: 500;
      border-bottom: 1px solid transparent;
      transition: border-color 0.15s ease;
    }

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

    .stay-in-touch .contacts li span:last-child {
      font-size: 1.05rem;
      line-height: 1.5;
      color: var(--page-fg);
    }

    .stay-in-touch .note {
      font-size: 0.95rem;
      line-height: 1.65;
      color: var(--muted-fg);
      border-top: 1px solid var(--muted-bg);
      padding-top: 1.5rem;
      margin-top: 0.5rem;
    }

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

      .stay-in-touch h2 {
        font-size: 1.5rem;
      }

      .stay-in-touch .contacts {
        gap: 1rem;
      }
    }

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

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

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

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

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

  .form .note {
    font-size: 0.9rem;
    line-height: 1.5;
    background: var(--muted-bg);
    color: var(--muted-fg);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin: 0 0 1.75rem;
  }

  .form form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .form .field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .form label {
    font-size: 0.9rem;
    font-weight: 600;
  }

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

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

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

  .form button {
    font: inherit;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: var(--accent-bg);
    color: var(--accent-fg);
    cursor: pointer;
    align-self: flex-start;
  }

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

  @media (max-width: 480px) {
    .form {
      padding: 2rem 1rem;
    }

    .form h2 {
      font-size: 1.35rem;
    }
  }

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

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

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

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

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

    .contacts .label {
      width: 140px;
      flex-shrink: 0;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--muted-fg);
    }

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

    .contacts a.value {
      color: var(--primary-fg);
      text-decoration: none;
      border-bottom: 1px solid var(--primary-bg);
      padding-bottom: 1px;
    }

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

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

    @media (max-width: 520px) {
      .contacts .line {
        flex-direction: column;
        gap: 0.25rem;
      }

      .contacts .label {
        width: auto;
      }
    }

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

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

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

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

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

    .policy-items .item {
      padding: 1.5rem 0;
      border-top: 1px solid var(--card-border);
    }

    .policy-items .item:last-of-type {
      border-bottom: 1px solid var(--card-border);
    }

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

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

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

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

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

    .policy-items .updated {
      font-size: 0.9rem;
      color: var(--muted-fg);
      margin-top: 1.2rem;
      line-height: 1.6;
    }

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

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

      .policy-items .lead {
        font-size: 1rem;
      }
    }

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

.terms-items {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 3.5rem 1.5rem 4rem;
      line-height: 1.6;
    }

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

    .terms-items h2 {
      font-size: 2rem;
      font-weight: 600;
      margin: 0 0 1.25rem;
      letter-spacing: -0.02em;
      color: var(--gradient-hero-fg);
    }

    .terms-items .lead {
      font-size: 1.1rem;
      margin: 0 0 2.5rem;
      color: var(--gradient-hero-fg);
      opacity: 0.85;
      max-width: 60ch;
    }

    .terms-items .rule {
      border-top: 1px solid rgba(45, 58, 69, 0.15);
      padding: 1.5rem 0 1.25rem;
    }

    .terms-items .rule:last-of-type {
      border-bottom: 1px solid rgba(45, 58, 69, 0.15);
    }

    .terms-items h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 0 0 0.6rem;
      color: var(--gradient-hero-fg);
    }

    .terms-items p {
      margin: 0;
      font-size: 0.98rem;
      color: var(--gradient-hero-fg);
      opacity: 0.9;
      max-width: 65ch;
    }

    .terms-items a {
      color: var(--accent-bg);
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-thickness: 1px;
    }

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

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

      .terms-items h2 {
        font-size: 1.6rem;
      }

      .terms-items .lead {
        font-size: 1rem;
      }
    }

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

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

  .thank .inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }

  .thank h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1.5rem;
    color: var(--page-fg);
  }

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

  .thank a {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.75rem;
    background: var(--primary-bg);
    color: var(--primary-fg);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s ease;
  }

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

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

.404 {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 6rem 1.5rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
  }

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

  .404 .code {
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-primary-fg);
    background: var(--brand-primary-bg);
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
  }

  .404 h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 1rem;
  }

  .404 .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2rem;
    color: var(--page-fg);
  }

  .404 .home {
    display: inline-block;
    background: var(--brand-primary-bg);
    color: var(--brand-primary-fg);
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
  }

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

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