/* ===== Дизайн-система — оранжево-тёмный, без AI slop ===== */
    :root {
      --orange: #FF6600;
      --orange-h: #E55A00;
      --orange-soft: #FFF3EC;
      --orange-glow: rgba(255, 102, 0, 0.18);
      --orange-deep: #CC5200;
      --black: #0F0F12;
      --dark: #18181B;
      --mid: #27272A;
      --gray: #52525B;
      --gray-light: #F4F4F5;
      --gray-border: #E4E4E7;
      --white: #FEFEFE;
      --tg: #2AABEE;
      --tg-h: #229ED9;
      --max-red: #EE2E24;
      --max-red-h: #D1261E;
      --footer-text: rgba(255,255,255,0.72);
      --footer-border: rgba(255,255,255,0.1);
      --overlay: rgba(0,0,0,0.72);
      --hero-bg: #FFF8F0;
      --benefits-bg: #F9FCFE;
      --team-gradient-a: #FFF0E0;
      --max: 1240px;
      --pad: 2.5rem;
      --r: 0.75rem;
      --r2: 1.25rem;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
      --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
      --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
      --shadow-xl: 0 24px 60px rgba(0,0,0,0.1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      font-size: 100%;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      background: var(--white);
      color: var(--black);
      font-size: 0.9375rem;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: color 0.2s;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* Skip-to-content */
    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 var(--pad);
      width: 100%;
      box-sizing: border-box;
    }

    /* Focus-visible — глобально */
    :focus-visible {
      outline: 3px solid var(--orange);
      outline-offset: 2px;
      border-radius: 4px;
    }

    /* ----- Типографика ----- */
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--orange);
      background: var(--orange-soft);
      padding: 0.375rem 0.875rem;
      border-radius: 100px;
      margin-bottom: 1rem;
    }

    .section-tag::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--orange);
      border-radius: 50%;
    }

    h1, h2, h3 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    /* P0: убран gradient text, однотонный цвет */
    h1 {
      font-size: clamp(2.25rem, 5.5vw, 3.875rem);
      margin-bottom: 1.25rem;
      color: var(--black);
    }

    h1 .accent {
      color: var(--orange);
    }

    h2 {
      font-size: clamp(1.75rem, 4vw, 2.75rem);
      margin-bottom: 1rem;
      color: var(--black);
    }

    h3 {
      font-size: 1.125rem;
      margin-bottom: 0.625rem;
      color: var(--black);
    }

    /* ----- Кнопки ----- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.875rem 1.875rem;
      border-radius: 0.75rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s;
      white-space: nowrap;
      position: relative;
      overflow: hidden;
    }

    /* Анимация пробегающего белого блика на всех кнопках */
    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -60%;
      width: 45%;
      height: 100%;
      background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.15) 45%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0.15) 55%, transparent 100%);
      transform: skewX(-18deg);
      animation: btn-shine-sweep 2.8s ease-in-out infinite;
      pointer-events: none;
      z-index: 1;
    }
    .btn > * { position: relative; z-index: 2; }
    @keyframes btn-shine-sweep {
      0%   { left: -60%; }
      55%  { left: 130%; }
      100% { left: 130%; }
    }
    @media (prefers-reduced-motion: reduce) {
      .btn::before { animation: none; display: none; }
    }

    .btn-orange {
      background: var(--orange);
      color: var(--white);
      box-shadow: 0 4px 14px var(--orange-glow);
    }

    .btn-orange:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px var(--orange-glow);
    }

    .btn-orange:active {
      transform: translateY(0);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--orange);
      color: var(--orange);
    }

    .btn-outline:hover {
      background: var(--orange-soft);
      transform: translateY(-2px);
    }

  /* ----- Header ----- */
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(254,254,254,0.97);
    border-bottom: 1px solid transparent;
    transition: border-color 0.35s, box-shadow 0.35s;
  }

  header.scrolled {
    border-color: var(--gray-border);
    box-shadow: var(--shadow-md);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.75rem;
    gap: 1.5rem;
    transition: height 0.35s;
  }

  header.scrolled .header-inner {
    height: 3.5rem;
  }

  header.scrolled nav a {
    font-size: 0.8125rem;
  }

  header.scrolled .hdr-phone {
    font-size: 0.875rem;
  }

  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .logo img {
    height: 3.5rem;
    width: auto;
    max-width: none;
    flex-shrink: 0;
    transition: height 0.35s;
    object-fit: contain;
  }

  header.scrolled .logo img {
    height: 2.75rem;
  }

  .logo span {
    color: var(--orange);
  }

  nav {
    display: flex;
    gap: 2rem;
  }

  nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray);
    transition: color 0.2s, font-size 0.35s;
    position: relative;
  }

  nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: width 0.3s;
  }

  nav a:hover {
    color: var(--orange);
  }

  nav a:hover::after {
    width: 100%;
  }

  nav a.active {
    color: var(--orange);
  }

  nav a.active::after {
    width: 100%;
  }

  .header-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }

  .hdr-phone {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--black);
    font-size: 0.9375rem;
    transition: font-size 0.35s;
  }

  .skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--orange);
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 9999;
    font-size: 0.875rem;
  }

  .skip-link:focus {
    left: 0;
  }

  /* Burger */
  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.625rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .burger span {
    width: 24px;
    height: 2.5px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* Mobile Menu */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 200;
    flex-direction: column;
    padding: 5.5rem 1.5rem 2.5rem;
    overflow-y: auto;
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .mobile-menu nav a {
    font-size: 1.375rem;
    font-weight: 700;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-border);
  }

  .mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-border);
  }

  .mobile-menu-logo img {
    height: 2.5rem;
    width: auto;
    max-width: none;
    object-fit: contain;
  }

  .mobile-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.75rem;
    background: var(--gray-light);
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }

  .mobile-close:hover {
    background: var(--gray-border);
  }

  /* Responsive */
  @media (max-width: 1210px) {
    nav {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

  @media (max-width: 900px) {
    .hdr-phone {
      display: none;
    }
  }
/* ===== FAB-кнопки ===== */
.fab {
  position: fixed;
  right: 1.5rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 90;
}

.fab-btn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.125rem;
  border-radius: 0.875rem;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}

.fab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.16);
}

.fab-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.fab-btn-up {
  background: var(--white);
  color: var(--black);
}

.fab-btn-up:hover {
  background: var(--gray-light);
}

.fab-btn-tg {
  background: var(--tg);
  color: #fff;
}

.fab-btn-tg:hover {
  background: var(--tg-h);
}

.fab-btn-max {
  background: var(--max-red);
  color: #fff;
}

.fab-btn-max:hover {
  background: var(--max-red-h);
}

.fab-btn-call {
  background: var(--orange);
  color: #fff;
}

.fab-btn-call:hover {
  background: var(--orange-h);
}

/* Мобильная плашка */
.fab-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
  z-index: 190;
  justify-content: space-around;
  align-items: center;
  padding: 0 0.5rem;
  touch-action: manipulation;
}

.fab-mobile a,
.fab-mobile button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--gray);
  padding: 0.375rem 0.25rem;
  text-decoration: none;
  transition: color 0.2s;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}

.fab-mobile a:hover,
.fab-mobile button:hover {
  color: var(--orange);
}

.fab-mobile svg {
  width: 1.375rem;
  height: 1.375rem;
}

.fab-mobile .fab-m-tg { color: var(--tg); }
.fab-mobile .fab-m-max { color: var(--max-red); }
.fab-mobile .fab-m-call { color: var(--orange); }
.fab-m-menu {
  color: var(--white) !important;
  background: var(--orange) !important;
  border-radius: var(--r);
  padding: 0.375rem 0.75rem !important;
  min-width: 52px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}
.fab-m-menu:hover {
  background: var(--orange-h) !important;
  color: var(--white) !important;
}
.fab-m-menu:active {
  transform: scale(0.95);
}
.fab-m-menu svg {
  width: 1.125rem;
  height: 1.125rem;
}

@media (max-width: 900px) {
  .fab {
    display: none;
  }
  .fab-mobile {
    display: flex;
  }
  body {
    padding-bottom: 70px;
  }
}
/* ===== FAB-кнопки ===== */
.fab {
  position: fixed;
  right: 1.5rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 90;
}

.fab-btn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.125rem;
  border-radius: 0.875rem;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}

.fab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.16);
}

.fab-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.fab-btn-up {
  background: var(--white);
  color: var(--black);
}

.fab-btn-up:hover {
  background: var(--gray-light);
}

.fab-btn-tg {
  background: var(--tg);
  color: #fff;
}

.fab-btn-tg:hover {
  background: var(--tg-h);
}

.fab-btn-max {
  background: var(--max-red);
  color: #fff;
}

.fab-btn-max:hover {
  background: var(--max-red-h);
}

.fab-btn-call {
  background: var(--orange);
  color: #fff;
}

.fab-btn-call:hover {
  background: var(--orange-h);
}

/* Мобильная плашка */
.fab-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
  z-index: 190;
  justify-content: space-around;
  align-items: center;
  padding: 0 0.5rem;
  touch-action: manipulation;
}

.fab-mobile a,
.fab-mobile button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--gray);
  padding: 0.375rem 0.25rem;
  text-decoration: none;
  transition: color 0.2s;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}

.fab-mobile a:hover,
.fab-mobile button:hover {
  color: var(--orange);
}

.fab-mobile svg {
  width: 1.375rem;
  height: 1.375rem;
}

.fab-mobile .fab-m-tg { color: var(--tg); }
.fab-mobile .fab-m-max { color: var(--max-red); }
.fab-mobile .fab-m-call { color: var(--orange); }
.fab-m-menu {
  color: var(--white) !important;
  background: var(--orange) !important;
  border-radius: var(--r);
  padding: 0.375rem 0.75rem !important;
  min-width: 52px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}
.fab-m-menu:hover {
  background: var(--orange-h) !important;
  color: var(--white) !important;
}
.fab-m-menu:active {
  transform: scale(0.95);
}
.fab-m-menu svg {
  width: 1.125rem;
  height: 1.125rem;
}

@media (max-width: 900px) {
  .fab {
    display: none;
  }
  .fab-mobile {
    display: flex;
  }
  body {
    padding-bottom: 70px;
  }
}
/* Согласие на обработку ПД */
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  line-height: 1.5;
}

.consent-label input[type="checkbox"] {
  margin-top: 0.15rem;
  width: 2rem;
  height: 2rem;
  accent-color: var(--orange);
  flex-shrink: 0;
  cursor: pointer;
}

.consent-label a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-color: rgba(255, 102, 0, 0.4);
  text-underline-offset: 2px;
}

.consent-label a:hover {
  color: var(--orange-h);
  text-decoration-color: var(--orange-h);
}
    /* ----- Hero ----- */
    section {
      padding: 6rem 0;
    }

/* ===== HERO — mobile-first ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 3rem;
  background: var(--hero-bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: -5rem;
  right: -30%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0 0;
  min-width: 0;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  transition: border-color 0.25s, box-shadow 0.25s;
  min-width: 0;
  box-sizing: border-box;
}

.hero-feature:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.hero-feature-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--orange-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-feature-icon svg {
  width: 1.125rem;
  height: 1.125rem;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-feature-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.45;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-feature-text strong {
  color: var(--orange);
  font-weight: 700;
}

.hero-feature-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 0.75rem;
  background: var(--orange);
  border-radius: var(--r);
  box-shadow: 0 4px 14px var(--orange-glow);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: var(--white);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-width: 0;
  box-sizing: border-box;
}

.hero-feature-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--orange-glow);
}

/* Блик на плитке-ссылке хиро (переиспользует keyframes btn-shine-sweep) */
.hero-feature-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.15) 45%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0.15) 55%, transparent 100%);
  transform: skewX(-18deg);
  animation: btn-shine-sweep 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.hero-feature-link > * { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) {
  .hero-feature-link::before { animation: none; display: none; }
}

.hero-feature-link .hero-feature-icon {
  background: rgba(255,255,255,0.2);
}

.hero-feature-link .hero-feature-icon svg {
  stroke: var(--white);
}

.hero-feature-link .hero-feature-text {
  color: var(--white);
  font-weight: 600;
}

/* Hero form — mobile-first */
.hero-form {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--r2);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-border);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-form form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.hero-form form .form-full {
  grid-column: 1 / -1;
}

.hero-form form input,
.hero-form form textarea,
.hero-form form select {
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 901px) {
  .hero {
    padding: 10rem 0 6rem;
  }
  .hero::before {
    top: -12.5rem;
    right: -12.5rem;
    width: 37.5rem;
    height: 37.5rem;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
  }
  .hero-feature {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }
  .hero-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  .hero-feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  .hero-feature-text {
    font-size: 0.9375rem;
  }
  .hero-feature-link {
    padding: 0.875rem 1rem;
    gap: 0.75rem;
  }
  .hero-features {
    gap: 0.75rem;
    margin: 1.5rem 0;
  }
  .hero-form {
    padding: 2.25rem;
    max-width: 28rem;
  }
  .hero-form form {
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 8rem 0 4rem;
  }
  .hero-form {
    padding: 1.5rem;
  }
  .hero-form .form-group {
    max-width: 100%;
  }
  .hero-form .btn,
  .hero-form form .btn {
    max-width: 100%;
  }
}

    /* Формы — глобальные */
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .form-label {
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--black);
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
    }

    .form-label-sr {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
    }

    input[type="text"],
    input[type="tel"],
    textarea,
    select {
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      background: var(--gray-light);
      border: 1.5px solid var(--gray-border);
      border-radius: var(--r);
      padding: 0.875rem 1rem;
      transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
      color: var(--black);
      outline: none;
      width: 100%;
    }

    input[type="text"]:focus,
    input[type="tel"]:focus,
    textarea:focus,
    select:focus {
      border-color: var(--orange);
      box-shadow: 0 0 0 4px var(--orange-glow);
      background: var(--white);
    }

    input::placeholder,
    textarea::placeholder {
      color: var(--gray);
    }

    /* P1: убраны идентичные карточки — вариативная сетка */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .feature-card {
      background: var(--white);
      padding: 1.75rem;
      border-radius: var(--r2);
      border: 1px solid var(--gray-border);
      transition: border-color 0.3s, box-shadow 0.3s;
      position: relative;
    }

    .feature-card:hover {
      border-color: var(--orange);
      box-shadow: var(--shadow-lg);
    }

    /* Вариативность: карточка на 2 колонки */
    .feature-card--wide {
      grid-column: span 2;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1.5rem;
      align-items: center;
    }

    .feature-card--wide .feature-card-body {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    /* Карточка с акцентным фоном */
    .feature-card--highlight {
      background: var(--orange-soft);
      border-color: transparent;
    }

    .feature-card--highlight:hover {
      box-shadow: var(--shadow-lg);
    }

    .feature-icon {
      width: 3.25rem;
      height: 3.25rem;
      border-radius: 50%;
      background: var(--orange-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .feature-card--highlight .feature-icon {
      background: var(--white);
    }

    .feature-icon svg {
      width: 1.5rem;
      height: 1.5rem;
      stroke: var(--orange);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .feature-card p {
      font-size: 0.875rem;
      line-height: 1.65;
      color: var(--dark);
    }

    .feature-card p strong {
      color: var(--black);
    }

    .feature-card-cta {
      margin-top: 1rem;
    }

    /* Таблица */
    .table-wrapper {
      width: 100%;
      overflow-x: auto;
      margin: 2rem 0;
      border-radius: var(--r2);
      box-shadow: var(--shadow-md);
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      scrollbar-color: var(--orange) var(--gray-light);
    }

    .table-wrapper::-webkit-scrollbar {
      height: 6px;
    }

    .table-wrapper::-webkit-scrollbar-track {
      background: var(--gray-light);
      border-radius: 3px;
    }

    .table-wrapper::-webkit-scrollbar-thumb {
      background: var(--orange);
      border-radius: 3px;
    }

    .table-scroll-hint {
      display: none;
      text-align: center;
      font-size: 0.6875rem;
      color: var(--gray);
      padding: 0.25rem 0;
      font-weight: 500;
    }

    .table-wrapper + .table-scroll-hint {
      margin-top: -1.5rem;
    }

    .table-scroll-hint svg {
      width: 14px;
      height: 14px;
      vertical-align: middle;
      margin-right: 4px;
    }

    #calcTable {
      width: 100%;
      min-width: 600px;
      border-collapse: collapse;
      background: var(--white);
      font-size: 0.875rem;
      table-layout: fixed;
    }

    #calcTable thead th {
      background: var(--orange);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      padding: 0.875rem 1rem;
      text-align: left;
      white-space: nowrap;
    }

    #calcTable tbody td {
      padding: 0.75rem 1rem;
      border-bottom: 1px solid var(--gray-border);
      text-align: left;
    }

    #calcTable tbody td:first-child {
      white-space: normal;
      min-width: 140px;
    }

    #calcTable tbody tr {
      transition: background 0.2s;
    }

    #calcTable tbody tr:hover {
      background: var(--orange-soft);
    }

    #calcTable .price {
      font-weight: 800;
      color: var(--orange);
      font-size: 1rem;
      white-space: nowrap;
    }

    /* Мобильные карточки квоты — скрыты на десктопе */
    .quota-mobile { display: none; }
    .quota-desktop { display: block; }
    .quota-card {
      background: var(--white);
      border-radius: var(--r2);
      border: 1px solid var(--gray-border);
      overflow: hidden;
      margin-bottom: 1.25rem;
      box-shadow: var(--shadow-md);
    }
    .quota-card-title {
      background: var(--orange);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.9375rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      padding: 0.875rem 1rem;
      text-align: center;
    }
    .quota-card-title small {
      font-weight: 400;
      font-size: 0.75rem;
      text-transform: none;
      letter-spacing: 0;
      opacity: 0.9;
    }
    .quota-card-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.875rem;
    }
    .quota-card-table td {
      padding: 0.625rem 1rem;
      border-bottom: 1px solid var(--gray-border);
    }
    .quota-card-table td:first-child {
      color: var(--text);
    }
    .quota-card-table td:last-child {
      text-align: right;
      white-space: nowrap;
      font-weight: 600;
    }
    .quota-card-total td {
      background: var(--orange-soft);
      font-weight: 800 !important;
      color: var(--orange) !important;
      font-size: 1rem;
      border-bottom: none;
    }
    .quota-card-custom input[type="text"] {
      width: 100%;
      text-align: right;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.9375rem;
      font-weight: 700;
      padding: 0.5rem 0.625rem;
      border: 2px solid var(--orange);
      border-radius: 0.5rem;
      background: var(--orange-soft);
      color: var(--black);
      outline: none;
      transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
      box-sizing: border-box;
    }
    .quota-card-custom input[type="text"]:focus {
      border-color: var(--orange-h);
      box-shadow: 0 0 0 5px var(--orange-glow);
      background: var(--white);
    }

    /* Сотрудники — P3: убраны emoji, SVG-аватары */
    .team-slider-wrap {
      margin-top: 2.5rem;
      position: relative;
    }

    .team-grid {
      display: flex;
      gap: 1.75rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding-bottom: 0.5rem;
    }
    .team-grid::-webkit-scrollbar { display: none; }

    .team-card {
      flex: 0 0 calc((100% - 2 * 1.75rem) / 3);
      scroll-snap-align: start;
      background: var(--white);
      border-radius: var(--r2);
      overflow: hidden;
      border: 1px solid var(--gray-border);
      transition: border-color 0.3s, box-shadow 0.3s;
      text-align: center;
    }

    .team-card:hover {
      border-color: var(--orange);
      box-shadow: var(--shadow-lg);
    }

    .team-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.25rem;
      margin-bottom: 2.1875rem;
    }

    .team-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gray-border);
      border: none;
      cursor: pointer;
      transition: background 0.25s, transform 0.25s;
      padding: 0;
    }

    .team-dot.active {
      background: var(--orange);
      transform: scale(1.2);
    }

    .team-nav-btn {
      display: flex;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      border: 1.5px solid var(--gray-border);
      background: var(--white);
      cursor: pointer;
      z-index: 3;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-md);
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
      padding: 0;
    }
    .team-nav-prev { left: -0.75rem; }
    .team-nav-next { right: -0.75rem; }

    .team-nav-btn:hover {
      border-color: var(--orange);
      box-shadow: var(--shadow-lg);
      background: var(--orange-soft);
    }

    .team-nav-btn:active {
      background: var(--orange);
    }

    .team-nav-btn:active svg {
      stroke: var(--white);
    }

    .team-nav-btn svg {
      width: 1.125rem;
      height: 1.125rem;
      stroke: var(--black);
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .team-nav-prev { left: 0; }
    .team-nav-next { right: 0; }

    .team-photo {
      aspect-ratio: 1 / 1;
      background: linear-gradient(135deg, var(--orange-soft), var(--team-gradient-a));
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .team-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 60%, var(--white) 100%);
    }

    .team-avatar {
      position: relative;
      z-index: 1;
      width: 5rem;
      height: 5rem;
      background: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-md);
    }

    .team-avatar svg {
      width: 2.5rem;
      height: 2.5rem;
      stroke: var(--orange);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .team-info {
      padding: 1.25rem 1rem 1.5rem;
    }

    .team-name {
      font-weight: 800;
      font-size: 1.0625rem;
      margin-bottom: 0.375rem;
      color: var(--black);
    }

    .team-role {
      font-size: 0.8125rem;
      color: var(--gray);
      line-height: 1.5;
    }

    /* Документы список */
    .docs-list {
      list-style: none;
      margin-top: 1rem;
    }

    .docs-list li {
      margin-bottom: 0.75rem;
      border-bottom: 1px dashed var(--gray-border);
      padding-bottom: 0.625rem;
    }

    .docs-list a {
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      transition: color 0.2s;
    }

    .docs-list a:hover {
      color: var(--orange);
    }

    /* CTA */
    .cta-block {
      background: var(--orange);
      border-radius: var(--r2);
      padding: 4rem 3rem;
      text-align: center;
      margin: 3rem 0;
      position: relative;
      overflow: hidden;
    }

    .cta-block::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 25rem;
      height: 25rem;
      background: rgba(255,255,255,0.08);
      border-radius: 50%;
      pointer-events: none;
    }

    .cta-block h3 {
      color: white;
      font-size: clamp(1.5rem, 3vw, 2rem);
      margin-bottom: 1rem;
      position: relative;
    }

    /* Footer — P1: улучшен контраст */
    footer {
      background: var(--dark);
      padding: 4rem 0 2rem;
      color: var(--footer-text);
    }

    .footer-logo-row {
      margin-bottom: 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
      gap: 2.5rem;
      margin-bottom: 3rem;
    }

    .footer-col h4 {
      color: white;
      font-size: 0.875rem;
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .footer-col a {
      display: block;
      margin-bottom: 0.75rem;
      font-size: 0.8125rem;
      transition: color 0.2s, padding-left 0.2s;
    }

    .footer-col a:hover {
      color: var(--orange);
      padding-left: 4px;
    }

    .footer-bottom {
      border-top: 1px solid var(--footer-border);
      padding-top: 1.5rem;
      text-align: center;
      font-size: 0.75rem;
    }

    /* Оранжевая перетяжка с копирайтом изготовителя (внизу подвала) */
    .footer-credit-band {
      background: var(--orange);
      margin-top: 2.5rem;
      padding: 0.9rem 0;
    }
    .footer-credit-band .site-credit {
      text-align: center;
      color: #fff;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.01em;
    }
    .footer-credit-band .site-credit a {
      color: #fff;
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .footer-credit-band .site-credit a:hover {
      text-decoration: none;
      opacity: 0.9;
    }

    /* Вариативные секции для документов — без одинаковых карточек */
    .docs-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .doc-card {
      background: var(--white);
      border-radius: var(--r2);
      padding: 1.75rem;
      border: 1px solid var(--gray-border);
      transition: border-color 0.3s, box-shadow 0.3s;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .doc-card:hover {
      border-color: var(--orange);
      box-shadow: var(--shadow-md);
    }

    .doc-card--large {
      grid-column: span 2;
      flex-direction: row;
      align-items: center;
      gap: 1.5rem;
    }

    .doc-card-image {
      width: 100%;
      border-radius: 0.5rem;
      display: block;
      margin-bottom: 0.5rem;
    }

    .doc-card-icon {
      flex-shrink: 0;
      width: 3.5rem;
      height: 3.5rem;
      background: var(--orange-soft);
      border-radius: var(--r);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }

    .doc-card h3 {
      font-size: 1rem;
    }

    .doc-card p {
      font-size: 0.8125rem;
      color: var(--gray);
      line-height: 1.6;
    }

    .doc-card-link {
      margin-top: auto;
      color: var(--orange);
      font-weight: 600;
      font-size: 0.875rem;
    }

    /* Бонусы — вариативная сетка */
    .bonus-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .bonus-card {
      background: var(--white);
      border-radius: var(--r2);
      padding: 1.75rem;
      border: 1px solid var(--gray-border);
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .bonus-card:hover {
      border-color: var(--orange);
      box-shadow: var(--shadow-md);
    }

    .bonus-card--accent {
      background: var(--orange);
      color: var(--white);
      border-color: transparent;
    }

    .bonus-card--accent h3 {
      color: var(--white);
    }

    .bonus-card--accent p {
      color: rgba(255,255,255,0.9);
    }

    .bonus-card--accent .bonus-value {
      color: var(--white);
    }

    .bonus-icon {
      width: 2.75rem;
      height: 2.75rem;
      border-radius: var(--r);
      background: var(--orange-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .bonus-card--accent .bonus-icon {
      background: rgba(255,255,255,0.15);
    }

    .bonus-icon svg {
      width: 1.25rem;
      height: 1.25rem;
      stroke: var(--orange);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .bonus-card--accent .bonus-icon svg {
      stroke: var(--white);
    }

    .bonus-value {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--orange);
      margin-top: 0.5rem;
    }

    /* Адаптив */
    @media (max-width: 900px) {
      :root {
        --pad: 1.5rem;
      }
      .hdr-phone {
        display: none;
      }
      section {
        padding: 4rem 0;
      }
      .cta-block {
        padding: 2.5rem 1.5rem;
      }
      .table-scroll-hint {
        display: block;
      }
      .quota-desktop { display: none; }
      .quota-mobile { display: block; }
      .features-grid {
        grid-template-columns: 1fr;
      }
      .feature-card--wide {
        grid-column: span 1;
        grid-template-columns: auto 1fr;
      }
      .docs-grid {
        grid-template-columns: 1fr;
      }
      .doc-card--large {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
      }
      .bonus-grid {
        grid-template-columns: 1fr;
      }
      .benefits-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      /* Team slider on tablet/mobile */
      .team-slider-wrap {
        overflow: hidden;
      }
      .team-grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0.5rem;
        margin-left: calc(-1 * var(--pad));
        margin-right: calc(-1 * var(--pad));
        padding-left: var(--pad);
        padding-right: var(--pad);
      }
      .team-grid::-webkit-scrollbar {
        display: none;
      }
      .team-card {
        flex: 0 0 calc(100vw - var(--pad) * 2 - 1rem);
        max-width: 20rem;
        scroll-snap-align: start;
      }
      .team-dots {
        display: flex;
      }
      .team-nav-btn {
        display: flex;
      }
      .team-nav-prev {
        left: 0.25rem;
      }
      .team-nav-next {
        right: 0.25rem;
      }
    }

    @media (max-width: 600px) {
      .btn {
        padding: 0.75rem 1.375rem;
        font-size: 0.8125rem;
        border-radius: 0.625rem;
      }
      .feature-card {
        padding: 1.375rem;
      }
      th, td {
        padding: 0.75rem 0.875rem;
        font-size: 0.8125rem;
      }
      .benefits-advantages-grid {
        grid-template-columns: 1fr;
      }
      .benefit-tax-card {
        padding: 1.25rem;
      }
      .benefit-tax-list li {
        flex-wrap: wrap;
        gap: 0.25rem;
      }
      .benefit-tax-list .tax-value {
        white-space: normal;
      }
      .team-card {
        flex: 0 0 calc(100vw - var(--pad) * 2);
        max-width: none;
      }
    }

    /* Анимация появления */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal.in {
      opacity: 1;
      transform: none;
    }

    /* Бегущая строка */
    .marquee-wrap {
      overflow: hidden;
      margin: 1.25rem 0 2rem;
      mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    }

    .marquee {
      display: flex;
      align-items: center;
      gap: 0;
      white-space: nowrap;
      animation: marqueeScroll 28s linear infinite;
      width: max-content;
    }

    .marquee-item {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--orange);
      padding: 0.5rem 0.25rem;
    }

    .marquee-dot {
      width: 6px;
      height: 6px;
      background: var(--orange);
      border-radius: 50%;
      margin: 0 1.125rem;
      flex-shrink: 0;
      opacity: 0.5;
    }

    @keyframes marqueeScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .section-alt {
      background: var(--gray-light);
    }

    .section-divider {
      position: relative;
    }

    .section-divider::before {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      border-radius: 4px;
      background: var(--orange);
      margin: 0 auto 3rem;
    }

    /* ===== Блок «Ваши выгоды» ===== */
    .benefits-section {
      background: var(--benefits-bg);
      padding: 5rem 0;
    }

    .benefits-section .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .benefits-section .section-header p {
      color: var(--gray);
      max-width: 40rem;
      margin: 0 auto;
      font-size: 1rem;
    }

    .benefits-table-wrap {
      width: 100%;
      overflow-x: auto;
      border-radius: var(--r2);
      box-shadow: var(--shadow-md);
      margin-bottom: 3rem;
      -webkit-overflow-scrolling: touch;
    }

    .benefits-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--white);
      border-radius: var(--r2);
      overflow: hidden;
    }

    .benefits-table thead th {
      background: var(--dark);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.8125rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      padding: 1rem 1.5rem;
      text-align: left;
    }

    .benefits-table thead th:last-child {
      text-align: right;
    }

    .benefits-table tbody td {
      padding: 1rem 1.5rem;
      border-bottom: 1px solid var(--gray-border);
      font-size: 0.875rem;
    }

    .benefits-table tbody td:last-child {
      text-align: right;
      font-weight: 600;
      white-space: nowrap;
    }

    .benefits-table tbody tr:nth-child(even) {
      background: var(--gray-light);
    }

    .benefits-table tbody tr:hover {
      background: var(--orange-soft);
    }

    .benefits-table tr:last-child td {
      border-bottom: none;
    }

    .benefits-table .total-row td {
      background: var(--orange-soft);
      font-weight: 800;
      font-size: 1rem;
      border-top: 2px solid var(--orange);
      border-bottom: none;
    }

    .benefits-table .total-row td:last-child {
      color: var(--orange);
      font-size: 1.125rem;
    }

    /* Карточки налоговой экономии */
    .benefits-cards-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.75rem;
      margin-bottom: 3.5rem;
    }

    .benefit-tax-card {
      background: var(--white);
      border-radius: var(--r2);
      padding: 2rem;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--gray-border);
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .benefit-tax-card:hover {
      border-color: var(--orange);
      box-shadow: var(--shadow-lg);
    }

    .benefit-tax-badge {
      display: inline-block;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--orange);
      background: var(--orange-soft);
      padding: 0.375rem 1rem;
      border-radius: 100px;
      margin-bottom: 1rem;
    }

    .benefit-tax-card h3 {
      font-size: 1.25rem;
      margin-bottom: 0.375rem;
    }

    .benefit-tax-card .tax-subtitle {
      font-size: 0.8125rem;
      color: var(--gray);
      margin-bottom: 1.25rem;
    }

    .benefit-tax-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .benefit-tax-list li {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 0.75rem 0;
      border-bottom: 1px dashed var(--gray-border);
      font-size: 0.875rem;
    }

    .benefit-tax-list li:last-child {
      border-bottom: none;
    }

    .benefit-tax-list .tax-label {
      color: var(--gray);
    }

    .benefit-tax-list .tax-value {
      font-weight: 600;
      white-space: nowrap;
    }

    .benefit-tax-list li.savings .tax-value {
      color: var(--orange);
      font-weight: 800;
      font-size: 1rem;
    }

    .benefit-tax-list li.real-cost {
      padding-top: 1rem;
      margin-top: 0.25rem;
      border-top: 2px solid var(--orange);
      border-bottom: none;
    }

    .benefit-tax-list li.real-cost .tax-label {
      font-weight: 700;
      color: var(--black);
      font-size: 0.9375rem;
    }

    .benefit-tax-list li.real-cost .tax-value {
      font-size: 1.5rem;
      font-weight: 900;
      font-family: 'Montserrat', sans-serif;
      color: var(--black);
    }

    .benefit-tax-footnote {
      font-size: 0.75rem;
      color: var(--gray);
      margin-top: 1rem;
      line-height: 1.5;
    }

    @media (max-width: 900px) {
      .benefits-cards-grid {
        grid-template-columns: 1fr;
      }
      .benefit-tax-card {
        padding: 1.5rem;
      }
      .benefit-tax-list li {
        flex-wrap: wrap;
        gap: 0.25rem;
      }
      .benefit-tax-list .tax-value {
        white-space: normal;
      }
    }

    /* Преимущества */
    .benefits-advantages-title {
      text-align: center;
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(1.125rem, 2.5vw, 1.375rem);
      font-weight: 800;
      margin-top: 30px;
      margin-bottom: 2rem;
      color: var(--black);
    }

    .benefits-advantages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    /* Калькулятор в таблице */
    #calcTable input[type="text"] {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.9375rem;
      font-weight: 700;
      padding: 0.5rem 0.625rem;
      border: 2px solid var(--orange);
      border-radius: 0.5rem;
      background: var(--orange-soft);
      color: var(--black);
      outline: none;
      transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
      width: 100%;
      max-width: 130px;
      box-sizing: border-box;
    }

    #calcTable input[type="text"]:focus {
      border-color: var(--orange-h);
      box-shadow: 0 0 0 5px var(--orange-glow);
      background: var(--white);
    }

    #calcTable input[type="text"]::placeholder {
      color: var(--gray);
      font-weight: 400;
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
    }

/* ===== Левый видео-FAB ===== */
.video-fab {
  position: fixed;
  left: 1rem;
  top: 70%;
  transform: translateY(-50%);
  z-index: 95;
  width: 9.375rem;
  background: var(--white);
  border-radius: var(--r2);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-border);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.video-fab.visible {
  opacity: 1;
  pointer-events: auto;
}

.video-fab.collapsed {
  width: 3.25rem;
  border-radius: var(--r);
}

.video-fab.user-hidden {
  opacity: 0;
  pointer-events: none;
}

.video-fab-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.375rem 0.625rem;
  background: var(--orange);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.video-fab.collapsed .video-fab-bar {
  padding: 0.5rem;
  justify-content: center;
}

.video-fab-bar span {
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.3s;
  max-width: 6.25rem;
}

.video-fab.collapsed .video-fab-bar span {
  max-width: 0;
  opacity: 0;
}

.video-fab-bar-btns {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}

.video-fab.collapsed .video-fab-bar-btns {
  display: none;
}

.video-fab-bar-btns button {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1;
  transition: color 0.2s;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-fab-bar-btns button:hover {
  color: white;
}

.video-fab-video {
  position: relative;
  aspect-ratio: 9 / 14;
  background: #000;
  cursor: pointer;
  overflow: hidden;
}

.video-fab.collapsed .video-fab-video {
  aspect-ratio: 1 / 1;
}

.video-fab-video-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--orange-soft), var(--gray-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-fab.collapsed .video-fab-video-bg {
  background: var(--orange-soft);
}

.video-fab-video-play {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255,102,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-fab.collapsed .video-fab-video-play {
  width: 2rem;
  height: 2rem;
}

.video-fab-video:hover .video-fab-video-play {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(255,102,0,0.5);
}

.video-fab-video-play svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 2px;
}

.video-fab.collapsed .video-fab-video-play svg {
  width: 1rem;
  height: 1rem;
}

.video-fab-footer {
  padding: 0.375rem 0.625rem;
  text-align: center;
  font-size: 0.625rem;
  color: var(--gray);
  font-weight: 500;
  border-top: 1px solid var(--gray-border);
}

.video-fab.collapsed .video-fab-footer {
  display: none;
}

/* Видео-попап */
.video-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--overlay);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: vpopupFadeIn 0.3s ease;
}

.video-popup-overlay.open {
  display: flex;
}

@keyframes vpopupFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.video-popup {
  background: var(--white);
  border-radius: var(--r2);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 52.5rem;
  overflow: hidden;
  animation: vpopupSlideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes vpopupSlideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.video-popup-tabs {
  display: flex;
  background: var(--gray-light);
  border-bottom: 1px solid var(--gray-border);
}

.video-popup-tab {
  flex: 1;
  padding: 1rem 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.25s;
  position: relative;
  text-align: center;
}

.video-popup-tab:hover {
  color: var(--black);
}

.video-popup-tab.active {
  color: var(--orange);
  background: var(--white);
}

.video-popup-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
}

.video-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--gray);
  transition: background 0.2s;
}

.video-popup-close:hover {
  background: var(--gray-border);
  color: var(--black);
}

.video-popup-body {
  position: relative;
  background: #000;
}

.video-popup-player {
  aspect-ratio: 16 / 9;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-popup-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 2.5rem;
}

.video-popup-placeholder svg {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.video-popup-placeholder p {
  font-size: 0.875rem;
  max-width: 17.5rem;
}

@media (max-width: 900px) {
  .video-fab {
    left: 0.75rem;
    right: auto;
    width: 5.625rem;
    font-size: 0.5rem;
  }
  .video-fab-bar {
    padding: 0.375rem 0.5rem;
  }
  .video-fab-bar span {
    max-width: 0;
    opacity: 0;
  }
  .video-fab-bar-btns {
    display: none;
  }
  .video-fab-video-play {
    width: 2.25rem;
    height: 2.25rem;
  }
  .video-fab-video-play svg {
    width: 1.125rem;
    height: 1.125rem;
  }
  .video-fab-footer {
    padding: 0.375rem;
    font-size: 0.625rem;
  }
  .video-fab.collapsed {
    width: 5.625rem;
  }
}
/* ===== Cookie-баннер (сквозной) ===== */
.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 46rem;
  margin: 0 auto;
  background: var(--black);
  color: var(--white);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  z-index: 9999;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner .cookie-text { font-size: 0.875rem; line-height: 1.4; flex: 1; }
.cookie-banner .cookie-text a { color: var(--orange); text-decoration: underline; }
.cookie-banner .cookie-accept {
  flex: none;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-banner .cookie-accept:hover { background: var(--orange-h); }
@media (max-width: 560px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
}

/* ===== Блик на летающих FAB-кнопках (переиспользует keyframes btn-shine-sweep) ===== */
.fab-btn {
  position: relative;
  overflow: hidden;
}
.fab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.15) 45%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0.15) 55%, transparent 100%);
  transform: skewX(-18deg);
  animation: btn-shine-sweep 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.fab-btn > * {
  position: relative;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .fab-btn::before { animation: none; display: none; }
}
