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

:root {
  --font-family: "Orbitron", sans-serif;
  --font-size-base: 14.4px;
  --line-height-base: 1.95;

  --max-w: 1060px;
  --space-x: 1.59rem;
  --space-y: 1.5rem;
  --gap: 0.84rem;
  --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.29rem;
  --radius-lg: 1rem;
  --radius-md: 0.58rem;
  --radius-sm: 0.31rem;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.07);
  --shadow-lg: 0 14px 26px rgba(0,0,0,0.09);

  --overlay: rgba(30, 40, 20, 0.55);
  --anim-duration: 490ms;
  --anim-ease: ease-in-out;
  --random-number: 1;

  --brand: #3b5e3b;
  --brand-contrast: #f5f2eb;
  --accent: #8b6b4a;
  --accent-contrast: #f5f2eb;

  --neutral-0: #faf8f4;
  --neutral-100: #f0ede6;
  --neutral-300: #c8c2b6;
  --neutral-600: #7a7368;
  --neutral-800: #3d3a34;
  --neutral-900: #1f1d19;

  --page-bg: #faf8f4;
  --page-fg: #1f1d19;
  --muted-bg: #f0ede6;
  --muted-fg: #3d3a34;
  --card-bg: #ffffff;
  --card-fg: #1f1d19;
  --card-border: #d6d0c4;
  --inverse-bg: #1f1d19;
  --inverse-fg: #faf8f4;
  --primary-bg: #3b5e3b;
  --primary-fg: #f5f2eb;
  --primary-hover: #2e4b2e;
  --accent-bg: #8b6b4a;
  --accent-fg: #f5f2eb;
  --accent-hover: #6f553a;
  --gradient-hero-bg: linear-gradient(135deg, #3b5e3b 0%, #5a7a4a 50%, #8b6b4a 100%);
  --gradient-hero-fg: #faf8f4;
  --gradient-accent-bg: linear-gradient(135deg, #8b6b4a 0%, #6f553a 100%);
  --gradient-accent-fg: #faf8f4;

  --ring: #3b5e3b;

  --link: #3b5e3b;
  --link-hover: #8b6b4a;

  --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);
  gap: var(--gap);
}

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

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

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

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

.cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--primary-bg);
  color: var(--primary-fg);
  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;
  flex-shrink: 0;
}

.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.25rem;
  width: 2rem;
  height: 2rem;
}

.burger-line {
  display: block;
  width: 1.25rem;
  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: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
    width: 100%;
  }

  .burger {
    display: flex;
  }

  .cta-button {
    display: none;
  }

  .header-wrapper {
    position: relative;
  }
}

footer {
    background-color: var(--muted-bg, #f5f5f5);
    color: var(--muted-fg, #333);
    font-family: var(--font-family, 'Arial', sans-serif);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.6);
    padding: var(--space-section-y, 2rem) var(--space-section-x, 1rem);
  }

  .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-direction: column;
    gap: var(--space-y, 0.5rem);
  }

  .contact-item {
    display: block;
  }

  .contact-value {
    font-weight: 500;
  }

  .footer-logo {
    font-size: var(--font-size-h3, 1.25rem);
    font-weight: 700;
    color: var(--primary-bg, #2c6b2f);
  }

  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap, 1rem);
  }

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

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

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap, 1rem);
  }

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

  .footer-legal a:hover {
    text-decoration: underline;
  }

  .footer-disclaimer {
    font-size: var(--font-size-sm, 0.875rem);
    color: var(--muted-fg, #666);
    border-top: 1px solid var(--card-border, #ddd);
    padding-top: var(--space-y, 0.5rem);
  }

  .footer-disclaimer p {
    margin: 0;
  }

  .footer-copy {
    font-size: var(--font-size-sm, 0.875rem);
    color: var(--muted-fg, #999);
  }

  .footer-copy p {
    margin: 0;
  }

  @media (min-width: 768px) {
    .footer-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--gap, 2rem);
    }

    .footer-contact {
      grid-column: 1 / 2;
    }

    .footer-brand {
      grid-column: 2 / 3;
      text-align: right;
    }

    .footer-nav {
      grid-column: 1 / 2;
    }

    .footer-legal {
      grid-column: 2 / 3;
      justify-content: flex-end;
    }

    .footer-disclaimer {
      grid-column: 1 / -1;
    }

    .footer-copy {
      grid-column: 1 / -1;
      text-align: center;
    }
  }

.cookie-notice {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--card-bg);
  color: var(--card-fg);
  border-bottom: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-section-x);
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-base);
}

.cookie-notice__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap);
}

.cookie-notice__copy {
  flex: 1 1 60%;
  min-width: 240px;
}

.cookie-notice__title {
  font-size: var(--font-size-md);
  font-weight: 600;
  margin-right: 0.5rem;
}

.cookie-notice__text {
  display: inline;
  margin: 0;
}

.cookie-notice__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap);
  flex-shrink: 0;
}

.cookie-notice__btn {
  cursor: pointer;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  font-family: var(--font-family);
  transition: background 0.2s, color 0.2s;
}

.cookie-notice__btn--primary {
  background: var(--primary-bg);
  color: var(--primary-fg);
}

.cookie-notice__btn--primary:hover {
  background: var(--primary-hover);
}

.cookie-notice__btn--ghost {
  background: var(--btn-ghost-bg);
  color: var(--card-fg);
}

.cookie-notice__btn--ghost:hover {
  background: var(--btn-ghost-bg-hover);
}

.cookie-notice__btn--link {
  background: transparent;
  color: var(--link);
  text-decoration: underline;
  padding: 0.4rem 0.5rem;
}

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

.intro-focus {
      background: #faf8f4;
      color: #1f1d19;
      padding: 3rem 1.5rem;
    }
    .intro-focus .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .intro-focus .title {
      font-size: 2rem;
      font-weight: 500;
      line-height: 1.2;
      margin: 0 0 1.25rem;
      letter-spacing: -0.01em;
    }
    .intro-focus .lead {
      font-size: 1.05rem;
      line-height: 1.55;
      margin: 0 0 1rem;
      color: #3d3a34;
    }
    .intro-focus .note {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 1.75rem;
      color: #5a554a;
      padding-left: 1rem;
      border-left: 3px solid #8b6b4a;
    }
    .intro-focus .action-line {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }
    .intro-focus .action {
      display: inline-block;
      background: #3b5e3b;
      color: #f5f2eb;
      padding: 0.6rem 1.4rem;
      border-radius: 6px;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: background 0.2s;
    }
    .intro-focus .action:hover {
      background: #2e4b2e;
    }
    .intro-focus .divider {
      width: 1px;
      height: 1.4rem;
      background: #d6d0c4;
      display: inline-block;
    }
    .intro-focus .tagline {
      font-size: 0.9rem;
      color: #6f553a;
      letter-spacing: 0.01em;
    }
    @media (max-width: 480px) {
      .intro-focus .title {
        font-size: 1.6rem;
      }
      .intro-focus .action-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
      .intro-focus .divider {
        display: none;
      }
    }

.how-it-works {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .how-it-works .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .how-it-works h2 {
      font-size: 1.6rem;
      font-weight: 500;
      margin: 0 0 0.25rem 0;
      letter-spacing: 0.02em;
    }
    .how-it-works .note {
      font-size: 0.85rem;
      color: var(--muted-fg, #b0aba0);
      margin: 0 0 2rem 0;
      line-height: 1.5;
    }
    .how-it-works .steps {
      display: flex;
      flex-direction: column;
    }
    .how-it-works .step {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.25rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .how-it-works .step:last-child {
      border-bottom: none;
    }
    .how-it-works .step-num {
      flex-shrink: 0;
      width: 2rem;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--accent-bg, #8b6b4a);
      line-height: 1.4;
      letter-spacing: 0.05em;
    }
    .how-it-works .step-body {
      flex: 1;
      min-width: 0;
    }
    .how-it-works .step-title {
      font-size: 1rem;
      font-weight: 500;
      margin: 0 0 0.2rem 0;
      line-height: 1.3;
    }
    .how-it-works .step-text {
      font-size: 0.9rem;
      line-height: 1.5;
      margin: 0 0 0.15rem 0;
      color: var(--muted-fg, #b0aba0);
    }
    .how-it-works .step-meta {
      font-size: 0.8rem;
      color: var(--accent-bg, #8b6b4a);
      line-height: 1.4;
    }
    @media (min-width: 640px) {
      .how-it-works {
        padding: 4rem 2rem;
      }
      .how-it-works h2 {
        font-size: 1.8rem;
      }
      .how-it-works .step {
        padding: 1.5rem 0;
      }
      .how-it-works .step-num {
        width: 2.5rem;
        font-size: 0.9rem;
      }
      .how-it-works .step-title {
        font-size: 1.05rem;
      }
    }

.next-step {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
      
    }
    .next-step .inner {
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
    }
    .next-step h2 {
      margin: 0 0 0.75rem;
      font-size: 1.5rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      line-height: 1.2;
      color: var(--page-fg);
    }
    .next-step p {
      margin: 0 0 1.5rem;
      font-size: 1rem;
      line-height: 1.5;
      color: var(--page-fg);
      opacity: 0.85;
    }
    .next-step .action {
      display: inline-block;
      background: var(--primary-bg, #3b5e3b);
      color: var(--primary-fg, #f5f2eb);
      padding: 0.7rem 2rem;
      font-size: 1rem;
      font-weight: 500;
      text-decoration: none;
      border-radius: 4px;
      transition: background 0.2s ease;
      letter-spacing: 0.02em;
    }
    .next-step .action:hover {
      background: var(--primary-hover, #2e4b2e);
    }

.social-proof {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .social-proof .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .social-proof h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 0.75rem;
      line-height: 1.2;
      letter-spacing: 0.01em;
    }
    .social-proof .lead {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0 0 2rem;
      color: var(--inverse-fg);
      opacity: 0.85;
      max-width: 640px;
    }
    .social-proof .notes {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .social-proof .note {
      border-top: 1px solid rgba(255,255,255,0.15);
      padding-top: 1.25rem;
    }
    .social-proof .note .meta {
      display: block;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      opacity: 0.6;
      margin-bottom: 0.35rem;
    }
    .social-proof .note p {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.55;
      color: var(--inverse-fg);
    }
    @media (min-width: 640px) {
      .social-proof {
        padding: 4rem 2rem;
      }
      .social-proof h2 {
        font-size: 1.75rem;
      }
      .social-proof .lead {
        font-size: 1rem;
      }
      .social-proof .notes {
        gap: 1.5rem;
      }
      .social-proof .note {
        padding-top: 1.5rem;
      }
    }

.recommendations {
      background: var(--page-bg, #faf8f4);
      color: var(--page-fg, #1f1d19);
      padding: 2.5rem 1.25rem;
    }
    .recommendations .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .recommendations h2 {
      font-size: 1.4rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      margin: 0 0 1.25rem 0;
      line-height: 1.3;
      color: var(--page-fg, #1f1d19);
    }
    .recommendations .note {
      font-size: 0.95rem;
      line-height: 1.55;
      color: var(--muted-fg, #3d3a34);
      margin: 0 0 1.5rem 0;
    }
    .recommendations .items {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }
    .recommendations .item {
      border-bottom: 1px solid var(--card-border, #d6d0c4);
      padding-bottom: 1.5rem;
    }
    .recommendations .item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .recommendations .item h3 {
      font-size: 1.1rem;
      font-weight: 500;
      margin: 0 0 0.25rem 0;
      line-height: 1.3;
      color: var(--page-fg, #1f1d19);
    }
    .recommendations .item .sub {
      font-size: 0.85rem;
      color: var(--accent-bg, #8b6b4a);
      margin: 0 0 0.4rem 0;
      font-style: italic;
    }
    .recommendations .item p {
      font-size: 0.92rem;
      line-height: 1.55;
      color: var(--muted-fg, #3d3a34);
      margin: 0 0 0.6rem 0;
    }
    .recommendations .item .more {
      display: inline-block;
      font-size: 0.85rem;
      color: var(--primary-bg, #3b5e3b);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.15s;
      letter-spacing: 0.01em;
    }
    .recommendations .item .more:hover {
      border-bottom-color: var(--primary-bg, #3b5e3b);
    }
    @media (min-width: 640px) {
      .recommendations {
        padding: 3.5rem 2rem;
      }
      .recommendations h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
      }
      .recommendations .note {
        font-size: 1rem;
        margin-bottom: 2rem;
      }
      .recommendations .items {
        gap: 2rem;
      }
      .recommendations .item h3 {
        font-size: 1.2rem;
      }
    }

.feedback {
      background: var(--page-bg, #faf8f4);
      color: var(--page-fg, #1f1d19);
      padding: 3rem 1.5rem;
    }

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

    .feedback h2 {
      font-size: 1.75rem;
      font-weight: 500;
      margin: 0 0 0.75rem 0;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }

    .feedback .lead {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2rem 0;
      color: var(--muted-fg, #3d3a34);
      max-width: 640px;
    }

    .feedback .entries {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
      margin: 0 0 2.5rem 0;
    }

    .feedback .entry {
      border-top: 1px solid var(--card-border, #d6d0c4);
      padding-top: 1.5rem;
    }

    .feedback .entry:first-child {
      border-top: none;
      padding-top: 0;
    }

    .feedback .entry-text {
      font-size: 1rem;
      line-height: 1.7;
      margin: 0 0 0.5rem 0;
      font-style: normal;
    }

    .feedback .entry-author {
      font-size: 0.9rem;
      color: var(--muted-fg, #3d3a34);
      margin: 0;
      font-weight: 400;
    }

    .feedback .footnote {
      font-size: 0.9rem;
      line-height: 1.5;
      color: var(--muted-fg, #3d3a34);
      margin: 0;
      padding-top: 1.5rem;
      border-top: 1px solid var(--card-border, #d6d0c4);
    }

    .feedback .footnote a {
      color: var(--accent-bg, #8b6b4a);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .feedback .footnote a:hover {
      color: var(--accent-hover, #6f553a);
    }

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

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

      .feedback .lead {
        font-size: 1.05rem;
      }
    }

.capabilities {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .capabilities .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .capabilities h2 {
      font-size: 1.6rem;
      font-weight: 500;
      margin: 0 0 0.75rem;
      letter-spacing: -0.01em;
    }
    .capabilities .lead {
      font-size: 0.95rem;
      line-height: 1.55;
      color: var(--muted-fg);
      margin: 0 0 2rem;
    }
    .capabilities .items {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }
    .capabilities .item {
      border-top: 1px solid var(--muted-bg);
      padding-top: 1.25rem;
    }
    .capabilities .item:first-child {
      border-top: none;
      padding-top: 0;
    }
    .capabilities .item h3 {
      font-size: 1.1rem;
      font-weight: 500;
      margin: 0 0 0.4rem;
    }
    .capabilities .item p {
      font-size: 0.9rem;
      line-height: 1.55;
      margin: 0 0 0.35rem;
      color: var(--muted-fg);
    }
    .capabilities .item .benefit {
      font-size: 0.85rem;
      color: var(--brand-primary-bg);
      margin-top: 0.15rem;
    }
    .capabilities .action {
      display: inline-block;
      margin-top: 2rem;
      font-size: 0.9rem;
      color: var(--brand-primary-bg);
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-thickness: 1px;
    }
    .capabilities .action:hover {
      color: var(--brand-primary-hover);
    }

.plans-overview {
            background: #faf8f4;
            color: #1f1d19;
            padding: 3rem 1.5rem;
        }
        .plans-overview .inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .plans-overview .section-title {
            font-size: 1.75rem;
            font-weight: 500;
            margin: 0 0 0.75rem 0;
            line-height: 1.2;
            letter-spacing: -0.01em;
        }
        .plans-overview .section-text {
            font-size: 1rem;
            line-height: 1.55;
            margin: 0 0 2.5rem 0;
            max-width: 680px;
            color: #3d3a34;
        }
        .plans-overview .items {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .plans-overview .item {
            flex: 1 1 280px;
            background: #ffffff;
            border: 1px solid #d6d0c4;
            border-radius: 12px;
            padding: 1.75rem 1.5rem 1.5rem 1.5rem;
            display: flex;
            flex-direction: column;
        }
        .plans-overview .item-title {
            font-size: 1.2rem;
            font-weight: 500;
            margin: 0 0 0.65rem 0;
            line-height: 1.3;
        }
        .plans-overview .item-text {
            font-size: 0.95rem;
            line-height: 1.55;
            margin: 0 0 1rem 0;
            color: #3d3a34;
        }
        .plans-overview .item-value {
            font-size: 0.9rem;
            line-height: 1.5;
            margin: 0 0 1.25rem 0;
            color: #5a5348;
            background: #f0ede6;
            padding: 0.5rem 0.75rem;
            border-radius: 6px;
        }
        .plans-overview .item-link {
            display: inline-block;
            font-size: 0.95rem;
            font-weight: 500;
            color: #3b5e3b;
            text-decoration: none;
            border: 1px solid #3b5e3b;
            border-radius: 6px;
            padding: 0.5rem 1.1rem;
            align-self: flex-start;
            margin-top: auto;
            transition: background 0.15s, color 0.15s;
        }
        .plans-overview .item-link:hover {
            background: #3b5e3b;
            color: #f5f2eb;
        }
        @media (max-width: 640px) {
            .plans-overview {
                padding: 2rem 1rem;
            }
            .plans-overview .section-title {
                font-size: 1.5rem;
            }
            .plans-overview .items {
                flex-direction: column;
            }
            .plans-overview .item {
                flex: 1 1 auto;
            }
        }

.clarifications {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .clarifications .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .clarifications h2 {
      font-size: 1.6rem;
      font-weight: 500;
      margin: 0 0 0.5rem;
      line-height: 1.2;
    }
    .clarifications > .inner > p {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 2rem;
      opacity: 0.85;
    }
    .clarifications .entry {
      margin-bottom: 1.75rem;
    }
    .clarifications .entry:last-child {
      margin-bottom: 0;
    }
    .clarifications .entry h3 {
      font-size: 1.05rem;
      font-weight: 500;
      margin: 0 0 0.3rem;
      line-height: 1.3;
    }
    .clarifications .entry p {
      font-size: 0.9rem;
      line-height: 1.5;
      margin: 0;
      opacity: 0.8;
    }

.contacts {
      background: var(--inverse-bg, #1f1d19);
      color: var(--inverse-fg, #faf8f4);
      padding: 3rem 1.5rem;
    }
    .contacts .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .contacts h2 {
      margin: 0 0 0.5rem 0;
      font-size: 1.6rem;
      font-weight: 500;
      letter-spacing: 0.01em;
    }
    .contacts .subtitle {
      margin: 0 0 2rem 0;
      font-size: 0.95rem;
      line-height: 1.5;
      color: var(--muted-fg, #d6d0c4);
    }
    .contacts .contact-lines {
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
      margin-bottom: 1.8rem;
    }
    .contacts .line {
      display: flex;
      align-items: baseline;
      gap: 0.75rem;
      font-size: 0.95rem;
      line-height: 1.5;
    }
    .contacts .label {
      flex-shrink: 0;
      width: 5.2rem;
      font-weight: 500;
      color: var(--accent-bg, #8b6b4a);
      letter-spacing: 0.02em;
    }
    .contacts .value {
      color: var(--inverse-fg, #faf8f4);
    }
    .contacts .value a {
      color: var(--inverse-fg, #faf8f4);
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-color: var(--accent-bg, #8b6b4a);
      transition: color 0.15s;
    }
    .contacts .value a:hover {
      color: var(--accent-bg, #8b6b4a);
    }
    .contacts .closing {
      margin: 0;
      font-size: 0.9rem;
      color: var(--muted-fg, #d6d0c4);
      border-top: 1px solid var(--muted-bg, #3d3a34);
      padding-top: 1.2rem;
    }
    @media (max-width: 480px) {
      .contacts {
        padding: 2rem 1rem;
      }
      .contacts .line {
        flex-wrap: wrap;
        gap: 0.2rem 0.75rem;
      }
      .contacts .label {
        width: auto;
      }
    }

.support {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .support .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .support h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 1rem;
      line-height: 1.3;
    }
    .support p {
      margin: 0 0 1.5rem;
      line-height: 1.6;
      font-size: 0.95rem;
    }
    .support .channels {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .support .channel {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }
    .support .label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--muted-fg, #3d3a34);
    }
    .support .channel a {
      color: var(--accent-bg, #8b6b4a);
      text-decoration: underline;
      font-size: 1rem;
    }
    .support .channel a:hover {
      color: var(--accent-hover, #6f553a);
    }
    .support .note {
      font-size: 0.85rem;
      color: var(--muted-fg, #3d3a34);
    }
    .support .faq-link {
      font-size: 0.9rem;
      border-top: 1px solid var(--muted-bg, #f0ede6);
      padding-top: 1rem;
    }
    .support .faq-link a {
      color: var(--accent-bg, #8b6b4a);
      text-decoration: underline;
    }
    .support .faq-link a:hover {
      color: var(--accent-hover, #6f553a);
    }

.form {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 3rem 1.5rem;
    }
    .form .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .form h2 {
      margin: 0 0 0.5rem 0;
      font-size: 1.6rem;
      font-weight: 500;
      line-height: 1.2;
    }
    .form p {
      margin: 0 0 1.8rem 0;
      font-size: 1rem;
      line-height: 1.5;
      opacity: 0.9;
    }
    .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.9rem;
      font-weight: 500;
      letter-spacing: 0.02em;
    }
    .form input {
      background: var(--card-bg);
      color: var(--card-fg);
      border: 1px solid var(--card-border);
      border-radius: 6px;
      padding: 0.7rem 0.9rem;
      font-size: 1rem;
      
      outline: none;
      transition: border-color 0.15s;
    }
    .form input:focus {
      border-color: var(--primary-bg);
    }
    .form input::placeholder {
      color: var(--muted-fg);
      opacity: 0.7;
    }
    .form button {
      background: var(--primary-bg);
      color: var(--primary-fg);
      border: none;
      border-radius: 6px;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.15s;
      align-self: flex-start;
    }
    .form button:hover {
      background: var(--primary-hover);
    }
    @media (max-width: 480px) {
      .form {
        padding: 2rem 1rem;
      }
      .form h2 {
        font-size: 1.35rem;
      }
      .form button {
        width: 100%;
        text-align: center;
      }
    }

.policy-items {
      background: var(--page-bg);
      color: var(--page-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.75rem;
      line-height: 1.2;
      color: var(--brand-primary-bg, #3b5e3b);
    }
    .policy-items .intro {
      font-size: 1rem;
      line-height: 1.5;
      margin: 0 0 2rem;
      color: var(--muted-fg, #3d3a34);
    }
    .policy-items .entry {
      border-top: 1px solid var(--card-border, #d6d0c4);
      padding: 1.25rem 0;
    }
    .policy-items .entry:first-of-type {
      border-top: none;
    }
    .policy-items .entry h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.4rem;
      line-height: 1.3;
    }
    .policy-items .entry p {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0;
      color: var(--muted-fg, #3d3a34);
    }
    .policy-items .note {
      margin-top: 1.5rem;
      padding: 1rem 1.25rem;
      background: var(--muted-bg, #f0ede6);
      border-radius: 6px;
    }
    .policy-items .note p {
      font-size: 0.9rem;
      color: var(--muted-fg, #3d3a34);
    }

.terms-items {
            background: var(--page-bg, #faf8f4);
            color: var(--page-fg, #1f1d19);
            padding: 2.5rem 1.25rem;
            
            line-height: 1.55;
        }
        .terms-items .inner {
            max-width: 780px;
            margin: 0 auto;
        }
        .terms-items h2 {
            font-size: 1.6rem;
            font-weight: 600;
            margin: 0 0 0.35rem 0;
            letter-spacing: -0.01em;
            color: var(--brand-primary-bg, #3b5e3b);
        }
        .terms-items .subtitle {
            font-size: 0.95rem;
            margin: 0 0 2rem 0;
            color: var(--muted-fg, #3d3a34);
            max-width: 620px;
        }
        .terms-items .entry {
            border-top: 1px solid var(--card-border, #d6d0c4);
            padding: 1.4rem 0 1.2rem 0;
        }
        .terms-items .entry:first-of-type {
            border-top: none;
            padding-top: 0;
        }
        .terms-items .entry h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0 0 0.5rem 0;
            color: var(--brand-accent-bg, #8b6b4a);
        }
        .terms-items .entry p {
            margin: 0;
            font-size: 0.95rem;
            color: var(--page-fg, #1f1d19);
        }
        /* компактный отступ для последнего блока */
        .terms-items .entry:last-of-type {
            padding-bottom: 0;
        }
        /* никаких декоративных фонов, карточек, теней */
        @media (max-width: 540px) {
            .terms-items {
                padding: 1.75rem 1rem;
            }
            .terms-items h2 {
                font-size: 1.35rem;
            }
            .terms-items .entry h3 {
                font-size: 1rem;
            }
        }

.thank {
      background: var(--page-bg, #faf8f4);
      color: var(--page-fg, #1f1d19);
      padding: 3rem 1.5rem;
      
      line-height: 1.5;
    }
    .thank .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .thank__title {
      font-size: 1.75rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      margin: 0 0 1rem 0;
      color: var(--brand-primary-bg, #3b5e3b);
    }
    .thank__desc {
      font-size: 1rem;
      margin: 0 0 1.5rem 0;
      color: var(--page-fg, #1f1d19);
      max-width: 640px;
    }
    .thank__phone {
      color: var(--accent-bg, #8b6b4a);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .thank__phone:hover {
      color: var(--accent-hover, #6f553a);
    }
    .thank__divider {
      height: 1px;
      background: var(--muted-bg, #f0ede6);
      margin: 1.5rem 0;
      width: 100%;
    }
    .thank__next {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      margin-bottom: 0.5rem;
    }
    .thank__next-label {
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      color: var(--muted-fg, #3d3a34);
    }
    .thank__next-text {
      font-size: 0.95rem;
      color: var(--page-fg, #1f1d19);
      max-width: 620px;
    }
    .thank__contacts {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1.5rem;
      font-size: 0.9rem;
      color: var(--muted-fg, #3d3a34);
      margin-top: 0.25rem;
    }
    .thank__contact-item {
      display: inline-block;
    }
    .thank__contact-link {
      color: var(--brand-primary-bg, #3b5e3b);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .thank__contact-link:hover {
      color: var(--brand-primary-hover, #2e4b2e);
    }
    @media (max-width: 480px) {
      .thank {
        padding: 2rem 1rem;
      }
      .thank__title {
        font-size: 1.4rem;
      }
      .thank__contacts {
        flex-direction: column;
        gap: 0.4rem;
      }
    }

.404 {
        background: var(--inverse-bg);
        color: var(--inverse-fg);
        padding: 4rem 1.5rem;
        text-align: center;
    }
    .404 .inner {
        max-width: 640px;
        margin: 0 auto;
    }
    .404 h2 {
        font-size: 2.2rem;
        font-weight: 400;
        margin: 0 0 1rem;
        letter-spacing: 0.02em;
    }
    .404 p {
        font-size: 1.05rem;
        line-height: 1.6;
        margin: 0 0 2rem;
        color: var(--muted-fg);
    }
    .404 .back-link {
        display: inline-block;
        padding: 0.7rem 2rem;
        background: var(--accent-bg);
        color: var(--accent-fg);
        text-decoration: none;
        border-radius: 4px;
        font-size: 1rem;
        transition: background 0.2s;
    }
    .404 .back-link:hover {
        background: var(--accent-hover);
    }