:root {
  --font-family: "Sora", sans-serif;
  --font-size-base: 16.3px;
  --line-height-base: 1.65;

  --max-w: 1420px;
  --space-x: 2.28rem;
  --space-y: 1.5rem;
  --gap: 2.18rem;
  --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.21rem;
  --radius-lg: 0.92rem;
  --radius-md: 0.58rem;
  --radius-sm: 0.31rem;

  --shadow-sm: 0 1px 6px rgba(0,0,0,0.11);
  --shadow-md: 0 12px 16px rgba(0,0,0,0.14);
  --shadow-lg: 0 16px 52px rgba(0,0,0,0.18);

  --overlay: rgba(255,255,255,0.7);
  --anim-duration: 400ms;
  --anim-ease: ease;
  --random-number: 1;

  --brand: #2A7FAA;
  --brand-contrast: #FFFFFF;
  --accent: #E1F0F8;
  --accent-contrast: #1A4A6A;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F8FA;
  --neutral-300: #D0D9E0;
  --neutral-600: #6B7A86;
  --neutral-800: #2C3E4E;
  --neutral-900: #1A2A38;

  --page-bg: #FFFFFF;
  --page-fg: #1A2A38;
  --muted-bg: #F5F8FA;
  --muted-fg: #2C3E4E;
  --card-bg: #FFFFFF;
  --card-fg: #1A2A38;
  --card-border: #D0D9E0;
  --inverse-bg: #1A2A38;
  --inverse-fg: #FFFFFF;
  --primary-bg: #2A7FAA;
  --primary-fg: #FFFFFF;
  --primary-hover: #1F6A8F;
  --accent-bg: #E1F0F8;
  --accent-fg: #1A4A6A;
  --accent-hover: #C8E2F0;
  --gradient-hero-bg: linear-gradient(135deg, #E1F0F8 0%, #FFFFFF 100%);
  --gradient-hero-fg: #1A2A38;
  --gradient-accent-bg: linear-gradient(135deg, #2A7FAA 0%, #4A9BC7 100%);
  --gradient-accent-fg: #FFFFFF;

  --ring: #2A7FAA;

  --link: #2A7FAA;
  --link-hover: #E1F0F8;

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

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

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

.logo {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--page-fg);
  text-decoration: none;
  white-space: nowrap;
}

.main-nav {
  display: flex;
}

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

.nav-list a {
  color: var(--page-fg);
  text-decoration: none;
  font-size: var(--font-size-md);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.cta-button {
  display: inline-block;
  background-color: var(--primary-bg);
  color: var(--primary-fg);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-md);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
}

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

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

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

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

@media (max-width: 767px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--page-bg);
    border-bottom: 1px solid var(--muted-bg);
    padding: var(--space-y) var(--space-x);
    z-index: 100;
  }

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

  .nav-list {
    flex-direction: column;
    gap: var(--space-y);
  }

  .nav-list a {
    font-size: var(--font-size-lg);
  }

  .burger {
    display: flex;
  }

  .header-wrapper {
    position: relative;
  }

  .cta-button {
    display: none;
  }
}

footer {
    background: var(--page-bg, #0a0a0f);
    color: var(--page-fg, #e0e0e0);
    padding: var(--space-section-y, 3rem) var(--space-section-x, 1.5rem);
    font-family: var(--font-family, 'Inter', sans-serif);
    font-size: var(--font-size-base, 0.95rem);
    line-height: var(--line-height-base, 1.6);
    border-top: 1px solid var(--card-border, rgba(255,255,255,0.08));
  }
  .footer-container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap, 1.5rem);
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap, 1.5rem);
    justify-content: center;
    padding: var(--space-block, 1rem) 0;
    border-bottom: 1px solid var(--card-border, rgba(255,255,255,0.06));
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--font-size-sm, 0.875rem);
    color: var(--muted-fg, #a0a0b0);
  }
  .contact-item a {
    color: var(--link, #8ab4f8);
    text-decoration: none;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .contact-item a:hover {
    color: var(--link-hover, #a9c9ff);
  }
  .footer-brand {
    text-align: center;
    padding: var(--space-block, 0.75rem) 0;
  }
  .footer-logo {
    font-size: var(--font-size-h2, 1.75rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    background: var(--gradient-accent-bg, linear-gradient(135deg, #667eea, #764ba2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap, 1.5rem);
    padding: var(--space-block, 0.75rem) 0;
    border-top: 1px solid var(--card-border, rgba(255,255,255,0.06));
    border-bottom: 1px solid var(--card-border, rgba(255,255,255,0.06));
  }
  .footer-nav a {
    color: var(--muted-fg, #a0a0b0);
    text-decoration: none;
    font-size: var(--font-size-sm, 0.9rem);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-bg, #667eea);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .footer-nav a:hover {
    color: var(--page-fg, #e0e0e0);
  }
  .footer-nav a:hover::after {
    width: 100%;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap, 1.5rem);
    padding: var(--space-block, 0.5rem) 0;
  }
  .footer-legal a {
    color: var(--muted-fg, #808090);
    text-decoration: none;
    font-size: var(--font-size-sm, 0.8rem);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .footer-legal a:hover {
    color: var(--link-hover, #a9c9ff);
  }
  .footer-disclaimer {
    text-align: center;
    padding: var(--space-block, 0.75rem) 0;
    border-top: 1px solid var(--card-border, rgba(255,255,255,0.04));
  }
  .footer-disclaimer p {
    font-size: var(--font-size-sm, 0.8rem);
    color: var(--muted-fg, #707080);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
  }
  .footer-copy {
    text-align: center;
    padding-top: var(--space-block, 0.5rem);
  }
  .footer-copy p {
    font-size: var(--font-size-sm, 0.8rem);
    color: var(--muted-fg, #606070);
    margin: 0;
  }
  @media (max-width: 640px) {
    footer {
      padding: var(--space-section-y, 2rem) var(--space-section-x, 1rem);
    }
    .footer-contact address {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.75rem;
    }
    .footer-nav {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
    .footer-legal {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--card-bg, #ffffff);
  color: var(--card-fg, #1a1a1a);
  border-top: 1px solid var(--card-border, #e0e0e0);
  box-shadow: var(--shadow-md, 0 -4px 12px rgba(0,0,0,0.08));
  z-index: 1000;
  padding: var(--space-y, 12px) var(--space-x, 16px);
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
  font-size: var(--font-size-sm, 0.875rem);
  line-height: var(--line-height-base, 1.5);
}
.cookie-notice__inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap, 12px);
}
.cookie-notice__copy {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--gap, 8px);
  flex: 1 1 auto;
  min-width: 200px;
}
.cookie-notice__title {
  font-size: var(--font-size-md, 1rem);
  font-weight: 600;
  white-space: nowrap;
}
.cookie-notice__text {
  margin: 0;
  color: inherit;
  opacity: 0.85;
}
.cookie-notice__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap, 8px);
  flex-shrink: 0;
}
.cookie-notice__choice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--radius-sm, 4px);
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  text-decoration: none;
}
.cookie-notice__choice--primary {
  background: var(--primary-bg, #0055ff);
  color: var(--primary-fg, #ffffff);
}
.cookie-notice__choice--primary:hover {
  background: var(--primary-hover, #003bb3);
}
.cookie-notice__choice--ghost {
  background: transparent;
  color: inherit;
  border: 1px solid var(--card-border, #ccc);
}
.cookie-notice__choice--ghost:hover {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}
.cookie-notice__choice--link {
  background: transparent;
  color: var(--link, #0055ff);
  padding: 0.5rem 0.75rem;
  text-decoration: underline;
}
.cookie-notice__choice--link:hover {
  color: var(--link-hover, #003bb3);
}
@media (max-width: 640px) {
  .cookie-notice__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-notice__copy {
    flex-direction: column;
    align-items: center;
  }
  .cookie-notice__actions {
    justify-content: center;
  }
}

.intro-focus {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
    display: flex;
    justify-content: center;
  }
  .intro-focus .inner {
    max-width: 720px;
    text-align: left;
  }
  .intro-focus h1 {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
  }
  .intro-focus .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1.25rem;
    color: var(--muted-fg);
  }
  .intro-focus .support {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 2rem;
    color: var(--muted-fg);
    opacity: 0.85;
  }
  .intro-focus .cta {
    display: inline-block;
    background: var(--primary-bg, #2A7FAA);
    color: var(--primary-fg, #FFFFFF);
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease;
  }
  .intro-focus .cta:hover {
    background: var(--primary-hover, #1F6A8F);
  }

.how-it-works {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 3.5rem 1.5rem;
    }
    .how-it-works .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .how-it-works h2 {
      font-size: 1.6rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin: 0 0 0.25rem 0;
      line-height: 1.2;
    }
    .how-it-works .subhead {
      font-size: 0.95rem;
      color: var(--brand-primary-hover);
      margin: 0 0 2.5rem 0;
      line-height: 1.5;
      max-width: 580px;
    }
    .how-it-works .steps {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .how-it-works .step {
      display: flex;
      align-items: flex-start;
      gap: 1.2rem;
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--card-border);
    }
    .how-it-works .step:last-child {
      border-bottom: none;
    }
    .how-it-works .step-num {
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--brand-primary-bg);
      background: var(--accent-bg);
      min-width: 2.2rem;
      height: 2.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      line-height: 1;
      margin-top: 0.1rem;
    }
    .how-it-works .step-body {
      flex: 1;
      min-width: 0;
    }
    .how-it-works .step-title {
      font-size: 1.05rem;
      font-weight: 500;
      margin: 0 0 0.3rem 0;
      line-height: 1.3;
    }
    .how-it-works .step-text {
      font-size: 0.9rem;
      line-height: 1.5;
      color: var(--muted-fg);
      margin: 0 0 0.2rem 0;
    }
    .how-it-works .step-note {
      font-size: 0.85rem;
      color: var(--brand-primary-hover);
      margin: 0.2rem 0 0 0;
      line-height: 1.4;
    }
    @media (min-width: 600px) {
      .how-it-works {
        padding: 4.5rem 2rem;
      }
      .how-it-works h2 {
        font-size: 1.9rem;
      }
      .how-it-works .subhead {
        font-size: 1rem;
        margin-bottom: 3rem;
      }
      .how-it-works .step {
        padding: 1.8rem 0;
        gap: 1.5rem;
      }
      .how-it-works .step-num {
        min-width: 2.6rem;
        height: 2.6rem;
        font-size: 1.2rem;
      }
      .how-it-works .step-title {
        font-size: 1.1rem;
      }
      .how-it-works .step-text {
        font-size: 0.95rem;
      }
    }

.next-step {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .next-step .inner {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }
    .next-step h2 {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 1rem 0;
      line-height: 1.3;
    }
    .next-step p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1.8rem 0;
      color: var(--muted-fg);
    }
    .next-step .action {
      display: inline-block;
      background: var(--primary-bg);
      color: var(--primary-fg);
      padding: 0.8rem 2rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
      font-size: 1rem;
      transition: background 0.2s;
    }
    .next-step .action:hover {
      background: var(--primary-hover);
    }

.clarifications {
      background: var(--page-bg, #FFFFFF);
      color: var(--page-fg, #1A2A38);
      padding: 3rem 1.5rem;
    }
    .clarifications .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .clarifications .heading {
      font-size: 1.4rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 1rem 0;
      color: var(--page-fg, #1A2A38);
    }
    .clarifications .subheading {
      font-size: 1.1rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 2rem 0 0.75rem 0;
      color: var(--page-fg, #1A2A38);
    }
    .clarifications .explain {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1rem 0;
      color: var(--muted-fg, #2C3E4E);
    }
    .clarifications .closing {
      font-size: 0.9rem;
      line-height: 1.5;
      margin: 1.5rem 0 0 0;
      padding-top: 1rem;
      border-top: 1px solid var(--muted-bg, #F5F8FA);
      color: var(--muted-fg, #2C3E4E);
    }

.recommendations {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .recommendations .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .recommendations h2 {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 0.75rem;
      line-height: 1.3;
    }
    .recommendations .intro {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2rem;
      color: var(--muted-fg);
    }
    .recommendations .entry {
      border-top: 1px solid var(--muted-bg);
      padding: 1.25rem 0;
    }
    .recommendations .entry:first-of-type {
      border-top: none;
    }
    .recommendations .entry h3 {
      font-size: 1.1rem;
      font-weight: 500;
      margin: 0 0 0.35rem;
      line-height: 1.4;
    }
    .recommendations .entry h3 a {
      color: var(--brand-primary-bg);
      text-decoration: none;
    }
    .recommendations .entry h3 a:hover {
      text-decoration: underline;
    }
    .recommendations .entry p {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0;
      color: var(--muted-fg);
    }
    .recommendations .closing {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 1.5rem 0 0;
      color: var(--muted-fg);
    }

.feedback {
            background: #FFFFFF;
            color: #1A2A38;
            padding: 4rem 1.5rem;
        }
        .feedback .inner {
            max-width: 960px;
            margin: 0 auto;
        }
        .feedback h2 {
            font-size: 1.75rem;
            font-weight: 500;
            letter-spacing: -0.02em;
            margin: 0 0 1.5rem 0;
            line-height: 1.2;
        }
        .feedback .sub {
            font-size: 1rem;
            line-height: 1.6;
            color: #2C3E4E;
            margin: 0 0 2.5rem 0;
            max-width: 680px;
        }
        .feedback .reviews {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .feedback .review {
            border-bottom: 1px solid #D0D9E0;
            padding-bottom: 1.75rem;
        }
        .feedback .review:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .feedback .review .meta {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #2C3E4E;
            margin-bottom: 0.4rem;
            font-weight: 450;
        }
        .feedback .review .name {
            font-size: 1.1rem;
            font-weight: 500;
            margin: 0 0 0.5rem 0;
        }
        .feedback .review .text {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #2C3E4E;
            margin: 0;
        }
        .feedback .review .text strong {
            font-weight: 500;
            color: #1A2A38;
        }
        /* divider rhythm */
        .feedback .divider {
            height: 1px;
            background: #D0D9E0;
            margin: 0.5rem 0 1.75rem 0;
        }
        @media (min-width: 640px) {
            .feedback h2 {
                font-size: 2rem;
            }
            .feedback .sub {
                font-size: 1.05rem;
            }
            .feedback .review .text {
                font-size: 1rem;
            }
        }

.plans-overview {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 3.5rem 1.5rem;
    }

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

    .plans-overview h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      letter-spacing: -0.01em;
    }

    .plans-overview .lead {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2.5rem 0;
      max-width: 600px;
      color: var(--gradient-hero-fg);
      opacity: 0.85;
    }

    .plans-overview .items {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .plans-overview .item {
      flex: 1 1 280px;
      background: var(--card-bg);
      color: var(--card-fg);
      border: 1px solid var(--card-border);
      border-radius: 12px;
      padding: 1.75rem 1.5rem;
      display: flex;
      flex-direction: column;
    }

    .plans-overview .item h3 {
      font-size: 1.2rem;
      font-weight: 600;
      margin: 0 0 0.75rem 0;
      line-height: 1.3;
    }

    .plans-overview .item-desc {
      font-size: 0.9rem;
      line-height: 1.55;
      margin: 0 0 1.25rem 0;
      color: var(--muted-fg);
    }

    .plans-overview .item-details {
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem 0;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .plans-overview .item-details li {
      font-size: 0.85rem;
      line-height: 1.5;
      padding-left: 1.1rem;
      position: relative;
      color: var(--card-fg);
    }

    .plans-overview .item-details li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--primary-bg);
    }

    .plans-overview .action {
      display: inline-block;
      margin-top: auto;
      padding: 0.6rem 1.25rem;
      background: var(--primary-bg);
      color: var(--primary-fg);
      border-radius: 6px;
      font-size: 0.85rem;
      font-weight: 500;
      text-decoration: none;
      text-align: center;
      transition: background 0.2s;
      align-self: flex-start;
    }

    .plans-overview .action:hover {
      background: var(--primary-hover);
    }

    @media (max-width: 640px) {
      .plans-overview {
        padding: 2.5rem 1rem;
      }

      .plans-overview h2 {
        font-size: 1.5rem;
      }

      .plans-overview .items {
        flex-direction: column;
      }

      .plans-overview .item {
        flex: 1 1 auto;
      }
    }

.capabilities {
      background: var(--page-bg, #FFFFFF);
      color: var(--page-fg, #1A2A38);
      padding: 3rem 1.5rem 4rem;
      
    }

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

    .capabilities h2 {
      font-size: 1.75rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      margin: 0 0 0.75rem 0;
      line-height: 1.2;
      color: var(--page-fg, #1A2A38);
    }

    .capabilities .intro-text {
      font-size: 1rem;
      line-height: 1.5;
      color: var(--muted-fg, #2C3E4E);
      margin: 0 0 2.5rem 0;
      max-width: 70ch;
    }

    .capabilities .items {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      border-top: 1px solid var(--muted-bg, #D0D9E0);
      padding-top: 2rem;
    }

    .capabilities .item {
      display: block;
      padding: 0 0 0 0;
    }

    .capabilities .item-title {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 0 0 0.4rem 0;
      line-height: 1.3;
      color: var(--page-fg, #1A2A38);
    }

    .capabilities .item-text {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 0.3rem 0;
      color: var(--muted-fg, #2C3E4E);
    }

    .capabilities .item-benefit {
      font-size: 0.9rem;
      line-height: 1.4;
      margin: 0;
      color: var(--brand-primary-bg, #2A7FAA);
      font-weight: 500;
    }

    .capabilities .closing-line {
      margin: 2.5rem 0 1.2rem 0;
      font-size: 1rem;
      line-height: 1.5;
      color: var(--muted-fg, #2C3E4E);
      border-left: 3px solid var(--brand-primary-bg, #2A7FAA);
      padding-left: 1rem;
    }

    .capabilities .action-link {
      display: inline-block;
      background: var(--brand-primary-bg, #2A7FAA);
      color: var(--brand-primary-fg, #FFFFFF);
      padding: 0.7rem 1.8rem;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: background 0.2s ease;
      letter-spacing: 0.01em;
    }

    .capabilities .action-link:hover {
      background: var(--brand-primary-hover, #1F6A8F);
    }

    /* разделитель между элементами */
    .capabilities .item + .item {
      border-top: 1px solid var(--muted-bg, #E1E6EB);
      padding-top: 2rem;
    }

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

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

      .capabilities .items {
        gap: 2.25rem;
      }

      .capabilities .item + .item {
        padding-top: 2.25rem;
      }
    }

.form {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .form .inner {
      max-width: 36rem;
      margin: 0 auto;
    }
    .form h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 0.75rem;
      line-height: 1.3;
    }
    .form p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1.5rem;
      color: var(--muted-fg);
    }
    .form form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .form .field {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }
    .form label {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--muted-fg);
    }
    .form input {
      padding: 0.7rem 0.9rem;
      border: 1px solid var(--card-border);
      border-radius: 6px;
      font-size: 1rem;
      background: var(--card-bg);
      color: var(--card-fg);
      outline: none;
      transition: border-color 0.15s;
    }
    .form input:focus {
      border-color: var(--primary-bg);
    }
    .form button {
      padding: 0.75rem 1.25rem;
      background: var(--primary-bg);
      color: var(--primary-fg);
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.15s;
      align-self: flex-start;
    }
    .form button:hover {
      background: var(--primary-hover);
    }
    .form .note {
      font-size: 0.8rem;
      margin: 1.25rem 0 0;
      color: var(--muted-fg);
      line-height: 1.5;
    }

.contacts {
      background: linear-gradient(135deg, #E1F0F8 0%, #FFFFFF 100%);
      color: #1A2A38;
      padding: 60px 20px;
    }
    .contacts .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .contacts h2 {
      font-size: 28px;
      font-weight: 600;
      margin: 0 0 16px 0;
      line-height: 1.2;
    }
    .contacts p {
      font-size: 16px;
      line-height: 1.6;
      margin: 0 0 12px 0;
      color: #2C3E4E;
    }
    .contacts .lines {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .contacts .line {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .contacts .label {
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #2A7FAA;
    }
    .contacts .value {
      font-size: 16px;
      line-height: 1.5;
      color: #1A2A38;
    }
    .contacts a.value {
      color: #2A7FAA;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.15s;
    }
    .contacts a.value:hover {
      border-color: #2A7FAA;
    }

.support {
            background: var(--page-bg, #FFFFFF);
            color: var(--page-fg, #1A2A38);
            padding: 2.5rem 1rem;
        }
        .support .inner {
            max-width: 720px;
            margin: 0 auto;
        }
        .support__title {
            font-size: 1.6rem;
            font-weight: 600;
            line-height: 1.2;
            margin: 0 0 0.75rem 0;
            letter-spacing: -0.01em;
        }
        .support__text {
            font-size: 1rem;
            line-height: 1.55;
            margin: 0 0 1.5rem 0;
            color: var(--muted-fg, #2C3E4E);
            max-width: 580px;
        }
        .support__form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .support__field {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }
        .support__label {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--muted-fg, #2C3E4E);
        }
        .support__input {
            
            font-size: 0.95rem;
            padding: 0.7rem 0.9rem;
            border: 1px solid var(--card-border, #D0D9E0);
            border-radius: 6px;
            background: var(--card-bg, #FFFFFF);
            color: var(--card-fg, #1A2A38);
            transition: border-color 0.15s ease;
            resize: vertical;
            min-height: 80px;
        }
        .support__input:focus {
            outline: none;
            border-color: var(--primary-bg, #2A7FAA);
            box-shadow: 0 0 0 2px rgba(42,127,170,0.15);
        }
        .support__input::placeholder {
            color: #8A9AA8;
            opacity: 1;
        }
        .support__actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem 1.5rem;
            margin-top: 0.25rem;
        }
        .support__btn {
            
            font-size: 1rem;
            font-weight: 500;
            padding: 0.65rem 1.6rem;
            border: none;
            border-radius: 6px;
            background: var(--primary-bg, #2A7FAA);
            color: var(--primary-fg, #FFFFFF);
            cursor: pointer;
            transition: background 0.15s ease;
            line-height: 1.2;
        }
        .support__btn:hover {
            background: var(--primary-hover, #1F6A8F);
        }
        .support__note {
            font-size: 0.9rem;
            line-height: 1.4;
            color: var(--muted-fg, #2C3E4E);
            margin: 0;
        }
        .support__note a {
            color: var(--primary-bg, #2A7FAA);
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .support__note a:hover {
            text-decoration: none;
        }
        .support__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem 1.5rem;
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid var(--card-border, #D0D9E0);
        }
        .support__meta-item {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--muted-fg, #2C3E4E);
            background: var(--muted-bg, #F5F8FA);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            line-height: 1.4;
        }
        @media (max-width: 480px) {
            .support {
                padding: 2rem 1rem;
            }
            .support__title {
                font-size: 1.35rem;
            }
            .support__actions {
                flex-direction: column;
                align-items: stretch;
            }
            .support__btn {
                text-align: center;
            }
            .support__meta {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

.policy-items {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 3rem 1.5rem;
    }
    .policy-items .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .policy-items h2 {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 0.5rem;
      letter-spacing: -0.02em;
    }
    .policy-items .subtitle {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 2rem;
      color: var(--muted-fg, #2C3E4E);
    }
    .policy-items .entry {
      border-top: 1px solid var(--card-border, #D0D9E0);
      padding: 1.25rem 0;
    }
    .policy-items .entry:first-of-type {
      border-top: none;
    }
    .policy-items .entry h3 {
      font-size: 1rem;
      font-weight: 600;
      margin: 0 0 0.4rem;
    }
    .policy-items .entry p {
      font-size: 0.9rem;
      line-height: 1.55;
      margin: 0;
    }
    .policy-items .contact-line {
      margin: 0.2rem 0;
    }
    .policy-items .contact-line a {
      color: var(--primary-bg, #2A7FAA);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .policy-items .update-note {
      margin-top: 2rem;
      font-size: 0.8rem;
      color: var(--muted-fg, #2C3E4E);
      border-top: 1px solid var(--card-border, #D0D9E0);
      padding-top: 1rem;
    }
    @media (min-width: 640px) {
      .policy-items {
        padding: 4rem 2rem;
      }
      .policy-items h2 {
        font-size: 1.8rem;
      }
    }

.terms-items {
      background: var(--page-bg, #FFFFFF);
      color: var(--page-fg, #1A2A38);
      padding: 2.5rem 1rem;
      
      line-height: 1.6;
    }
    .terms-items .inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .terms-items h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 0.75rem 0;
      letter-spacing: -0.01em;
      color: var(--page-fg, #1A2A38);
    }
    .terms-items .intro {
      font-size: 1rem;
      margin: 0 0 2rem 0;
      color: var(--muted-fg, #2C3E4E);
      border-left: 3px solid var(--brand-primary-bg, #2A7FAA);
      padding-left: 1rem;
      background: var(--muted-bg, #F5F8FA);
      padding: 0.75rem 1rem;
      border-radius: 0 6px 6px 0;
    }
    .terms-items .entry {
      margin-bottom: 2rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--card-border, #D0D9E0);
    }
    .terms-items .entry:last-of-type {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    .terms-items h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      color: var(--brand-primary-bg, #2A7FAA);
    }
    .terms-items p {
      font-size: 0.95rem;
      margin: 0 0 0.5rem 0;
      color: var(--page-fg, #1A2A38);
    }
    .terms-items .note {
      font-size: 0.9rem;
      color: var(--muted-fg, #2C3E4E);
      background: var(--accent-bg, #E1F0F8);
      padding: 0.4rem 0.75rem;
      border-radius: 4px;
      display: inline-block;
      margin-top: 0.25rem;
      line-height: 1.5;
    }
    @media (max-width: 600px) {
      .terms-items {
        padding: 1.5rem 0.75rem;
      }
      .terms-items h2 {
        font-size: 1.4rem;
      }
      .terms-items .intro {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
      }
      .terms-items h3 {
        font-size: 1.05rem;
      }
      .terms-items p {
        font-size: 0.9rem;
      }
      .terms-items .note {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
      }
    }

.thank {
      display: block;
      background: var(--gradient-hero-bg, linear-gradient(135deg, #E1F0F8 0%, #FFFFFF 100%));
      color: var(--gradient-hero-fg, #1A2A38);
      padding: 3rem 1.5rem;
    }
    .thank .inner {
      max-width: 700px;
      margin: 0 auto;
    }
    .thank .badge {
      display: inline-block;
      background: var(--accent-bg, #E1F0F8);
      color: var(--accent-fg, #1A4A6A);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      padding: 0.35rem 1rem;
      border-radius: 20px;
      margin-bottom: 1.5rem;
    }
    .thank .title {
      font-size: 1.9rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 1.2rem 0;
    }
    .thank .subtitle {
      font-size: 1.1rem;
      line-height: 1.5;
      margin: 0 0 1.8rem 0;
      color: var(--muted-fg, #2C3E4E);
    }
    .thank .note {
      background: var(--card-bg, #FFFFFF);
      color: var(--card-fg, #1A2A38);
      border-radius: 12px;
      padding: 1.4rem 1.6rem;
      margin-bottom: 1.6rem;
      border: 1px solid var(--card-border, #D0D9E0);
    }
    .thank .note p {
      margin: 0 0 0.4rem 0;
      font-size: 0.95rem;
      line-height: 1.5;
    }
    .thank .note p:last-child {
      margin-bottom: 0;
    }
    .thank .next-step-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 1.8rem 0 0.6rem 0;
    }
    .thank .next-step-text {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 1.2rem 0;
      color: var(--muted-fg, #2C3E4E);
    }
    .thank .contact-line {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem 2rem;
      margin-top: 1.8rem;
      padding-top: 1.2rem;
      border-top: 1px solid var(--card-border, #D0D9E0);
    }
    .thank .contact-line a {
      color: var(--primary-bg, #2A7FAA);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
    }
    .thank .contact-line a:hover {
      text-decoration: underline;
    }
    .thank .contact-line span {
      font-size: 0.9rem;
      color: var(--muted-fg, #2C3E4E);
    }
    @media (max-width: 500px) {
      .thank .title {
        font-size: 1.5rem;
      }
      .thank .subtitle {
        font-size: 1rem;
      }
      .thank .note {
        padding: 1rem 1.2rem;
      }
      .thank .contact-line {
        flex-direction: column;
        gap: 0.5rem;
      }
    }

.page-404 {
      background: #FFFFFF;
      color: #1A2A38;
      padding: 4rem 1.5rem;
      display: flex;
      justify-content: center;
    }
    .page-404 .inner {
      max-width: 36rem;
      width: 100%;
      text-align: center;
    }
    .page-404 h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 1rem;
      line-height: 1.3;
      letter-spacing: -0.02em;
    }
    .page-404 p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2rem;
      color: #2C3E4E;
    }
    .page-404 .primary-link {
      display: inline-block;
      background: #2A7FAA;
      color: #FFFFFF;
      padding: 0.75rem 2rem;
      border-radius: 6px;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: background 0.2s;
    }
    .page-404 .primary-link:hover {
      background: #1F6A8F;
    }

.404 {
  background: var(--page-bg);
  color: var(--page-fg);
  padding: var(--space-section-y) var(--space-section-x);
}
.404 .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: var(--space-card);
}
.404 h2,
.404 p {
  margin: 0;
}
.404 h2 {
  font-size: var(--font-size-h2);
  line-height: 1.08;
}
.404 p {
  max-width: 62ch;
  font-size: var(--font-size-lg);
}