:root {
  --font-family: "Manrope", sans-serif;
  --font-size-base: 14.7px;
  --line-height-base: 1.36;

  --max-w: 1080px;
  --space-x: 0.66rem;
  --space-y: 0.64rem;
  --gap: 0.7rem;
  --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.87rem;
  --radius-lg: 0.51rem;
  --radius-md: 0.38rem;
  --radius-sm: 0.22rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 3px 14px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 28px rgba(0,0,0,0.09);

  --overlay: rgba(0,0,0,0.35);
  --anim-duration: 130ms;
  --anim-ease: cubic-bezier(0.2,0.8,0.2,1);
  --random-number: 2;

  --brand: #1a73e8;
  --brand-contrast: #ffffff;
  --accent: #ff6d00;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f7fa;
  --neutral-300: #d0d5dd;
  --neutral-600: #667085;
  --neutral-800: #1d2939;
  --neutral-900: #101828;

  --page-bg: #ffffff;
  --page-fg: #1d2939;
  --muted-bg: #f5f7fa;
  --muted-fg: #344054;
  --card-bg: #ffffff;
  --card-fg: #1d2939;
  --card-border: #e4e7ec;
  --inverse-bg: #1d2939;
  --inverse-fg: #ffffff;
  --primary-bg: #1a73e8;
  --primary-fg: #ffffff;
  --primary-hover: #1557b0;
  --accent-bg: #ff6d00;
  --accent-fg: #ffffff;
  --accent-hover: #e65100;
  --gradient-hero-bg: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
  --gradient-hero-fg: #ffffff;
  --gradient-accent-bg: linear-gradient(135deg, #ff6d00 0%, #e65100 100%);
  --gradient-accent-fg: #ffffff;

  --ring: #1a73e8;

  --link: #1a73e8;
  --link-hover: #ff6d00;

  --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: var(--page-bg);
  border-bottom: 1px solid var(--muted-bg);
  width: 100%;
}

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

.logo {
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--page-fg);
  text-decoration: none;
  line-height: 1;
}

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

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

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

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

.cta-button:hover {
  background: 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;
  gap: 5px;
  padding: 0;
}

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

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

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

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

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

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

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

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

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-wrapper {
    position: relative;
  }
}

footer {
  background: var(--page-bg, #ffffff);
  color: var(--page-fg, #1a1a1a);
  font-family: var(--font-family, system-ui, -apple-system, sans-serif);
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.6);
  padding: var(--space-section-y, 3rem) var(--space-section-x, 2rem);
  border-top: 1px solid var(--muted-bg, #e5e7eb);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--gap, 2rem);
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-block, 1rem);
}

.footer-logo {
  font-size: var(--font-size-h2, 1.75rem);
  font-weight: 700;
  color: var(--primary-bg, #1a73e8);
  letter-spacing: -0.02em;
}

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

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

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

.footer-menu a:hover {
  color: var(--link-hover, #1557b0);
  text-decoration: underline;
}

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

.footer-legal a {
  color: var(--muted-fg, #6b7280);
  text-decoration: none;
  font-size: var(--font-size-sm, 0.875rem);
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

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

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-weight: 600;
  font-size: var(--font-size-sm, 0.875rem);
  color: var(--muted-fg, #6b7280);
}

.footer-contact-block span:not(.contact-label),
.footer-contact-block a {
  font-size: var(--font-size-sm, 0.875rem);
  color: var(--page-fg, #1a1a1a);
  word-break: break-word;
}

.footer-contact-block a {
  color: var(--link, #1a73e8);
  text-decoration: none;
}

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

.footer-disclaimer {
  font-size: var(--font-size-sm, 0.75rem);
  color: var(--muted-fg, #6b7280);
  line-height: var(--line-height-base, 1.5);
  margin-top: var(--space-block, 1rem);
  padding-top: var(--space-y, 0.5rem);
  border-top: 1px solid var(--muted-bg, #e5e7eb);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-y, 1.5rem);
  margin-top: var(--space-section-y, 2rem);
  border-top: 1px solid var(--muted-bg, #e5e7eb);
  max-width: var(--max-w, 1200px);
  margin-left: auto;
  margin-right: auto;
}

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

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

  footer {
    padding: var(--space-section-y, 2rem) var(--space-section-x, 1rem);
  }
}

.cookie-rail {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  max-width: 360px;
  background: var(--card-bg, #ffffff);
  color: var(--card-fg, #1a1a1a);
  border: 1px solid var(--card-border, #e0e0e0);
  border-radius: 0 var(--radius-lg, 12px) var(--radius-lg, 0);
  box-shadow: var(--shadow-lg, 0 4px 20px rgba(0,0,0,0.15));
  padding: var(--space-card, 24px);
  z-index: 1000;
  font-family: var(--font-family, system-ui, sans-serif);
  font-size: var(--font-size-base, 16px);
  line-height: var(--line-height-base, 1.5);
}

.rail-inner {
  display: flex;
  flex-direction: column;
  gap: var(--gap, 16px);
}

.rail-title {
  margin: 0;
  font-size: var(--font-size-h3, 20px);
  font-weight: 600;
}

.rail-text {
  margin: 0;
  font-size: var(--font-size-sm, 14px);
  color: var(--muted-fg, #555555);
}

.rail-actions {
  display: flex;
  flex-direction: column;
  gap: var(--gap, 12px);
}

.choice {
  display: block;
  width: 100%;
  padding: 10px 16px;
  border: none;
  border-radius: var(--radius-md, 8px);
  font-size: var(--font-size-md, 16px);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.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, #f0f0f0);
  color: var(--muted-fg, #555555);
}

.choice-reject:hover {
  background: var(--btn-ghost-bg-hover, #e0e0e0);
}

.choice-manage {
  background: transparent;
  color: var(--link, #0066cc);
  text-decoration: underline;
  padding: 8px 16px;
}

.choice-manage:hover {
  color: var(--link-hover, #004080);
}

.intro-focus {
            background: var(--gradient-hero-bg, linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%));
            color: var(--gradient-hero-fg, #ffffff);
            padding: 3.5rem 1.5rem 4rem;
            
        }

        .intro-focus .inner {
            max-width: 960px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1.25rem;
        }

        .intro-focus h1 {
            font-size: 2.4rem;
            font-weight: 600;
            line-height: 1.2;
            margin: 0;
            letter-spacing: -0.02em;
            max-width: 14em;
        }

        .intro-focus p {
            font-size: 1.1rem;
            line-height: 1.55;
            margin: 0;
            opacity: 0.92;
            max-width: 36em;
        }

        .intro-focus .support-line {
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0.25rem 0 0.5rem;
            opacity: 0.8;
            border-left: 3px solid rgba(255,255,255,0.35);
            padding-left: 1rem;
        }

        .intro-focus .actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 0.75rem;
        }

        .intro-focus .actions a {
            display: inline-block;
            padding: 0.7rem 1.6rem;
            border-radius: 40px;
            font-size: 0.95rem;
            font-weight: 500;
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
            line-height: 1.3;
        }

        .intro-focus .actions .primary {
            background: var(--accent-bg, #ff6d00);
            color: var(--accent-fg, #ffffff);
        }

        .intro-focus .actions .primary:hover {
            background: var(--accent-hover, #e65100);
        }

        .intro-focus .actions .secondary {
            background: transparent;
            color: var(--gradient-hero-fg, #ffffff);
            border: 1px solid rgba(255,255,255,0.5);
        }

        .intro-focus .actions .secondary:hover {
            background: rgba(255,255,255,0.12);
            border-color: rgba(255,255,255,0.8);
        }

        @media (min-width: 640px) {
            .intro-focus {
                padding: 4.5rem 2rem 5rem;
            }

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

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

            .intro-focus .support-line {
                font-size: 1rem;
            }
        }

        @media (min-width: 960px) {
            .intro-focus h1 {
                font-size: 3.4rem;
            }
        }

.value-points {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .value-points .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .value-points h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 2rem 0;
      line-height: 1.3;
    }
    .value-points .entry {
      padding: 1.25rem 0;
      border-bottom: 1px solid var(--muted-bg);
    }
    .value-points .entry:last-child {
      border-bottom: none;
    }
    .value-points h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.35rem 0;
      line-height: 1.4;
    }
    .value-points p {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--muted-fg);
    }

.next-step {
      background: var(--inverse-bg, #1d2939);
      color: var(--inverse-fg, #ffffff);
      padding: 3.5rem 1.5rem;
    }

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

    .next-step h2 {
      margin: 0 0 1.25rem;
      font-size: 1.75rem;
      font-weight: 600;
      line-height: 1.3;
      letter-spacing: -0.01em;
    }

    .next-step p {
      margin: 0 0 1rem;
      font-size: 1rem;
      line-height: 1.6;
      color: var(--inverse-fg, #ffffff);
      opacity: 0.85;
    }

    .next-step p + p {
      margin-top: 0.5rem;
    }

    .next-step .action {
      display: inline-block;
      margin-top: 1.75rem;
      padding: 0.85rem 2.5rem;
      background: var(--accent-bg, #ff6d00);
      color: var(--accent-fg, #ffffff);
      font-size: 1.05rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 6px;
      transition: background 0.2s ease;
      line-height: 1.4;
    }

    .next-step .action:hover {
      background: var(--accent-hover, #e65100);
    }

    /* разделитель между текстом и кнопкой */
    .next-step .divider {
      width: 3rem;
      height: 2px;
      background: var(--accent-bg, #ff6d00);
      margin: 1.75rem auto 1.5rem;
      border: 0;
    }

    @media (max-width: 480px) {
      .next-step {
        padding: 2.5rem 1.25rem;
      }
      .next-step h2 {
        font-size: 1.5rem;
      }
      .next-step .action {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
      }
    }

.recommendations {
            background: var(--page-bg, #ffffff);
            color: var(--page-fg, #1d2939);
            padding: 3rem 1.5rem;
        }
        .recommendations .inner {
            max-width: 800px;
            margin: 0 auto;
        }
        .recommendations .heading {
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1.3;
            margin: 0 0 0.5rem 0;
            color: var(--page-fg, #1d2939);
        }
        .recommendations .subtitle {
            font-size: 1rem;
            line-height: 1.5;
            margin: 0 0 2rem 0;
            color: var(--muted-fg, #344054);
        }
        .recommendations .entry {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--card-border, #e4e7ec);
        }
        .recommendations .entry:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .recommendations .entry-title {
            font-size: 1.125rem;
            font-weight: 600;
            line-height: 1.4;
            margin: 0 0 0.25rem 0;
        }
        .recommendations .entry-title a {
            color: var(--brand-primary-bg, #1a73e8);
            text-decoration: none;
        }
        .recommendations .entry-title a:hover {
            text-decoration: underline;
        }
        .recommendations .entry-text {
            font-size: 0.9375rem;
            line-height: 1.6;
            margin: 0 0 0.5rem 0;
            color: var(--muted-fg, #344054);
        }
        .recommendations .entry-link {
            display: inline-block;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--brand-primary-bg, #1a73e8);
            text-decoration: none;
            padding: 0.25rem 0;
        }
        .recommendations .entry-link:hover {
            text-decoration: underline;
        }

        @media (min-width: 640px) {
            .recommendations {
                padding: 4rem 2rem;
            }
            .recommendations .heading {
                font-size: 1.75rem;
            }
            .recommendations .subtitle {
                font-size: 1.0625rem;
            }
            .recommendations .entry-title {
                font-size: 1.25rem;
            }
        }

.timeline {
      background: var(--page-bg, #ffffff);
      color: var(--page-fg, #1d2939);
      padding: 3rem 1rem;
    }

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

    .timeline .section-title {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      line-height: 1.2;
    }

    .timeline .section-desc {
      font-size: 1rem;
      line-height: 1.5;
      margin: 0 0 2.5rem 0;
      color: var(--muted-fg, #344054);
    }

    .timeline .entry {
      display: flex;
      gap: 1.25rem;
      margin-bottom: 2rem;
      position: relative;
    }

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

    .timeline .entry-marker {
      flex-shrink: 0;
      width: 5rem;
      text-align: right;
      padding-top: 0.15rem;
    }

    .timeline .entry-date {
      display: inline-block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--brand-primary-bg, #1a73e8);
      background: var(--muted-bg, #f5f7fa);
      padding: 0.2rem 0.6rem;
      border-radius: 4px;
      line-height: 1.4;
    }

    .timeline .entry-body {
      flex: 1;
      border-left: 2px solid var(--muted-bg, #e4e7ec);
      padding-left: 1.25rem;
      padding-bottom: 0.25rem;
    }

    .timeline .entry:last-child .entry-body {
      border-left-color: transparent;
    }

    .timeline .entry-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.3rem 0;
      line-height: 1.3;
    }

    .timeline .entry-text {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0;
      color: var(--muted-fg, #344054);
    }

    @media (max-width: 600px) {
      .timeline {
        padding: 2rem 0.75rem;
      }

      .timeline .entry {
        flex-direction: column;
        gap: 0.25rem;
        margin-bottom: 1.75rem;
      }

      .timeline .entry-marker {
        width: auto;
        text-align: left;
        padding-top: 0;
      }

      .timeline .entry-body {
        border-left: none;
        padding-left: 0;
        padding-bottom: 0;
      }

      .timeline .entry:last-child .entry-body {
        border-left: none;
      }

      .timeline .section-title {
        font-size: 1.5rem;
      }
    }

.identity {
      background: var(--gradient-hero-bg, linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%));
      color: var(--gradient-hero-fg, #ffffff);
      padding: 5rem 1.5rem;
      
    }

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

    .identity .lead {
      max-width: 720px;
    }

    .identity h2 {
      font-size: 2.25rem;
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin: 0 0 1.25rem 0;
    }

    .identity .subhead {
      font-size: 1rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      opacity: 0.8;
      margin: 0 0 0.75rem 0;
    }

    .identity p {
      font-size: 1.125rem;
      line-height: 1.6;
      opacity: 0.92;
      margin: 0 0 2rem 0;
    }

    .identity .note {
      border-top: 1px solid rgba(255, 255, 255, 0.25);
      padding-top: 1.5rem;
      margin-top: 2.5rem;
      max-width: 600px;
    }

    .identity .note p {
      font-size: 0.95rem;
      line-height: 1.5;
      opacity: 0.7;
      margin: 0;
    }

    @media (min-width: 640px) {
      .identity {
        padding: 6rem 2rem;
      }
      .identity h2 {
        font-size: 2.75rem;
      }
      .identity p {
        font-size: 1.2rem;
      }
    }

    @media (min-width: 1024px) {
      .identity {
        padding: 7rem 2rem;
      }
      .identity h2 {
        font-size: 3rem;
      }
    }

.our-story {
            background: #ffffff;
            color: #1d2939;
            padding: 4rem 1.5rem;
        }
        .our-story .inner {
            max-width: 820px;
            margin: 0 auto;
        }
        .our-story h2 {
            font-size: 1.75rem;
            font-weight: 600;
            margin: 0 0 0.75rem 0;
            letter-spacing: -0.02em;
        }
        .our-story .lead {
            font-size: 1.05rem;
            line-height: 1.6;
            color: #344054;
            margin: 0 0 2.5rem 0;
            max-width: 640px;
        }
        .our-story .steps {
            display: flex;
            flex-direction: column;
            gap: 2.25rem;
        }
        .our-story .step {
            border-left: 3px solid #e4e7ec;
            padding-left: 1.25rem;
        }
        .our-story .step .year {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            color: #1a73e8;
            background: #f5f7fa;
            padding: 0.15rem 0.6rem;
            border-radius: 4px;
            margin-bottom: 0.4rem;
        }
        .our-story .step h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0 0 0.35rem 0;
            color: #1d2939;
        }
        .our-story .step p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #344054;
            margin: 0;
            max-width: 600px;
        }
        @media (min-width: 600px) {
            .our-story {
                padding: 5rem 2rem;
            }
            .our-story h2 {
                font-size: 2rem;
            }
            .our-story .lead {
                font-size: 1.1rem;
            }
            .our-story .step {
                padding-left: 1.75rem;
            }
        }

.capabilities {
            background: var(--page-bg, #ffffff);
            color: var(--page-fg, #1d2939);
            padding: 3rem 1.5rem;
        }
        .capabilities .inner {
            max-width: 720px;
            margin: 0 auto;
        }
        .capabilities__title {
            font-size: 1.75rem;
            font-weight: 600;
            line-height: 1.25;
            margin: 0 0 1.25rem;
            letter-spacing: -0.02em;
            color: var(--page-fg, #1d2939);
        }
        .capabilities__intro {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0 0 1.25rem;
            color: var(--page-fg, #1d2939);
        }
        .capabilities__note {
            font-size: 0.95rem;
            line-height: 1.65;
            margin: 0 0 1.75rem;
            color: var(--muted-fg, #344054);
            border-left: 3px solid var(--brand-primary-bg, #1a73e8);
            padding-left: 1rem;
        }
        .capabilities__link {
            display: inline-block;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--brand-primary-bg, #1a73e8);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }
        .capabilities__link:hover {
            border-bottom-color: var(--brand-primary-bg, #1a73e8);
        }
        /* разделитель */
        .capabilities .inner {
            border-bottom: 1px solid var(--muted-bg, #e4e7ec);
            padding-bottom: 2.5rem;
        }
        @media (min-width: 640px) {
            .capabilities {
                padding: 4rem 2rem;
            }
            .capabilities__title {
                font-size: 2rem;
            }
            .capabilities__intro {
                font-size: 1.05rem;
            }
            .capabilities__note {
                font-size: 1rem;
            }
        }

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

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

    .plans-overview__heading {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 0.75rem 0;
      line-height: 1.2;
    }

    .plans-overview__intro {
      font-size: 1rem;
      line-height: 1.5;
      color: var(--muted-fg, #344054);
      margin: 0 0 2rem 0;
      max-width: 680px;
    }

    .plans-overview__list {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .plans-overview__item {
      flex: 1 1 280px;
      background: var(--card-bg, #ffffff);
      border: 1px solid var(--card-border, #e4e7ec);
      border-radius: 8px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
    }

    .plans-overview__item-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      line-height: 1.3;
    }

    .plans-overview__item-text {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 1rem 0;
      color: var(--muted-fg, #344054);
    }

    .plans-overview__item-features {
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem 0;
    }

    .plans-overview__item-features li {
      position: relative;
      padding-left: 1.25rem;
      font-size: 0.9rem;
      line-height: 1.5;
      margin-bottom: 0.35rem;
      color: var(--page-fg, #1d2939);
    }

    .plans-overview__item-features li::before {
      content: "—";
      position: absolute;
      left: 0;
      color: var(--primary-bg, #1a73e8);
    }

    .plans-overview__item-link {
      display: inline-block;
      margin-top: auto;
      padding: 0.5rem 1rem;
      background: var(--primary-bg, #1a73e8);
      color: var(--primary-fg, #ffffff);
      border-radius: 6px;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      text-align: center;
      transition: background 0.2s ease;
    }

    .plans-overview__item-link:hover {
      background: var(--primary-hover, #1557b0);
    }

    .plans-overview__note {
      font-size: 0.9rem;
      color: var(--muted-fg, #344054);
      border-top: 1px solid var(--card-border, #e4e7ec);
      padding-top: 1.25rem;
      margin: 0;
      line-height: 1.5;
    }

    @media (max-width: 700px) {
      .plans-overview__list {
        flex-direction: column;
      }

      .plans-overview__item {
        flex: 1 1 auto;
      }
    }

.feedback {
      background: var(--muted-bg, #f5f7fa);
      color: var(--page-fg, #1d2939);
      padding: 3rem 1.5rem;
    }
    .feedback .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .feedback h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 0.75rem;
      line-height: 1.3;
    }
    .feedback .intro {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2rem;
      color: var(--muted-fg, #344054);
    }
    .feedback .entries {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .feedback .entry {
      background: var(--card-bg, #ffffff);
      border: 1px solid var(--card-border, #e4e7ec);
      border-radius: 0.5rem;
      padding: 1.25rem 1.5rem;
    }
    .feedback .entry-text {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 0.5rem;
    }
    .feedback .entry-author {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--muted-fg, #344054);
      margin: 0;
    }
    .feedback .note {
      font-size: 0.85rem;
      line-height: 1.5;
      color: var(--muted-fg, #344054);
      margin: 2rem 0 0;
      padding-top: 1rem;
      border-top: 1px solid var(--card-border, #e4e7ec);
    }

.form {
      background: var(--muted-bg, #f5f7fa);
      color: var(--page-fg, #1d2939);
      padding: 2.5rem 1rem;
    }
    .form .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .form h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 0.75rem;
      line-height: 1.3;
    }
    .form p {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 1.5rem;
      color: var(--muted-fg, #344054);
    }
    .form form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .form .field {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }
    .form label {
      font-size: 0.9rem;
      font-weight: 500;
    }
    .form input,
    .form textarea {
      font: inherit;
      padding: 0.65rem 0.85rem;
      border: 1px solid var(--card-border, #e4e7ec);
      border-radius: 6px;
      background: var(--card-bg, #ffffff);
      color: var(--card-fg, #1d2939);
      font-size: 0.95rem;
      outline: none;
      transition: border-color 0.15s;
    }
    .form input:focus,
    .form textarea:focus {
      border-color: var(--primary-bg, #1a73e8);
    }
    .form textarea {
      resize: vertical;
      min-height: 70px;
    }
    .form button {
      align-self: flex-start;
      padding: 0.7rem 1.6rem;
      font: inherit;
      font-size: 0.95rem;
      font-weight: 600;
      border: none;
      border-radius: 6px;
      background: var(--primary-bg, #1a73e8);
      color: var(--primary-fg, #ffffff);
      cursor: pointer;
      transition: background 0.15s;
    }
    .form button:hover {
      background: var(--primary-hover, #1557b0);
    }

.clarifications {
            background: var(--page-bg, #ffffff);
            color: var(--page-fg, #1d2939);
            padding: 3rem 1.5rem;
        }
        .clarifications .inner {
            max-width: 800px;
            margin: 0 auto;
        }
        .clarifications h2 {
            font-size: 1.75rem;
            font-weight: 600;
            margin: 0 0 0.75rem 0;
            line-height: 1.2;
            letter-spacing: -0.01em;
        }
        .clarifications > .inner > p {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0 0 2rem 0;
            color: var(--muted-fg, #344054);
        }
        .clarifications .notes {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            margin-bottom: 2rem;
        }
        .clarifications .note {
            background: var(--muted-bg, #f5f7fa);
            color: var(--muted-fg, #344054);
            padding: 1rem 1.25rem;
            border-radius: 6px;
        }
        .clarifications .note h3 {
            font-size: 1.05rem;
            font-weight: 600;
            margin: 0 0 0.3rem 0;
            line-height: 1.3;
            color: var(--page-fg, #1d2939);
        }
        .clarifications .note p {
            font-size: 0.95rem;
            line-height: 1.55;
            margin: 0;
        }
        .clarifications .footnote {
            font-size: 0.9rem;
            line-height: 1.5;
            color: var(--muted-fg, #344054);
            border-top: 1px solid var(--card-border, #e4e7ec);
            padding-top: 1.25rem;
            margin: 0;
        }
        @media (min-width: 640px) {
            .clarifications {
                padding: 4rem 2rem;
            }
            .clarifications h2 {
                font-size: 2rem;
            }
            .clarifications .note {
                padding: 1.25rem 1.5rem;
            }
        }

.contacts {
      background: var(--inverse-bg, #1d2939);
      color: var(--inverse-fg, #ffffff);
      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;
      letter-spacing: -0.02em;
    }
    .contacts p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 0.75rem;
      opacity: 0.85;
    }
    .contacts .lines {
      margin-top: 1.75rem;
      border-top: 1px solid rgba(255,255,255,0.15);
      padding-top: 1.5rem;
    }
    .contacts .line {
      display: flex;
      gap: 1rem;
      padding: 0.5rem 0;
      align-items: baseline;
    }
    .contacts .label {
      flex: 0 0 5.5rem;
      font-size: 0.85rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      opacity: 0.6;
    }
    .contacts .value {
      font-size: 0.95rem;
      line-height: 1.5;
    }
    .contacts a.value {
      color: #ff6d00;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }
    .contacts a.value:hover {
      border-color: currentColor;
    }
    @media (max-width: 480px) {
      .contacts .line {
        flex-direction: column;
        gap: 0.15rem;
      }
      .contacts .label {
        flex: none;
      }
    }

.policy-items {
            display: block;
            background: #ffffff;
            color: #1d2939;
            padding: 3rem 1.5rem;
            
            line-height: 1.6;
        }
        .policy-items .inner {
            max-width: 800px;
            margin: 0 auto;
        }
        .policy-items h2 {
            font-size: 1.75rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin: 0 0 0.75rem 0;
            color: #1d2939;
        }
        .policy-items .intro {
            font-size: 1rem;
            color: #344054;
            margin: 0 0 2rem 0;
            max-width: 640px;
            line-height: 1.7;
        }
        .policy-items .notes {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .policy-items .note {
            border-bottom: 1px solid #e4e7ec;
            padding-bottom: 1.5rem;
        }
        .policy-items .note:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .policy-items .note-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin: 0 0 0.4rem 0;
            color: #1d2939;
        }
        .policy-items .note-text {
            font-size: 0.95rem;
            color: #344054;
            margin: 0;
            line-height: 1.7;
        }
        .policy-items a {
            color: #1a73e8;
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .policy-items a:hover {
            color: #1557b0;
        }
        @media (min-width: 640px) {
            .policy-items {
                padding: 4rem 2rem;
            }
            .policy-items h2 {
                font-size: 2rem;
            }
            .policy-items .intro {
                font-size: 1.0625rem;
            }
            .policy-items .note-title {
                font-size: 1.2rem;
            }
        }

.terms-items {
            background: #ffffff;
            color: #1d2939;
            padding: 3rem 1.5rem;
        }
        .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 1rem 0;
            letter-spacing: -0.01em;
        }
        .terms-items .lead {
            font-size: 1.05rem;
            line-height: 1.6;
            margin: 0 0 2.5rem 0;
            color: #344054;
        }
        .terms-items .clause {
            margin-bottom: 2rem;
        }
        .terms-items .clause:last-of-type {
            margin-bottom: 0;
        }
        .terms-items .clause h3 {
            font-size: 1.2rem;
            font-weight: 600;
            line-height: 1.4;
            margin: 0 0 0.5rem 0;
            color: #1d2939;
        }
        .terms-items .clause p {
            font-size: 0.95rem;
            line-height: 1.65;
            margin: 0;
            color: #344054;
        }
        .terms-items .clause a {
            color: #1a73e8;
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .terms-items .clause a:hover {
            color: #1557b0;
        }
        @media (min-width: 640px) {
            .terms-items {
                padding: 4rem 2rem;
            }
            .terms-items h2 {
                font-size: 2rem;
            }
            .terms-items .lead {
                font-size: 1.1rem;
            }
            .terms-items .clause h3 {
                font-size: 1.3rem;
            }
            .terms-items .clause p {
                font-size: 1rem;
            }
        }

.thank {
      background: var(--inverse-bg, #1d2939);
      color: var(--inverse-fg, #ffffff);
      padding: 3rem 1.5rem;
      display: flex;
      justify-content: center;
    }

    .thank .inner {
      max-width: 640px;
      width: 100%;
      text-align: left;
    }

    .thank h2 {
      font-size: 1.6rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 1.2rem 0;
      letter-spacing: -0.02em;
    }

    .thank .note {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1.2rem 0;
      color: #d0d5dd;
    }

    .thank .next {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1.8rem 0;
      color: #b0b7c3;
    }

    .thank .back-link {
      display: inline-block;
      background: var(--primary-bg, #1a73e8);
      color: var(--primary-fg, #ffffff);
      padding: 0.7rem 1.8rem;
      border-radius: 6px;
      font-size: 0.95rem;
      font-weight: 500;
      text-decoration: none;
      transition: background 0.2s;
    }

    .thank .back-link:hover {
      background: #1557b0;
    }

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

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

      .thank .note,
      .thank .next {
        font-size: 0.92rem;
      }

      .thank .back-link {
        width: 100%;
        text-align: center;
      }
    }

.page-404 {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 6rem 1.5rem;
    }
    .page-404 .inner {
      max-width: 36rem;
      margin: 0 auto;
      text-align: center;
    }
    .page-404 h1 {
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.15;
      margin: 0 0 1rem;
      letter-spacing: -0.02em;
    }
    .page-404 p {
      font-size: 1.05rem;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 0 0 2rem;
    }
    .page-404 .action {
      display: inline-block;
      background: var(--primary-bg);
      color: var(--primary-fg);
      padding: 0.7rem 1.8rem;
      border-radius: 6px;
      font-size: 0.95rem;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s;
    }
    .page-404 .action:hover {
      background: var(--primary-hover);
    }

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