/* Общие токены идут первыми, ниже подключаются стили секций. */

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

  --max-w: 920px;
  --space-x: 1.27rem;
  --space-y: 1.5rem;
  --gap: 1.02rem;
  --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: 0.75rem;
  --radius-lg: 0.51rem;
  --radius-md: 0.3rem;
  --radius-sm: 0.2rem;

  --shadow-sm: 0 0px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 5px 10px rgba(0,0,0,0.11);
  --shadow-lg: 0 8px 18px rgba(0,0,0,0.13);

  --overlay: rgba(0,0,0,0.45);
  --anim-duration: 540ms;
  --anim-ease: cubic-bezier(0.4,0,0.2,1);
  --random-number: 1;

  --brand: #0A4B7A;
  --brand-contrast: #FFFFFF;
  --accent: #0D9488;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F4F6F8;
  --neutral-300: #CBD5E1;
  --neutral-600: #64748B;
  --neutral-800: #1E293B;
  --neutral-900: #0F172A;

  --page-bg: #FFFFFF;
  --page-fg: #1E293B;
  --muted-bg: #F4F6F8;
  --muted-fg: #1E293B;
  --card-bg: #FFFFFF;
  --card-fg: #1E293B;
  --card-border: #E2E8F0;
  --inverse-bg: #0F172A;
  --inverse-fg: #F8FAFC;
  --primary-bg: #0A4B7A;
  --primary-fg: #FFFFFF;
  --primary-hover: #083A61;
  --accent-bg: #0D9488;
  --accent-fg: #FFFFFF;
  --accent-hover: #0B7A70;
  --gradient-hero-bg: linear-gradient(135deg, #0A4B7A 0%, #0D9488 100%);
  --gradient-hero-fg: #FFFFFF;
  --gradient-accent-bg: linear-gradient(135deg, #0D9488 0%, #0A4B7A 100%);
  --gradient-accent-fg: #FFFFFF;

  --ring: #0A4B7A;

  --link: #0A4B7A;
  --link-hover: #0D9488;

  --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-h3);
  font-weight: 700;
  color: var(--page-fg);
  text-decoration: none;
  line-height: 1.2;
}

.main-nav {
  display: flex;
}

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

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

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

.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-sm);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

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

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

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

@media (max-width: 767px) {
  .main-nav {
    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);
    display: none;
    z-index: 100;
  }

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

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-wrapper {
    position: relative;
  }
}

footer {
    background-color: var(--page-bg, #f8f9fa);
    color: var(--page-fg, #212529);
    padding: var(--space-section-y, 3rem) var(--space-section-x, 1.5rem);
    font-family: var(--font-family, 'Arial', 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-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap, 2rem);
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-block, 2rem);
  }

  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: var(--space-y, 0.5rem);
  }

  .contact-item a {
    color: var(--link, #0056b3);
    text-decoration: none;
  }

  .contact-item a:hover {
    color: var(--link-hover, #003d80);
    text-decoration: underline;
  }

  .footer-brand .logo {
    font-size: var(--font-size-h2, 1.75rem);
    font-weight: 700;
    color: var(--primary-bg, #0d6efd);
  }

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

  .footer-nav a {
    color: var(--link, #0056b3);
    text-decoration: none;
    font-size: var(--font-size-md, 1rem);
  }

  .footer-nav a:hover {
    color: var(--link-hover, #003d80);
    text-decoration: underline;
  }

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

  .footer-legal a {
    color: var(--muted-fg, #6c757d);
    text-decoration: none;
    font-size: var(--font-size-sm, 0.875rem);
  }

  .footer-legal a:hover {
    color: var(--link-hover, #003d80);
    text-decoration: underline;
  }

  .footer-disclaimer {
    background-color: var(--muted-bg, #e9ecef);
    padding: var(--space-block, 1rem);
    border-radius: var(--radius-md, 0.375rem);
    margin-bottom: var(--space-block, 1.5rem);
  }

  .footer-disclaimer p {
    margin: 0;
    font-size: var(--font-size-sm, 0.875rem);
    color: var(--muted-fg, #6c757d);
  }

  .footer-copyright {
    text-align: center;
    font-size: var(--font-size-sm, 0.875rem);
    color: var(--muted-fg, #6c757d);
  }

  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-nav ul {
      align-items: center;
    }

    .footer-legal {
      align-items: center;
    }
  }

.cookie-notice {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 760px;
  background: var(--card-bg, #ffffff);
  color: var(--card-fg, #1a1a1a);
  border-radius: var(--radius-lg, 12px);
  box-shadow: var(--shadow-lg, 0 8px 32px rgba(0,0,0,0.12));
  padding: var(--space-card, 1.25rem);
  z-index: 1000;
  font-family: var(--font-family, system-ui, sans-serif);
  font-size: var(--font-size-sm, 0.875rem);
  line-height: var(--line-height-base, 1.5);
  box-sizing: border-box;
}

.cookie-notice__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap, 1rem);
}

.cookie-notice__copy {
  flex: 1 1 280px;
  min-width: 0;
}

.cookie-notice__title {
  margin: 0 0 0.25rem;
  font-size: var(--font-size-md, 1rem);
  font-weight: 600;
  line-height: 1.3;
}

.cookie-notice__text {
  margin: 0;
  font-size: var(--font-size-sm, 0.875rem);
  opacity: 0.85;
}

.cookie-notice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  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, 6px);
  font-size: var(--font-size-sm, 0.875rem);
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.cookie-notice__choice--primary {
  background: var(--primary-bg, #0055ff);
  color: var(--primary-fg, #ffffff);
}

.cookie-notice__choice--primary:hover {
  background: var(--primary-hover, #0044cc);
}

.cookie-notice__choice--ghost {
  background: transparent;
  color: inherit;
  border: 1px solid var(--card-border, #d0d0d0);
}

.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);
  text-decoration: underline;
  padding: 0.5rem 0.25rem;
}

.cookie-notice__choice--link:hover {
  color: var(--link-hover, #003399);
}

@media (max-width: 640px) {
  .cookie-notice {
    left: 0.75rem;
    right: 0.75rem;
    transform: none;
    max-width: none;
    bottom: 0.75rem;
  }

  .cookie-notice__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-notice__actions {
    justify-content: flex-end;
  }
}

.intro-focus {
      background: #FFFFFF;
      color: #1E293B;
      padding: 4rem 1.5rem;
    }
    .intro-focus .inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    .intro-focus .content {
      max-width: 800px;
    }
    .intro-focus h1 {
      font-size: 2.5rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 1rem 0;
      color: #0A4B7A;
    }
    .intro-focus .lead {
      font-size: 1.125rem;
      line-height: 1.6;
      margin: 0 0 1.5rem 0;
      color: #1E293B;
    }
    .intro-focus .cta-line {
      margin-top: 0.5rem;
    }
    .intro-focus .button {
      display: inline-block;
      background: #0D9488;
      color: #FFFFFF;
      padding: 0.75rem 2rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
      font-size: 1rem;
      transition: background 0.2s;
    }
    .intro-focus .button:hover {
      background: #0B7A70;
    }
    .intro-focus .visual-anchor {
      border-left: 4px solid #0D9488;
      padding-left: 1rem;
      max-width: 600px;
    }
    .intro-focus .anchor-text {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0;
      color: #1E293B;
    }
    @media (min-width: 768px) {
      .intro-focus {
        padding: 5rem 2rem;
      }
      .intro-focus .inner {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
      }
      .intro-focus .content {
        flex: 1 1 60%;
      }
      .intro-focus .visual-anchor {
        flex: 0 0 30%;
        margin-bottom: 0.25rem;
      }
      .intro-focus h1 {
        font-size: 3rem;
      }
    }

.how-it-works {
      background: var(--page-bg, #FFFFFF);
      color: var(--page-fg, #1E293B);
      padding: 4rem 1.5rem;
    }
    .how-it-works .inner {
      max-width: 900px;
      margin: 0 auto;
    }
    .how-it-works h2 {
      font-size: 1.75rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin: 0 0 0.5rem 0;
      line-height: 1.2;
    }
    .how-it-works .subtitle {
      font-size: 1rem;
      line-height: 1.5;
      color: #475569;
      margin: 0 0 2.5rem 0;
      max-width: 600px;
    }
    .how-it-works .steps {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }
    .how-it-works .step {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 1rem;
      border-bottom: 1px solid #E2E8F0;
      padding-bottom: 1.75rem;
    }
    .how-it-works .step:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .how-it-works .step-marker {
      flex-shrink: 0;
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      background: var(--accent-bg, #0D9488);
      color: var(--accent-fg, #FFFFFF);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      font-weight: 600;
      line-height: 1;
      margin-top: 0.15rem;
    }
    .how-it-works .step-body {
      flex: 1;
      min-width: 0;
    }
    .how-it-works .step-title {
      font-size: 1.1rem;
      font-weight: 500;
      margin: 0 0 0.25rem 0;
      line-height: 1.3;
      color: #0F172A;
    }
    .how-it-works .step-text {
      font-size: 0.95rem;
      line-height: 1.5;
      color: #475569;
      margin: 0;
    }
    @media (min-width: 640px) {
      .how-it-works {
        padding: 5rem 2rem;
      }
      .how-it-works h2 {
        font-size: 2rem;
      }
      .how-it-works .subtitle {
        font-size: 1.05rem;
        margin-bottom: 3rem;
      }
      .how-it-works .steps {
        gap: 2rem;
      }
      .how-it-works .step {
        gap: 1.25rem;
        padding-bottom: 2rem;
      }
      .how-it-works .step-marker {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.95rem;
      }
      .how-it-works .step-title {
        font-size: 1.2rem;
      }
      .how-it-works .step-text {
        font-size: 1rem;
      }
    }
    @media (min-width: 900px) {
      .how-it-works .steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem 2.5rem;
      }
      .how-it-works .step {
        border-bottom: none;
        padding-bottom: 0;
      }
      .how-it-works .step:nth-last-child(2):nth-child(odd) {
        /* если последний элемент в нечетной строке — не добавляем лишнего */
      }
    }

.next-step {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 60px 24px;
    }
    .next-step .inner {
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
    }
    .next-step h2 {
      font-size: 28px;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 20px;
      letter-spacing: -0.01em;
    }
    .next-step p {
      font-size: 16px;
      line-height: 1.6;
      margin: 0 0 16px;
      color: var(--muted-fg);
    }
    .next-step .action {
      display: inline-block;
      margin-top: 12px;
      padding: 14px 36px;
      background: var(--accent-bg);
      color: var(--accent-fg);
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 6px;
      transition: background 0.2s;
    }
    .next-step .action:hover {
      background: var(--accent-hover);
    }

.faq {
      background: #FFFFFF;
      color: #1E293B;
      padding: 5rem 1.5rem;
    }
    .faq .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .faq h2 {
      font-size: 1.75rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 0.75rem;
      letter-spacing: -0.02em;
    }
    .faq > .inner > p {
      font-size: 1rem;
      line-height: 1.6;
      color: #475569;
      margin: 0 0 2.5rem;
    }
    .faq .items {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .faq .item {
      border-bottom: 1px solid #E2E8F0;
      padding-bottom: 1.5rem;
    }
    .faq .item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .faq .item h3 {
      font-size: 1.05rem;
      font-weight: 600;
      line-height: 1.4;
      margin: 0 0 0.4rem;
      color: #0A4B7A;
    }
    .faq .item p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #1E293B;
      margin: 0;
    }

.clarifications {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .clarifications .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .clarifications h2 {
      font-size: 1.5rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      margin: 0 0 0.75rem;
      color: #0A4B7A;
    }
    .clarifications p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 2rem;
      color: #475569;
    }
    .clarifications dl {
      margin: 0;
    }
    .clarifications dt {
      font-weight: 600;
      font-size: 1rem;
      margin: 0 0 0.3rem;
      color: #1E293B;
    }
    .clarifications dd {
      font-size: 0.9rem;
      line-height: 1.55;
      margin: 0 0 1.5rem 0;
      color: #475569;
      padding-left: 0.5rem;
      border-left: 2px solid #0D9488;
    }
    .clarifications dd:last-of-type {
      margin-bottom: 0;
    }
    @media (max-width: 480px) {
      .clarifications {
        padding: 2rem 1rem;
      }
      .clarifications h2 {
        font-size: 1.25rem;
      }
      .clarifications dd {
        padding-left: 0.4rem;
      }
    }

.feedback {
            background: #FFFFFF;
            color: #1E293B;
            padding: 4rem 1.5rem;
        }
        .feedback .inner {
            max-width: 48rem;
            margin: 0 auto;
        }
        .feedback__title {
            font-size: 1.75rem;
            font-weight: 600;
            line-height: 1.2;
            margin: 0 0 1.25rem;
            letter-spacing: -0.02em;
            color: #0A4B7A;
        }
        .feedback__intro {
            font-size: 1.0625rem;
            line-height: 1.6;
            margin: 0 0 1rem;
            color: #1E293B;
        }
        .feedback__text {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0 0 1.75rem;
            color: #334155;
        }
        .feedback__cta {
            display: inline-block;
            background: #0D9488;
            color: #FFFFFF;
            padding: 0.7rem 1.6rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            transition: background 0.2s ease;
            line-height: 1.4;
        }
        .feedback__cta:hover {
            background: #0B7A70;
        }
        @media (max-width: 640px) {
            .feedback {
                padding: 2.5rem 1.25rem;
            }
            .feedback__title {
                font-size: 1.5rem;
            }
            .feedback__intro,
            .feedback__text {
                font-size: 0.95rem;
            }
        }

.capabilities {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 80px 24px;
    }
    .capabilities .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .capabilities h2 {
      font-size: 32px;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 16px;
      letter-spacing: -0.02em;
    }
    .capabilities .lead {
      font-size: 17px;
      line-height: 1.6;
      color: #475569;
      margin: 0 0 48px;
      max-width: 680px;
    }
    .capabilities .items {
      display: flex;
      flex-direction: column;
      gap: 32px;
      margin-bottom: 48px;
    }
    .capabilities .item {
      border-bottom: 1px solid var(--muted-bg);
      padding-bottom: 24px;
    }
    .capabilities .item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .capabilities .item h3 {
      font-size: 20px;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 8px;
    }
    .capabilities .item p {
      font-size: 15px;
      line-height: 1.6;
      color: #475569;
      margin: 0 0 6px;
    }
    .capabilities .item .note {
      display: inline-block;
      font-size: 13px;
      color: #64748B;
      background: #F1F5F9;
      padding: 4px 10px;
      border-radius: 4px;
    }
    .capabilities .action {
      display: inline-block;
      font-size: 15px;
      font-weight: 500;
      color: var(--accent-bg);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }
    .capabilities .action:hover {
      border-color: var(--accent-bg);
    }
    @media (max-width: 600px) {
      .capabilities {
        padding: 48px 16px;
      }
      .capabilities h2 {
        font-size: 26px;
      }
      .capabilities .lead {
        font-size: 15px;
        margin-bottom: 32px;
      }
      .capabilities .items {
        gap: 24px;
      }
    }

.plans-overview {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 64px 24px;
    }
    .plans-overview .inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .plans-overview h2 {
      font-size: 28px;
      font-weight: 600;
      letter-spacing: -0.02em;
      margin: 0 0 8px;
    }
    .plans-overview .intro {
      font-size: 16px;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 0 0 40px;
      max-width: 640px;
    }
    .plans-overview .items {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
    }
    .plans-overview .item {
      flex: 1 1 280px;
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 8px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
    }
    .plans-overview .item h3 {
      font-size: 20px;
      font-weight: 600;
      margin: 0 0 12px;
      letter-spacing: -0.01em;
    }
    .plans-overview .item p {
      font-size: 15px;
      line-height: 1.65;
      margin: 0 0 16px;
    }
    .plans-overview .item .note {
      font-size: 14px;
      color: var(--muted-fg);
      margin-top: auto;
      margin-bottom: 20px;
      padding-top: 16px;
      border-top: 1px solid var(--card-border);
    }
    .plans-overview .link {
      display: inline-block;
      font-size: 15px;
      font-weight: 500;
      color: var(--accent-bg);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.15s;
      align-self: flex-start;
    }
    .plans-overview .link:hover {
      border-color: var(--accent-bg);
    }
    @media (max-width: 640px) {
      .plans-overview {
        padding: 48px 16px;
      }
      .plans-overview h2 {
        font-size: 24px;
      }
      .plans-overview .items {
        gap: 16px;
      }
      .plans-overview .item {
        flex: 1 1 100%;
      }
    }

.stay-in-touch {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .stay-in-touch .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .stay-in-touch h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 0.75rem;
      line-height: 1.3;
    }
    .stay-in-touch > .inner > p {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 1.5rem;
      color: var(--muted-fg);
    }
    .stay-in-touch form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .stay-in-touch .field {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .stay-in-touch label {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--muted-fg);
    }
    .stay-in-touch input,
    .stay-in-touch select {
      padding: 0.6rem 0.75rem;
      border: 1px solid var(--card-border);
      border-radius: 6px;
      font-size: 0.95rem;
      background: var(--card-bg);
      color: var(--card-fg);
      outline: none;
      transition: border-color 0.15s;
    }
    .stay-in-touch input:focus,
    .stay-in-touch select:focus {
      border-color: var(--primary-bg);
    }
    .stay-in-touch button {
      padding: 0.7rem 1.25rem;
      background: var(--accent-bg);
      color: var(--accent-fg);
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.15s;
      align-self: flex-start;
    }
    .stay-in-touch button:hover {
      background: var(--accent-hover);
    }
    .stay-in-touch .note {
      font-size: 0.8rem;
      color: var(--muted-fg);
      margin: 1rem 0 0;
      line-height: 1.4;
    }

.contacts {
      background: #FFFFFF;
      color: #1E293B;
      padding: 4rem 1.5rem;
    }
    .contacts .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .contacts h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 0.75rem;
      letter-spacing: -0.01em;
    }
    .contacts .subtitle {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      color: #475569;
    }
    .contacts .body {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }
    .contacts .item {
      border-bottom: 1px solid #E2E8F0;
      padding-bottom: 1.25rem;
    }
    .contacts .item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .contacts .label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: #0D9488;
      margin-bottom: 0.35rem;
    }
    .contacts address {
      font-style: normal;
      font-size: 1rem;
      line-height: 1.5;
    }
    .contacts .hours {
      margin: 0;
      font-size: 1rem;
      line-height: 1.5;
    }
    .contacts a {
      color: #0A4B7A;
      text-decoration: none;
      font-size: 1rem;
    }
    .contacts a:hover {
      text-decoration: underline;
    }

.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.5rem;
      letter-spacing: -0.02em;
    }
    .form p {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 1.5rem;
      color: var(--muted-fg, #475569);
    }
    .form form {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .form .field {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }
    .form label {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--muted-fg, #475569);
    }
    .form select,
    .form input {
      font: inherit;
      font-size: 0.95rem;
      padding: 0.65rem 0.75rem;
      border: 1px solid var(--card-border, #E2E8F0);
      border-radius: 6px;
      background: var(--card-bg, #FFFFFF);
      color: var(--card-fg, #1E293B);
      transition: border-color 0.15s;
    }
    .form select:focus,
    .form input:focus {
      outline: none;
      border-color: var(--accent-bg, #0D9488);
      box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.15);
    }
    .form button {
      font: inherit;
      font-size: 0.95rem;
      font-weight: 600;
      padding: 0.7rem 1.25rem;
      border: none;
      border-radius: 6px;
      background: var(--accent-bg, #0D9488);
      color: var(--accent-fg, #FFFFFF);
      cursor: pointer;
      transition: background 0.15s;
      align-self: flex-start;
    }
    .form button:hover {
      background: var(--accent-hover, #0B7A70);
    }

.policy-items {
  background: #FFFFFF;
  color: #1E293B;
  padding: 3rem 1.5rem;
}
.policy-items .inner {
  max-width: 760px;
  margin: 0 auto;
}
.policy-items h2 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.policy-items > .inner > p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 2.25rem;
  color: #475569;
}
.policy-items .entry {
  border-top: 1px solid #E2E8F0;
  padding: 1.25rem 0;
}
.policy-items .entry:last-child {
  border-bottom: 1px solid #E2E8F0;
}
.policy-items .entry h3 {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 0.5rem;
  color: #0A4B7A;
}
.policy-items .entry p {
  font-size: 0.925rem;
  line-height: 1.6;
  margin: 0;
  color: #475569;
}
@media (min-width: 640px) {
  .policy-items {
    padding: 4rem 2rem;
  }
  .policy-items h2 {
    font-size: 2rem;
  }
  .policy-items .entry {
    padding: 1.5rem 0;
  }
}

.terms-items {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 60px 20px;
    }

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

    .terms-items h2 {
      font-size: 1.75rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 20px 0;
      color: var(--page-fg);
    }

    .terms-items h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 32px 0 10px 0;
      color: var(--page-fg);
    }

    .terms-items p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0 0 16px 0;
      color: var(--page-fg);
    }

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

.thank {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
    }
    .thank .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .thank h2 {
      font-size: 1.75rem;
      font-weight: 500;
      margin: 0 0 1rem;
      letter-spacing: -0.02em;
    }
    .thank p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1rem;
    }
    .thank .body {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-top: 2rem;
      border-top: 1px solid var(--muted-bg);
      padding-top: 2rem;
    }
    .thank .step {
      flex: 1 1 240px;
    }
    .thank .step h3 {
      font-size: 1rem;
      font-weight: 600;
      margin: 0 0 0.5rem;
      color: var(--brand-primary-bg);
    }
    .thank .step p {
      font-size: 0.9375rem;
      line-height: 1.5;
      margin: 0;
    }

.not-found {
            background: #FFFFFF;
            color: #1E293B;
            padding: 80px 24px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 60vh;
            box-sizing: border-box;
        }
        .not-found .inner {
            max-width: 600px;
            width: 100%;
            text-align: center;
        }
        .not-found h1 {
            font-size: 2.8rem;
            font-weight: 500;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin: 0 0 20px 0;
            color: #1E293B;
        }
        .not-found p {
            font-size: 1.125rem;
            line-height: 1.6;
            margin: 0 0 36px 0;
            color: #475569;
        }
        .not-found .actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            align-items: center;
        }
        .not-found .actions a {
            display: inline-block;
            padding: 12px 28px;
            font-size: 1rem;
            font-weight: 500;
            line-height: 1.4;
            text-decoration: none;
            border-radius: 6px;
            transition: background 0.2s ease, color 0.2s ease;
            background: #0A4B7A;
            color: #FFFFFF;
        }
        .not-found .actions a:hover {
            background: #083A61;
        }
        .not-found .actions a.link-outline {
            background: transparent;
            color: #0A4B7A;
            border: 1px solid #0A4B7A;
        }
        .not-found .actions a.link-outline:hover {
            background: #F4F6F8;
            border-color: #083A61;
            color: #083A61;
        }
        @media (max-width: 480px) {
            .not-found h1 {
                font-size: 2rem;
            }
            .not-found p {
                font-size: 1rem;
            }
            .not-found .actions a {
                padding: 10px 22px;
                font-size: 0.95rem;
            }
        }

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