:root {
  --font-family: "Exo 2", sans-serif;
  --font-size-base: 18.7px;
  --line-height-base: 1.74;

  --max-w: 1600px;
  --space-x: 2.51rem;
  --space-y: 1.5rem;
  --gap: 2.23rem;
  --space-section-y: calc(var(--space-y) * 2.4);
  --space-section-x: var(--space-x);
  --space-block: calc(var(--gap) * 1.5);
  --space-card: calc(var(--space-y) * .75);
  --font-size-sm: calc(var(--font-size-base) * .875);
  --font-size-md: var(--font-size-base);
  --font-size-lg: calc(var(--font-size-base) * 1.125);
  --font-size-h3: calc(var(--font-size-base) * 1.35);
  --font-size-h2: calc(var(--font-size-base) * 2);
  --font-size-h1: calc(var(--font-size-base) * 2.65);
  --motion-distance: calc(var(--gap) * var(--random-number));

  --radius-xl: 1.24rem;
  --radius-lg: 1rem;
  --radius-md: 0.62rem;
  --radius-sm: 0.29rem;

  --shadow-sm: 0 2px 5px rgba(0,0,0,0.11);
  --shadow-md: 0 12px 24px rgba(0,0,0,0.14);
  --shadow-lg: 0 28px 30px rgba(0,0,0,0.17);

  --overlay: rgba(0,0,0,0.6);
  --anim-duration: 410ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 2;

  --brand: #e85d04;
  --brand-contrast: #ffffff;
  --accent: #ff7b1a;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f5f5;
  --neutral-300: #b0b0b0;
  --neutral-600: #555555;
  --neutral-800: #2a2a2a;
  --neutral-900: #1a1a1a;

  --page-bg: #1a1a1a;
  --page-fg: #f0f0f0;
  --muted-bg: #2a2a2a;
  --muted-fg: #c0c0c0;
  --card-bg: #2a2a2a;
  --card-fg: #f0f0f0;
  --card-border: #444444;
  --inverse-bg: #f5f5f5;
  --inverse-fg: #1a1a1a;
  --primary-bg: #e85d04;
  --primary-fg: #ffffff;
  --primary-hover: #d04d00;
  --accent-bg: #ff7b1a;
  --accent-fg: #ffffff;
  --accent-hover: #e66a00;
  --gradient-hero-bg: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  --gradient-hero-fg: #f0f0f0;
  --gradient-accent-bg: linear-gradient(135deg, #e85d04 0%, #ff7b1a 100%);
  --gradient-accent-fg: #ffffff;

  --ring: #e85d04;

  --link: #e85d04;
  --link-hover: #ff7b1a;

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

/* Header base */
.site-header {
  background-color: var(--primary-bg, #1a3a5c);
  color: var(--primary-fg, #ffffff);
  width: 100%;
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding-left: var(--space-x, 1rem);
  padding-right: var(--space-x, 1rem);
}

/* Utility row */
.header-utility {
  background-color: var(--muted-bg, #0f2a44);
  color: var(--muted-fg, #c0d0e0);
  font-size: var(--font-size-sm, 0.875rem);
  line-height: var(--line-height-base, 1.5);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-utility .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

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

/* Main row */
.header-main {
  background-color: var(--primary-bg, #1a3a5c);
  color: var(--primary-fg, #ffffff);
}

.header-main .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* Logo */
.logo {
  font-size: var(--font-size-h3, 1.5rem);
  font-weight: 700;
  text-decoration: none;
  color: var(--primary-fg, #ffffff);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo:hover {
  opacity: 0.9;
}

/* Navigation */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap, 1.5rem);
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--primary-fg, #ffffff);
  font-size: var(--font-size-md, 1rem);
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm, 4px);
  cursor: pointer;
  padding: 0.4rem;
  gap: 4px;
  transition: background var(--anim-duration, 0.3s) ease;
}

.burger:hover {
  background: rgba(255,255,255,0.1);
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-fg, #ffffff);
  border-radius: 1px;
  transition: transform var(--anim-duration, 0.3s) ease, opacity var(--anim-duration, 0.3s) 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);
}

/* Mobile */
@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary-bg, #1a3a5c);
    border-top: 1px solid rgba(255,255,255,0.15);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.15));
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration, 0.4s) ease;
  }

  .nav.open {
    max-height: 300px;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.75rem var(--space-x, 1rem);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-link:hover {
    background-color: rgba(255,255,255,0.05);
  }

  .header-main {
    position: relative;
  }
}

/* Desktop */
@media (min-width: 768px) {
  .nav {
    display: flex !important;
    max-height: none !important;
    position: static !important;
    box-shadow: none !important;
    border-top: none !important;
    background: transparent !important;
  }
}

footer {
    background-color: var(--muted-bg, #f5f5f5);
    color: var(--page-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);
    width: 100%;
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
  }
  .footer-container {
    display: flex;
    flex-direction: column;
    gap: var(--gap, 1.5rem);
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap, 1rem);
    justify-content: center;
  }
  .contact-item {
    font-size: var(--font-size-sm, 0.875rem);
  }
  .contact-item a {
    color: var(--link, #1a73e8);
    text-decoration: none;
  }
  .contact-item a:hover {
    color: var(--link-hover, #1558b0);
    text-decoration: underline;
  }
  .footer-brand {
    text-align: center;
  }
  .logo {
    font-size: var(--font-size-h2, 1.5rem);
    font-weight: bold;
    color: var(--primary-bg, #333);
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap, 1rem);
    justify-content: center;
  }
  .footer-nav a {
    color: var(--link, #1a73e8);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
  }
  .footer-nav a:hover {
    color: var(--link-hover, #1558b0);
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap, 1rem);
    justify-content: center;
  }
  .footer-legal a {
    color: var(--muted-fg, #666);
    text-decoration: none;
    font-size: var(--font-size-sm, 0.875rem);
  }
  .footer-legal a:hover {
    color: var(--link-hover, #1558b0);
    text-decoration: underline;
  }
  .footer-disclaimer {
    text-align: center;
    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-block, 1rem);
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    text-align: center;
    font-size: var(--font-size-sm, 0.875rem);
    color: var(--muted-fg, #666);
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer-contact address {
      justify-content: flex-start;
    }
    .footer-nav ul {
      justify-content: flex-start;
    }
    .footer-legal {
      justify-content: flex-start;
    }
    .footer-disclaimer {
      text-align: left;
    }
    .footer-copyright {
      text-align: left;
    }
  }

.cookie-rail {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  max-width: 360px;
  background: var(--card-bg, #ffffff);
  color: var(--card-fg, #1a1a1a);
  padding: var(--space-card, 1.5rem);
  box-shadow: var(--shadow-lg, 0 4px 20px rgba(0,0,0,0.15));
  border-radius: 0 var(--radius-lg, 12px) var(--radius-lg, 0);
  z-index: 1000;
  font-family: var(--font-family, sans-serif);
  font-size: var(--font-size-sm, 0.875rem);
  line-height: var(--line-height-base, 1.5);
}
.rail-inner {
  display: flex;
  flex-direction: column;
  gap: var(--gap, 0.75rem);
}
.rail-title {
  margin: 0;
  font-size: var(--font-size-md, 1rem);
  font-weight: 600;
}
.rail-text {
  margin: 0;
  font-size: var(--font-size-sm, 0.875rem);
  color: var(--muted-fg, #555);
}
.rail-actions {
  display: flex;
  flex-direction: column;
  gap: var(--gap, 0.5rem);
}
.choice {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--radius-sm, 6px);
  font-size: var(--font-size-sm, 0.875rem);
  cursor: pointer;
  transition: background 0.2s;
}
.choice-accept {
  background: var(--primary-bg, #0066cc);
  color: var(--primary-fg, #ffffff);
}
.choice-accept:hover {
  background: var(--primary-hover, #0052a3);
}
.choice-reject {
  background: var(--muted-bg, #e0e0e0);
  color: var(--muted-fg, #333);
}
.choice-reject:hover {
  background: var(--btn-ghost-bg-hover, #d0d0d0);
}
.choice-manage {
  background: transparent;
  color: var(--link, #0066cc);
  text-decoration: underline;
  padding: 0.25rem 0;
}
.choice-manage:hover {
  color: var(--link-hover, #004080);
}

.intro-focus {
      background: var(--gradient-hero-bg, linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%));
      color: var(--gradient-hero-fg, #f0f0f0);
      padding: 4rem 1.5rem;
    }

    .intro-focus .inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 3rem;
    }

    .intro-focus .lead {
      flex: 1 1 60%;
    }

    .intro-focus .title {
      font-size: 2.6rem;
      font-weight: 700;
      line-height: 1.15;
      margin: 0 0 1.25rem;
      letter-spacing: -0.02em;
    }

    .intro-focus .subtitle {
      font-size: 1.1rem;
      line-height: 1.6;
      margin: 0 0 2rem;
      color: var(--muted-fg, #c0c0c0);
      max-width: 36em;
    }

    .intro-focus .cta-link {
      display: inline-block;
      background: var(--primary-bg, #e85d04);
      color: var(--primary-fg, #ffffff);
      padding: 0.8rem 2rem;
      border-radius: 6px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      transition: background 0.2s;
      border: none;
      cursor: pointer;
    }

    .intro-focus .cta-link:hover {
      background: var(--primary-hover, #d04d00);
    }

    .intro-focus .note {
      flex: 0 1 35%;
      border-left: 3px solid var(--accent-bg, #ff7b1a);
      padding-left: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .intro-focus .note-label {
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--accent-bg, #ff7b1a);
    }

    .intro-focus .note-text {
      font-size: 0.95rem;
      line-height: 1.55;
      color: var(--muted-fg, #c0c0c0);
    }

    @media (max-width: 768px) {
      .intro-focus .inner {
        flex-direction: column;
        gap: 2rem;
      }

      .intro-focus .lead {
        flex: 1 1 auto;
      }

      .intro-focus .note {
        border-left: none;
        border-top: 3px solid var(--accent-bg, #ff7b1a);
        padding-left: 0;
        padding-top: 1.25rem;
        flex: 1 1 auto;
      }

      .intro-focus .title {
        font-size: 2rem;
      }
    }

.how-it-works {
            background: var(--page-bg, #1a1a1a);
            color: var(--page-fg, #f0f0f0);
            padding: 3rem 1.5rem 4rem;
        }
        .how-it-works .inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .how-it-works h2 {
            font-size: 1.75rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin: 0 0 0.5rem;
            line-height: 1.2;
        }
        .how-it-works .intro {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--muted-fg, #c0c0c0);
            margin: 0 0 2.5rem;
            max-width: 640px;
        }
        .how-it-works .steps {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .how-it-works .step {
            flex: 1 1 180px;
            min-width: 160px;
            background: var(--card-bg, #2a2a2a);
            border-radius: 8px;
            padding: 1.5rem 1.25rem 1.75rem;
            border: 1px solid var(--card-border, #444444);
            display: flex;
            flex-direction: column;
        }
        .how-it-works .step-number {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            color: var(--primary-bg, #e85d04);
            margin-bottom: 0.5rem;
            line-height: 1;
        }
        .how-it-works .step-title {
            font-size: 1.05rem;
            font-weight: 600;
            margin: 0 0 0.4rem;
            line-height: 1.3;
        }
        .how-it-works .step-text {
            font-size: 0.875rem;
            line-height: 1.5;
            color: var(--muted-fg, #c0c0c0);
            margin: 0;
            flex: 1;
        }
        .how-it-works .divider {
            width: 100%;
            height: 1px;
            background: var(--card-border, #444444);
            margin: 2rem 0 0.5rem;
        }
        .how-it-works .footnote {
            font-size: 0.85rem;
            color: var(--muted-fg, #c0c0c0);
            margin: 1.25rem 0 0;
            line-height: 1.5;
        }
        .how-it-works .footnote strong {
            color: var(--page-fg, #f0f0f0);
            font-weight: 500;
        }
        @media (max-width: 640px) {
            .how-it-works {
                padding: 2rem 1rem 3rem;
            }
            .how-it-works .steps {
                gap: 1rem;
            }
            .how-it-works .step {
                flex: 1 1 100%;
                min-width: 0;
            }
        }

.next-step {
      background: var(--inverse-bg, #f5f5f5);
      color: var(--inverse-fg, #1a1a1a);
      padding: 3rem 1.5rem;
    }
    .next-step .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .next-step h2 {
      font-size: 1.8rem;
      font-weight: 600;
      margin: 0 0 0.75rem;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }
    .next-step .lead {
      font-size: 1rem;
      line-height: 1.5;
      margin: 0 0 2rem;
      color: var(--inverse-fg, #1a1a1a);
      opacity: 0.85;
      max-width: 36em;
    }
    .next-step .action-block {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1.5rem 2rem;
    }
    .next-step .action-link {
      display: inline-block;
      background: var(--primary-bg, #e85d04);
      color: var(--primary-fg, #ffffff);
      font-weight: 600;
      font-size: 1rem;
      padding: 0.8rem 1.8rem;
      border-radius: 4px;
      text-decoration: none;
      transition: background 0.2s;
      line-height: 1.3;
    }
    .next-step .action-link:hover {
      background: var(--primary-hover, #d04d00);
    }
    .next-step .note {
      font-size: 0.9rem;
      line-height: 1.4;
      color: var(--inverse-fg, #1a1a1a);
      opacity: 0.7;
      max-width: 24em;
    }
    @media (min-width: 640px) {
      .next-step {
        padding: 4rem 2rem;
      }
      .next-step h2 {
        font-size: 2.2rem;
      }
      .next-step .lead {
        font-size: 1.05rem;
      }
    }

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

    .value-points .inner {
      max-width: 960px;
      margin: 0 auto;
    }

    .value-points h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 16px 0;
      line-height: 1.2;
    }

    .value-points .intro {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 0 0 40px 0;
      max-width: 680px;
    }

    .value-points .items {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .value-points .item {
      border-bottom: 1px solid var(--muted-bg);
      padding-bottom: 28px;
    }

    .value-points .item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .value-points .item-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 8px 0;
      line-height: 1.3;
    }

    .value-points .item-text {
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 0;
    }

    @media (min-width: 640px) {
      .value-points {
        padding: 80px 40px;
      }

      .value-points h2 {
        font-size: 2rem;
      }

      .value-points .items {
        gap: 32px;
      }

      .value-points .item {
        padding-bottom: 32px;
      }
    }

.recommendations {
      background: var(--inverse-bg, #f5f5f5);
      color: var(--inverse-fg, #1a1a1a);
      padding: 3rem 1.5rem;
    }

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

    .recommendations .rec-heading {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      line-height: 1.2;
    }

    .recommendations .rec-intro {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 2rem 0;
      color: var(--muted-fg, #555);
      max-width: 640px;
    }

    .recommendations .rec-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .recommendations .rec-item {
      border-bottom: 1px solid var(--card-border, #ddd);
      padding-bottom: 1.5rem;
    }

    .recommendations .rec-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .recommendations .rec-item-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.35rem 0;
      line-height: 1.3;
    }

    .recommendations .rec-item-text {
      font-size: 0.9rem;
      line-height: 1.55;
      margin: 0 0 0.6rem 0;
      color: var(--muted-fg, #444);
    }

    .recommendations .rec-link {
      display: inline-block;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--primary-bg, #e85d04);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.15s;
    }

    .recommendations .rec-link:hover {
      border-bottom-color: var(--primary-bg, #e85d04);
    }

    /* адаптивность */
    @media (min-width: 640px) {
      .recommendations .rec-heading {
        font-size: 1.8rem;
      }

      .recommendations .rec-intro {
        font-size: 1rem;
      }

      .recommendations .rec-item-title {
        font-size: 1.2rem;
      }

      .recommendations .rec-item-text {
        font-size: 0.95rem;
      }
    }

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

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

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

    .plans-overview .intro {
      font-size: 0.95rem;
      line-height: 1.5;
      color: var(--muted-fg);
      margin: 0 0 2rem 0;
    }

    .plans-overview .items {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 2rem;
    }

    .plans-overview .item {
      border-top: 1px solid var(--card-border);
      padding-top: 1.25rem;
    }

    .plans-overview .item h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
    }

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

    .plans-overview .action {
      display: inline-block;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--primary-bg);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.15s;
    }

    .plans-overview .action:hover {
      border-bottom-color: var(--primary-bg);
    }

    .plans-overview .note {
      font-size: 0.85rem;
      color: var(--muted-fg);
      margin: 2.5rem 0 0 0;
      padding-top: 1rem;
      border-top: 1px solid var(--card-border);
    }

    @media (max-width: 700px) {
      .plans-overview .items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
    }

.capabilities {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
    }
    .capabilities .inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .capabilities h2 {
      font-size: 2rem;
      font-weight: 600;
      margin: 0 0 1rem 0;
      letter-spacing: -0.02em;
    }
    .capabilities > .inner > p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 0 0 3rem 0;
      max-width: 720px;
    }
    .capabilities .service-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .capabilities .service-item {
      padding: 1.75rem 0;
      border-top: 1px solid var(--muted-bg);
    }
    .capabilities .service-item:last-child {
      border-bottom: 1px solid var(--muted-bg);
    }
    .capabilities .service-item h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
    }
    .capabilities .service-item p {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 0 0 0.75rem 0;
      max-width: 680px;
    }
    .capabilities .service-link {
      display: inline-block;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--primary-bg);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }
    .capabilities .service-link:hover {
      border-color: var(--primary-bg);
    }
    @media (min-width: 768px) {
      .capabilities {
        padding: 5rem 2rem;
      }
      .capabilities h2 {
        font-size: 2.5rem;
      }
      .capabilities .service-item {
        padding: 2rem 0;
      }
    }

.feedback {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 60px 20px;
    }
    .feedback .inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .feedback h2 {
      font-size: 1.8rem;
      font-weight: 600;
      margin: 0 0 12px 0;
      line-height: 1.2;
    }
    .feedback .intro {
      font-size: 1rem;
      line-height: 1.5;
      margin: 0 0 40px 0;
      color: var(--muted-fg);
    }
    .feedback .entries {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }
    .feedback .entry {
      border-top: 1px solid var(--card-border);
      padding-top: 20px;
    }
    .feedback .entry:first-child {
      border-top: none;
      padding-top: 0;
    }
    .feedback .entry-text {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 8px 0;
    }
    .feedback .entry-author {
      font-size: 0.9rem;
      color: var(--muted-fg);
      margin: 0;
    }
    .feedback .cta-line {
      margin: 40px 0 0 0;
      font-size: 0.95rem;
      color: var(--muted-fg);
    }
    .feedback .cta-line a {
      color: var(--accent-bg);
      text-decoration: underline;
    }
    .feedback .cta-line a:hover {
      color: var(--accent-hover);
    }

.clarifications {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .clarifications .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .clarifications h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 1rem 0;
      line-height: 1.3;
    }
    .clarifications p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1.5rem 0;
      color: var(--inverse-fg);
    }
    .clarifications .action {
      display: inline-block;
      background: var(--primary-bg);
      color: var(--primary-fg);
      padding: 0.6rem 1.4rem;
      border-radius: 4px;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: background 0.2s;
    }
    .clarifications .action:hover {
      background: var(--primary-hover);
    }

.form {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 60px 20px;
    }
    .form .inner {
      max-width: 600px;
      margin: 0 auto;
    }
    .form h2 {
      margin: 0 0 12px 0;
      font-size: 1.6rem;
      font-weight: 600;
      line-height: 1.2;
    }
    .form p {
      margin: 0 0 28px 0;
      font-size: 0.95rem;
      line-height: 1.5;
      color: var(--muted-fg);
    }
    .form form {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .form .field {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .form .field label {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--muted-fg);
    }
    .form .field input {
      padding: 10px 14px;
      border: 1px solid var(--card-border);
      border-radius: 6px;
      background: var(--card-bg);
      color: var(--card-fg);
      font-size: 0.95rem;
      outline: none;
      transition: border-color 0.2s;
    }
    .form .field input:focus {
      border-color: var(--primary-bg);
    }
    .form .field input::placeholder {
      color: var(--muted-fg);
      opacity: 0.7;
    }
    .form button {
      padding: 12px 20px;
      border: none;
      border-radius: 6px;
      background: var(--primary-bg);
      color: var(--primary-fg);
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
    }
    .form button:hover {
      background: var(--primary-hover);
    }
    .form .notes {
      margin: 24px 0 0 0;
      padding: 0;
      list-style: none;
    }
    .form .notes li {
      position: relative;
      padding-left: 16px;
      font-size: 0.85rem;
      color: var(--muted-fg);
      line-height: 1.5;
    }
    .form .notes li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.5em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent-bg);
    }

.contacts {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 3rem 1.5rem;
    }
    .contacts .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .contacts h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 1rem 0;
      line-height: 1.2;
    }
    .contacts .note {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0 0 0.75rem 0;
      color: var(--gradient-hero-fg);
      opacity: 0.9;
    }
    .contacts .details {
      margin-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.15);
      padding-top: 1.25rem;
    }
    .contacts .item {
      display: flex;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
      font-size: 0.95rem;
      line-height: 1.5;
    }
    .contacts .label {
      flex-shrink: 0;
      min-width: 5.5rem;
      font-weight: 500;
      color: var(--gradient-hero-fg);
      opacity: 0.7;
    }
    .contacts .value {
      color: var(--gradient-hero-fg);
    }
    .contacts a.value {
      color: var(--accent-bg);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .contacts a.value:hover {
      color: var(--accent-hover);
    }

.policy-items {
      background: var(--page-bg, #1a1a1a);
      color: var(--page-fg, #f0f0f0);
      padding: 3rem 1.5rem;
      
    }
    .policy-items .inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .policy-items h2 {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 1.25rem;
      letter-spacing: 0.02em;
      line-height: 1.3;
      color: var(--page-fg, #f0f0f0);
    }
    .policy-items h3 {
      font-size: 1.2rem;
      font-weight: 600;
      margin: 2rem 0 0.75rem;
      letter-spacing: 0.01em;
      line-height: 1.3;
      color: var(--brand-primary-bg, #e85d04);
    }
    .policy-items p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0 0 1rem;
      color: var(--page-fg, #f0f0f0);
    }
    .policy-items p:last-of-type {
      margin-bottom: 0;
    }

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

        .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;
            line-height: 1.2;
        }

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

        .terms-items .item {
            border-top: 1px solid var(--card-border);
            padding-top: 1.25rem;
            margin-bottom: 1.25rem;
        }

        .terms-items .item h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin: 0 0 0.5rem 0;
            line-height: 1.3;
        }

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

        .terms-items .note {
            font-size: 0.875rem;
            line-height: 1.5;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid var(--card-border);
            color: var(--muted-fg);
        }

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

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

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

            .terms-items .item h3 {
                font-size: 1.25rem;
            }

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

.thank {
            background: var(--inverse-bg, #f5f5f5);
            color: var(--inverse-fg, #1a1a1a);
            padding: 4rem 1.5rem;
            
        }
        .thank .inner {
            max-width: 720px;
            margin: 0 auto;
            display: block;
        }
        .thank h2 {
            font-size: 2rem;
            font-weight: 500;
            letter-spacing: -0.02em;
            margin: 0 0 0.75rem 0;
            line-height: 1.2;
            color: var(--inverse-fg, #1a1a1a);
        }
        .thank .sub {
            font-size: 1.05rem;
            line-height: 1.5;
            margin: 0 0 2.5rem 0;
            color: var(--inverse-fg, #1a1a1a);
            opacity: 0.85;
            max-width: 580px;
        }
        .thank .steps {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            margin-bottom: 2.5rem;
        }
        .thank .step {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        .thank .step-num {
            background: var(--primary-bg, #e85d04);
            color: var(--primary-fg, #ffffff);
            font-weight: 600;
            font-size: 0.85rem;
            line-height: 1;
            width: 1.8rem;
            height: 1.8rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 0.1rem;
        }
        .thank .step-body {
            flex: 1;
        }
        .thank .step-title {
            font-weight: 600;
            font-size: 1rem;
            margin: 0 0 0.2rem 0;
            color: var(--inverse-fg, #1a1a1a);
        }
        .thank .step-desc {
            font-size: 0.9rem;
            line-height: 1.45;
            margin: 0;
            color: var(--inverse-fg, #1a1a1a);
            opacity: 0.8;
        }
        .thank .contact-block {
            border-top: 1px solid var(--inverse-fg, #1a1a1a);
            border-color: rgba(26, 26, 26, 0.15);
            padding-top: 1.75rem;
            margin-top: 0.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: baseline;
            gap: 0.5rem 1.5rem;
        }
        .thank .contact-label {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            opacity: 0.7;
        }
        .thank .contact-item {
            font-size: 0.95rem;
            color: var(--inverse-fg, #1a1a1a);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.15s;
        }
        .thank .contact-item:hover {
            border-color: var(--primary-bg, #e85d04);
        }
        .thank .contact-item[href^="tel"] {
            font-variant-numeric: tabular-nums;
        }
        .thank .back-link {
            display: inline-block;
            margin-top: 1.75rem;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--primary-bg, #e85d04);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.15s;
        }
        .thank .back-link:hover {
            border-color: var(--primary-bg, #e85d04);
        }
        @media (min-width: 640px) {
            .thank {
                padding: 5rem 2rem;
            }
            .thank h2 {
                font-size: 2.4rem;
            }
            .thank .sub {
                font-size: 1.1rem;
            }
            .thank .steps {
                gap: 1.5rem;
            }
            .thank .step-num {
                width: 2rem;
                height: 2rem;
                font-size: 0.9rem;
            }
        }

.not-found {
            background: var(--inverse-bg);
            color: var(--inverse-fg);
            padding: 4rem 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .not-found .inner {
            max-width: 540px;
            width: 100%;
        }
        .not-found h1 {
            font-size: 3rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin: 0 0 0.5rem 0;
            line-height: 1.15;
            color: var(--inverse-fg);
        }
        .not-found .code {
            font-size: 5rem;
            font-weight: 700;
            line-height: 1;
            margin: 0 0 1.5rem 0;
            color: var(--primary-bg);
        }
        .not-found p {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0 0 1.2rem 0;
            color: var(--inverse-fg);
        }
        .not-found p:last-of-type {
            margin-bottom: 2rem;
        }
        .not-found .action {
            display: inline-block;
            background: var(--primary-bg);
            color: var(--primary-fg);
            padding: 0.7rem 1.8rem;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            border-radius: 4px;
            transition: background 0.2s ease;
        }
        .not-found .action:hover {
            background: var(--primary-hover);
        }
        /* разделитель — простая горизонтальная линия */
        .not-found .divider {
            width: 60px;
            height: 2px;
            background: var(--muted-fg);
            opacity: 0.3;
            margin: 1.2rem auto 1.5rem auto;
        }
        /* адаптив */
        @media (max-width: 480px) {
            .not-found {
                padding: 3rem 1rem;
            }
            .not-found h1 {
                font-size: 2.2rem;
            }
            .not-found .code {
                font-size: 3.8rem;
            }
        }

.404 {
  background: var(--inverse-bg);
  color: var(--inverse-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);
}