:root {
  --color-bg: #e4eaf4;
  --color-bg-elev: #edf1f8;
  --color-bg-dark: #050911;
  --color-white: #ffffff;
  --color-accent: #3b82f6;
  --color-accent-2: #8b5cf6;
  --color-accent-glow: rgba(59, 130, 246, 0.5);
  --color-text: #0a1020;
  --color-muted: #4a5874;
  --color-border: rgba(15, 23, 42, 0.09);
  --color-btn-primary-bg: #335fb8;
  --color-btn-primary-bg-hover: #3f6fc9;
  --color-btn-primary-shadow: rgba(30, 58, 138, 0.42);
  --neo-light: #e8ecf4;
  --neo-shadow: 164 184 198;
  --font-display: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --tracking-tight: -0.03em;
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-apple: cubic-bezier(0.25, 0.1, 0.2, 1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 28px 72px rgba(8, 14, 28, 0.11);
  --shadow-raised: 10px 10px 28px rgba(var(--neo-shadow) / 0.4), -8px -8px 24px rgba(255, 255, 255, 0.9);
  --shadow-pressed: inset 3px 3px 8px rgba(var(--neo-shadow) / 0.35),
    inset -2px -2px 8px rgba(255, 255, 255, 0.85);
  --shadow-glow: 0 0 64px var(--color-accent-glow);
  --tilt-rx: 0deg;
  --tilt-ry: 0deg;
  --pointer-x: 0.5;
  --pointer-y: 0.35;
  --transition: 0.4s var(--ease-apple);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.page {
  margin: 0;
  font-family: var(--font);
  color: var(--color-text);
  background:
    radial-gradient(100% 80% at 0% 0%, rgba(139, 92, 246, 0.07) 0%, transparent 52%),
    radial-gradient(90% 60% at 100% 10%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #e8edf7 0%, var(--color-bg) 45%, #f0f4fb 100%);
  min-height: 100vh;
}

h1,
h2,
h3,
.section-title,
.hero-title,
.footer-heading,
.logo,
.access-card__title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  letter-spacing: var(--tracking-tight);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--color-accent);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.narrow {
  width: min(720px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-bg-dark);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  z-index: 10000;
}
.skip-link:focus {
  left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Glass & header (неоморф 2.0: слои, светлая кромка) */
.glass-header {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86) 0%, rgba(248, 250, 252, 0.72) 100%);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-raised), 0 0 0 1px rgba(15, 23, 42, 0.04) inset, var(--shadow-soft);
  box-sizing: border-box;
}

.site-header.glass-header {
  position: sticky;
  top: 12px;
  z-index: 1000;
  margin: 12px auto 0;
  width: min(1120px, calc(100% - 24px));
  max-width: calc(100vw - 24px);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
}

.site-header {
  position: relative;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem 1rem;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgb(15 23 42 / 0.08);
}

.logo-text {
  line-height: 1.15;
}

.logo-accent {
  color: var(--color-accent);
}

a.logo:hover {
  color: var(--color-text);
}

a.logo:hover .logo-accent {
  color: var(--color-accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
}

.site-header .logo {
  flex-shrink: 0;
}

.site-header .nav-toggle {
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0.5rem 0.75rem;
  flex: 1;
  min-width: 0;
}

/* Ссылки сразу после логотипа, кнопка — вправо, всё в одну линию */
.site-nav > .btn-header {
  margin-left: auto;
  flex-shrink: 0;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.2rem 0.55rem;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
}

.nav-link {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--color-muted);
  padding: 0.32rem 0.45rem;
  border-radius: 10px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--color-text);
  background: rgba(96, 165, 250, 0.12);
}

.btn-header {
  flex-shrink: 0;
  white-space: nowrap;
  line-height: 1.2;
  font-size: clamp(0.62rem, 1vw + 0.45rem, 0.76rem);
  padding: 0.4rem 0.65rem;
}

/* Кнопки: «стеклянные» пилюли, многослойные тени, подсветка — в духе актуального Apple-style UI */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.78rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s var(--ease-spring),
    background 0.35s var(--ease-apple), border-color 0.35s var(--ease-apple), filter 0.35s ease;
  isolation: isolate;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 45%);
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(125deg, transparent 40%, rgba(255, 255, 255, 0.2) 48%, rgba(255, 255, 255, 0) 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-apple);
  pointer-events: none;
  z-index: 0;
}
.btn > * {
  position: relative;
  z-index: 1;
}
.btn:hover {
  transform: translateY(-2px) scale(1.01);
}
.btn:hover::after {
  opacity: 0.65;
}
.btn:active {
  transform: translateY(0) scale(0.99);
  transition-duration: 0.12s;
}
.btn-primary {
  color: var(--color-white);
  background: linear-gradient(165deg, #4d7fd0 0%, #3357a4 50%, #243d78 100%);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.28) inset, 0 4px 6px rgba(0, 0, 0, 0.12),
    0 12px 36px var(--color-btn-primary-shadow), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}
.btn-primary:hover {
  background: linear-gradient(165deg, #5a8adc 0%, #3c63b0 50%, #2a4990 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.32) inset, 0 6px 16px rgba(0, 0, 0, 0.1),
    0 20px 48px rgba(37, 99, 235, 0.4), 0 0 32px rgba(59, 130, 246, 0.25);
  filter: brightness(1.04);
}
.btn-secondary {
  background: linear-gradient(165deg, rgba(96, 165, 250, 0.28) 0%, rgba(59, 130, 246, 0.12) 100%);
  color: var(--color-text);
  border-color: rgba(59, 130, 246, 0.38);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 4px 14px rgba(59, 130, 246, 0.12);
}
.btn-secondary::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 50%);
  opacity: 0.5;
}

/* Лид-магнит в Hero: тёмный фон карточки — светлый текст на кнопке */
.hero-card .btn-secondary {
  color: #ffffff;
  background: rgba(96, 165, 250, 0.35);
  border-color: rgba(186, 230, 253, 0.5);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.hero-card .btn-secondary:hover {
  color: #ffffff;
  background: rgba(96, 165, 250, 0.52);
  border-color: rgba(224, 242, 254, 0.75);
  box-shadow: 0 4px 18px rgba(96, 165, 250, 0.25);
}

.btn-outline {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  border-color: rgba(15, 23, 42, 0.18);
  color: var(--color-text);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 2px 8px rgba(15, 23, 42, 0.05);
}
.btn-outline::before {
  opacity: 0.6;
}
.btn-on-dark {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--color-white);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn-on-dark:hover {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.06) 100%);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 8px 28px rgba(0, 0, 0, 0.2);
}
.btn-on-dark::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 50%);
}
.btn-block {
  width: 100%;
}
.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
}
.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

/* Hero: глубина, AI-свет, реакция на курсор (переменные из motion-ui) */
#hero,
.hero.section-dark {
  --pointer-x: 0.5;
  --pointer-y: 0.35;
}
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}
.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-white);
}
.section-dark .hero-title,
.section-dark .section-title {
  color: var(--color-white);
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.35);
}
.section-dark .hero-sub,
.section-dark .section-sub {
  color: rgba(255, 255, 255, 0.86);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg > img,
.hero-bg .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
}

/* Анимированные северное сияние — мягкое, без перегруза */
.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.5;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(99, 102, 241, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 70% 45% at 80% 40%, rgba(59, 130, 246, 0.2) 0%, transparent 45%);
  filter: blur(2px);
  animation: heroAurora 18s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero-aurora {
    animation: none;
    opacity: 0.35;
  }
}
@keyframes heroAurora {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.04) translate(2%, -1%);
    opacity: 0.6;
  }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 90% 70% at calc(var(--pointer-x) * 100%) calc(var(--pointer-y) * 100%),
      rgba(99, 102, 241, 0.2) 0%,
      transparent 55%
    ),
    radial-gradient(ellipse 70% 55% at 85% 10%, rgba(59, 130, 246, 0.16) 0%, transparent 50%),
    linear-gradient(125deg, rgba(5, 8, 16, 0.68) 0%, rgba(20, 40, 90, 0.42) 50%, rgba(5, 8, 16, 0.72) 100%);
  transition: background 0.35s var(--ease-apple);
}
.hero-glow {
  position: absolute;
  z-index: 2;
  width: 55%;
  height: 55%;
  right: -12%;
  top: 15%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.35) 0%,
    rgba(59, 130, 246, 0.15) 40%,
    transparent 70%
  );
  animation: pulseGlow 10s var(--ease-apple) infinite alternate;
  pointer-events: none;
  filter: blur(0.5px);
}
/* Лёгкий зерновой шум: глубина, без крупных пикселей */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grainShift 0.3s steps(1) infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero-grain {
    animation: none;
    opacity: 0.12;
  }
}
@keyframes grainShift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-2%, 2%);
  }
}
@keyframes pulseGlow {
  from {
    opacity: 0.4;
    transform: scale(1) rotate(0deg);
  }
  to {
    opacity: 0.85;
    transform: scale(1.1) rotate(2deg);
  }
}
.hero-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 320px);
  gap: 2.5rem;
  align-items: start;
}
.hero-title {
  font-size: clamp(1.8rem, 4.2vw, 2.9rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-muted);
  margin: 0 0 1.25rem;
}
.hero-bullets {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--color-muted);
  line-height: 1.7;
}
.section-dark .hero-bullets {
  color: rgba(255, 255, 255, 0.88);
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero--compact {
  padding: 3rem 0 3.5rem;
}
.hero--compact .hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
}
.hero--compact .hero-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

.glass-panel {
  --tilt-rx: 0deg;
  --tilt-ry: 0deg;
  position: relative;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 248, 252, 0.78) 100%);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-raised), 0 0 0 1px rgba(15, 23, 42, 0.04) inset, var(--shadow-soft);
  transform: perspective(920px) rotateX(var(--tilt-rx)) rotateY(var(--tilt-ry)) translateZ(0);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s var(--ease-spring), border-color 0.3s;
}
.glass-panel:hover {
  box-shadow: 12px 12px 32px rgba(var(--neo-shadow) / 0.32), 0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 24px 48px rgba(8, 14, 28, 0.08);
}
.section-dark .glass-panel {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 0 50px rgba(59, 130, 246, 0.08);
}
.section-dark .glass-panel:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 24px 70px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 0 64px rgba(99, 102, 241, 0.12);
}
.lead-magnet-title {
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.lead-magnet-text {
  margin: 0 0 1rem;
  line-height: 1.5;
  color: var(--color-muted);
}
.section-dark .lead-magnet-text {
  color: rgba(255, 255, 255, 0.85);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}
.section-muted {
  background: rgba(255, 255, 255, 0.55);
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.section-sub {
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0 0 2rem;
  max-width: 640px;
}
.text-center {
  text-align: center;
}
.mt-lg {
  margin-top: 2rem;
}

/* Cards */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.bento-grid .product-card {
  min-height: 100%;
}
.pain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.05rem;
  line-height: 2;
  color: var(--color-muted);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cards-3--plates {
  align-items: stretch;
}

.cards-3--plates .product-card {
  min-height: 100%;
}
.card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}
.card h3 {
  margin-top: 0;
}
.card-result {
  margin-bottom: 0;
  color: var(--color-muted);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.catalog-grid--home {
  margin-top: 1rem;
  gap: 1.15rem;
}

/* «Популярные проекты»: цена и «Подробнее» заметнее, три карточки в ряд */
.catalog-grid--home .product-card {
  padding: 1.28rem 1.2rem 1.15rem;
}

.catalog-grid--home .product-card__title {
  font-size: 1.02rem;
}

.catalog-grid--home .product-card__price {
  font-size: 0.92rem;
  font-weight: 800;
  color: rgb(var(--pc-rgb));
  letter-spacing: -0.02em;
  max-width: 48%;
  line-height: 1.2;
}

.catalog-grid--home .product-card__desc {
  margin-bottom: 1.05rem;
  font-size: 0.88rem;
  line-height: 1.6;
}

.catalog-grid--home .product-card__more {
  font-size: 0.7rem;
  padding: 0.55rem 1.05rem;
  background: rgb(var(--pc-rgb));
  color: #fff !important;
  border: 2px solid rgb(var(--pc-rgb) / 0.65);
  box-shadow: 0 4px 16px rgb(var(--pc-rgb) / 0.3);
}

.catalog-grid--home .product-card__more:hover {
  color: #fff !important;
  filter: brightness(1.07);
  border-color: rgb(var(--pc-rgb) / 0.85);
  box-shadow: 0 6px 22px rgb(var(--pc-rgb) / 0.38);
  transform: translateY(-1px);
}

/* Плашки продуктов: неоморф 2.0 + стекло + 3D-наклон */
.product-card {
  --pc-rgb: 59 130 246;
  --tilt-rx: 0deg;
  --tilt-ry: 0deg;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.2rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgb(var(--pc-rgb) / 0.22);
  background: linear-gradient(168deg, rgb(var(--pc-rgb) / 0.14) 0%, rgba(255, 255, 255, 0.5) 48%, rgba(255, 255, 255, 0.72) 100%);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 6px 6px 20px rgba(var(--neo-shadow) / 0.28), -4px -4px 16px rgba(255, 255, 255, 0.85),
    0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 4px 24px rgb(15 23 42 / 0.04);
  transform: perspective(900px) rotateX(var(--tilt-rx)) rotateY(var(--tilt-ry)) translateZ(0);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s var(--ease-spring), border-color 0.35s;
}

.product-card--business {
  --pc-rgb: 59 130 246;
}

.product-card--dev {
  --pc-rgb: 16 185 129;
}

.product-card--util {
  --pc-rgb: 245 158 11;
}

.product-card--svc {
  --pc-rgb: 139 92 246;
}

/* Главная: сегментация — мягкие оттенки в общей гамме */
.product-card--seg1 {
  --pc-rgb: 14 165 233;
}

.product-card--seg2 {
  --pc-rgb: 99 102 241;
}

.product-card--seg3 {
  --pc-rgb: 45 212 191;
}

.product-card--seg4 {
  --pc-rgb: 167 139 250;
}

/* Главная: готовые системы */
.product-card--sol1 {
  --pc-rgb: 249 115 22;
}

.product-card--sol2 {
  --pc-rgb: 8 145 178;
}

.product-card--sol3 {
  --pc-rgb: 37 99 235;
}

/* Главная: пакеты цен */
.product-card--pkg1 {
  --pc-rgb: 52 211 153;
}

.product-card--pkg2 {
  --pc-rgb: 96 165 250;
}

.product-card--pkg3 {
  --pc-rgb: 217 70 239;
}

.product-card--highlight {
  border-color: rgb(var(--pc-rgb) / 0.42);
  box-shadow: 6px 6px 22px rgba(var(--pc-rgb) / 0.2), 0 10px 40px rgb(var(--pc-rgb) / 0.12),
    0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.product-card:hover {
  transform: perspective(900px) rotateX(var(--tilt-rx)) rotateY(var(--tilt-ry)) translateY(-5px) translateZ(0);
  border-color: rgb(var(--pc-rgb) / 0.4);
  box-shadow: 8px 14px 32px rgba(var(--neo-shadow) / 0.3), 0 12px 40px rgb(var(--pc-rgb) / 0.18), 0 0 0 1px
    rgba(255, 255, 255, 0.4) inset;
}

.product-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.product-card__left {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.product-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgb(var(--pc-rgb));
  box-shadow: 0 0 0 3px rgb(var(--pc-rgb) / 0.2);
}

.product-card__title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.product-card__price {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.3;
  text-align: right;
  max-width: 42%;
}

.product-card__desc {
  flex: 1;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #4b5563;
}

.product-card:not(:has(.product-card__meta)):not(:has(.product-card__list)) .product-card__desc:last-child {
  margin-bottom: 0;
}

.product-card__meta {
  margin: 0;
  margin-top: auto;
  padding-top: 0.65rem;
  border-top: 1px solid rgb(var(--pc-rgb) / 0.14);
  font-size: 0.82rem;
  line-height: 1.55;
  color: #4b5563;
}

.product-card__meta strong {
  color: rgb(var(--pc-rgb));
  font-weight: 700;
}

.product-card__list {
  flex: 1;
  margin: 0 0 0.85rem;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #4b5563;
}

.product-card__foot {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.product-card__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(var(--pc-rgb)) !important;
  background: #ffffff;
  border: 1px solid rgb(15 23 42 / 0.1);
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.product-card__more:hover {
  color: rgb(var(--pc-rgb)) !important;
  border-color: rgb(var(--pc-rgb) / 0.35);
  box-shadow: 0 2px 10px rgb(var(--pc-rgb) / 0.18);
  transform: translateY(-1px);
}

button.product-card__more {
  font-family: inherit;
  cursor: pointer;
}

.product-card__more--solid {
  background: rgb(var(--pc-rgb));
  color: #fff !important;
  border-color: rgb(var(--pc-rgb) / 0.45);
  box-shadow: 0 4px 16px rgb(var(--pc-rgb) / 0.32);
}

.product-card__more--solid:hover {
  color: #fff !important;
  filter: brightness(1.06);
  border-color: rgb(var(--pc-rgb) / 0.55);
  box-shadow: 0 6px 22px rgb(var(--pc-rgb) / 0.4);
}

@media (max-width: 768px) {
  .product-card__head {
    flex-wrap: wrap;
  }
  .product-card__price {
    max-width: none;
    width: 100%;
    text-align: left;
    padding-left: calc(10px + 0.55rem);
  }
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.case-card .case-gallery img {
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
}
.case-niche {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
  margin: 0.75rem 0 0.25rem;
}
.case-facts {
  margin: 0;
  padding-left: 1rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.steps-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.step-card {
  --tilt-rx: 0deg;
  --tilt-ry: 0deg;
  padding: 1.25rem;
  position: relative;
  border-radius: var(--radius-md);
  transform: perspective(880px) rotateX(var(--tilt-rx)) rotateY(var(--tilt-ry)) translateZ(0);
  transition: transform 0.45s var(--ease-spring);
}
.case-card {
  --tilt-rx: 0deg;
  --tilt-ry: 0deg;
  position: relative;
  transform: perspective(880px) rotateX(var(--tilt-rx)) rotateY(var(--tilt-ry)) translateZ(0);
  transition: transform 0.45s var(--ease-spring);
}
.step-num {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.25);
  font-weight: 700;
  font-size: 0.85rem;
  margin-right: 0.35rem;
}

.adv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.05rem;
  line-height: 2;
  color: var(--color-muted);
}
.adv-list.two-col {
  columns: 2;
  column-gap: 2rem;
}

/* Список преимуществ на странице продукта (#solution) */
.solution-items {
  list-style: none;
  padding: 0;
  margin: 1.35rem 0 0;
  max-width: 44rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.solution-items__row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 0;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 6px 24px rgba(10, 14, 26, 0.05);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.solution-items__row:hover {
  border-color: rgba(58, 95, 154, 0.18);
  box-shadow: 0 8px 28px rgba(58, 95, 154, 0.08);
}
.solution-items__bullet {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  margin-top: 0.05rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(96, 165, 250, 0.28), rgba(58, 95, 154, 0.12));
  border: 1px solid rgba(58, 95, 154, 0.2);
  box-shadow: 0 2px 10px rgba(58, 95, 154, 0.12);
}
.solution-items__bullet::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: solid var(--color-btn-primary-bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}
.solution-items__text {
  flex: 1;
  min-width: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--color-muted);
}

/* Страница продукта: блок «решает это за вас» по центру */
#solution .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#solution .section-title {
  text-align: center;
  max-width: 42rem;
  width: 100%;
}
#solution .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 40rem;
  width: 100%;
}
#solution .solution-items {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
#solution .prose {
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
#solution .emphasis {
  text-align: center;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.cta-block {
  padding: 2rem;
  text-align: center;
}
.cta-note {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}
.inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 1.5rem;
}
.inline-form .field {
  margin: 0;
  min-width: 180px;
}

.field {
  margin-bottom: 1rem;
  text-align: left;
}
.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}
.field input,
.field textarea,
.input,
.select-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  font-family: inherit;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus,
.field textarea:focus,
.input:focus,
.select-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.25);
}
.field-error {
  display: block;
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  min-height: 1em;
}

/* Slider */
.slider {
  position: relative;
  max-width: min(640px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 0 3rem;
}
.slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.slider-track {
  display: flex;
  transition: transform 0.45s ease;
}
.slide {
  min-width: 100%;
  padding: 1.75rem 1.5rem 2rem;
  box-sizing: border-box;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: left;
  box-shadow: var(--shadow-soft);
}
.review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.review-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  flex-shrink: 0;
  border: 3px solid rgba(96, 165, 250, 0.35);
}
.review-head {
  width: 100%;
  max-width: 32rem;
  text-align: center;
  margin-bottom: 1rem;
}
.review-name-line {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.4rem;
  justify-content: center;
  align-items: baseline;
}
.review-name-sep {
  color: var(--color-muted);
  font-weight: 500;
}
.review-name {
  white-space: nowrap;
}
.review-role {
  font-weight: 600;
  color: var(--color-accent);
}
.review-org {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.4;
}
.review-body {
  width: 100%;
  max-width: 32rem;
  margin: 0;
}
.review-task,
.review-solution {
  margin: 0 0 0.6rem;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--color-text);
}
.review-solution {
  margin-bottom: 0;
  color: var(--color-muted);
}
.review-body .review-label {
  color: var(--color-text);
  font-weight: 600;
}
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.slider-nav:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}
.slider-prev {
  left: 0;
}
.slider-next {
  right: 0;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(15, 23, 42, 0.2);
  cursor: pointer;
  padding: 0;
  transition: transform var(--transition), background var(--transition);
}
.slider-dot.is-active {
  background: var(--color-accent);
  transform: scale(1.15);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  min-width: 0;
}
.about-photo {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
.about-photo__link {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 5 / 6;
}
.about-photo__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
  margin-top: 0.65rem;
  padding: 0 0.15rem;
}
.about-photo__name {
  font-weight: 700;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.25;
  color: var(--color-text);
}
.about-photo__role {
  font-size: clamp(0.78rem, 1.85vw, 0.875rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-muted);
}

/* Accordion */
.acc-item {
  border-bottom: 1px solid var(--color-border);
}
.acc-trigger {
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.acc-trigger::after {
  content: '+';
  font-weight: 400;
  color: var(--color-accent);
  font-size: 1.25rem;
}
.acc-trigger[aria-expanded='true']::after {
  content: '−';
}
.acc-panel {
  padding: 0 0 1rem;
  color: var(--color-muted);
  line-height: 1.65;
}
.acc-panel[hidden] {
  display: none;
}

/* Финальный блок заявки (двухколоночная glass-карточка) */
.access-final {
  padding: 4.5rem 0;
  background: linear-gradient(155deg, #e4ebf6 0%, #eef2fb 42%, #f5f7fc 100%);
}
.access-card--hero {
  --tilt-rx: 0deg;
  --tilt-ry: 0deg;
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.55) 0%, rgba(248, 250, 252, 0.38) 100%);
  backdrop-filter: blur(22px) saturate(1.12);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-raised), 0 28px 90px rgba(10, 14, 26, 0.08), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  transform: perspective(960px) rotateX(var(--tilt-rx)) rotateY(var(--tilt-ry)) translateZ(0);
  transition: transform 0.5s var(--ease-spring), box-shadow 0.45s var(--ease-spring);
}
.access-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.75rem) clamp(1.5rem, 3vw, 2rem);
  align-items: start;
}
.access-card__col--info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.access-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-btn-primary-bg);
}
.access-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-btn-primary-bg);
  box-shadow: 0 0 0 3px rgba(58, 95, 154, 0.2);
}
.access-card__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.28;
  color: var(--color-text);
}
.access-card__title strong {
  font-weight: 800;
}
.access-card__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-muted);
  max-width: 34ch;
}
.access-card__email {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid rgba(58, 95, 154, 0.35);
  width: fit-content;
  transition: color var(--transition), border-color var(--transition);
}
.access-card__email:hover {
  color: var(--color-btn-primary-bg);
  border-color: var(--color-btn-primary-bg);
}
.access-card__meta {
  margin: 0.25rem 0 0;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(75, 85, 99, 0.75);
  line-height: 1.5;
}
.access-form__title {
  margin: 0 0 1.35rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
}
.access-form .field--underline {
  margin-bottom: 1.35rem;
}
.access-form .field--underline label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(75, 85, 99, 0.9);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.access-form .field--underline input {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 0;
  background: transparent;
  padding: 0.5rem 0;
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-text);
  box-shadow: none;
  transition: border-color var(--transition);
}
.access-form .field--underline input::placeholder {
  color: rgba(75, 85, 99, 0.45);
}
.access-form .field--underline input:focus {
  outline: none;
  border-bottom-color: var(--color-btn-primary-bg);
  box-shadow: none;
}
.access-form .field--underline .field-error {
  margin-top: 0.35rem;
  font-size: 0.8rem;
}
.access-form__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem 1.5rem;
  margin-top: 0.25rem;
}
.btn-access {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.88rem 1.4rem;
  border: none;
  border-radius: var(--radius-pill);
  background: #0a0e1a;
  color: var(--color-white);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(10, 14, 26, 0.28);
  transition: transform 0.2s ease, box-shadow var(--transition), background var(--transition);
}
.btn-access:hover {
  background: #141a2a;
  box-shadow: 0 12px 32px rgba(10, 14, 26, 0.35);
  transform: translateY(-1px);
}
.btn-access__icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  position: relative;
  flex-shrink: 0;
}
.btn-access__icon::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.access-form__hint {
  margin: 0;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--color-muted);
  padding-top: 0.35rem;
}
.access-form__consent {
  margin-top: 1.25rem;
}
.access-form__consent .field-consent {
  margin-top: 0;
}
.access-form__consent .checkbox-label-text {
  color: rgba(75, 85, 99, 0.95);
}
.access-amplify {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.access-amplify__label {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-btn-primary-bg);
}
.access-amplify__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--color-text);
}
.access-amplify__list li {
  position: relative;
  padding-left: 0.85rem;
  margin-bottom: 0.45rem;
}
.access-amplify__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(58, 95, 154, 0.55);
}
.access-card__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem 1.5rem;
  padding: 1.1rem clamp(1.5rem, 4vw, 2.75rem) 1.35rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.35);
}
.access-card__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.access-card__brand .logo-mark {
  width: 36px;
  height: 36px;
}
.access-card__brand-text {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
}
@media (max-width: 900px) {
  .access-card__body {
    grid-template-columns: 1fr;
  }
  .access-amplify {
    grid-template-columns: 1fr;
  }
  .access-form__cta-row {
    flex-direction: column;
  }
  .access-form__hint {
    max-width: none;
    padding-top: 0;
  }
}
/* Нижний CTA на каталоге / продукте — светлая карточка */
.site-cta-banner {
  padding: 3.25rem 0 4rem;
  background: linear-gradient(180deg, rgba(243, 246, 251, 0.6) 0%, #e8edf5 55%, #eef2fa 100%);
}
.site-cta-banner__card {
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.35rem, 4vw, 2.5rem);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 22px 64px rgba(10, 14, 26, 0.08), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.site-cta-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
}
.site-cta-banner__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--color-text);
  max-width: 38ch;
}
.site-cta-banner__sub {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-muted);
  max-width: 44ch;
}
.site-cta-banner__btn {
  flex-shrink: 0;
  box-shadow: 0 10px 32px var(--color-btn-primary-shadow);
  transition: transform 0.2s ease, box-shadow var(--transition), background var(--transition);
}
.site-cta-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px var(--color-btn-primary-shadow), 0 0 28px rgb(96 165 250 / 0.2);
}
@media (max-width: 720px) {
  .site-cta-banner__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .site-cta-banner__copy {
    text-align: center;
  }
  .site-cta-banner__title,
  .site-cta-banner__sub {
    max-width: none;
  }
  .site-cta-banner__btn {
    width: 100%;
    justify-content: center;
  }
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  color: var(--color-text);
  padding: 3rem 0 1.25rem;
  margin-top: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 -16px 48px rgba(10, 14, 26, 0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.footer-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
}
.footer-logo-text {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
  line-height: 1.15;
}
.site-footer .footer-brand-row .logo-mark {
  box-shadow: 0 2px 14px rgba(10, 14, 26, 0.1);
}
.footer-tag {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.5;
}
.footer-heading {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 700;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 2;
}
.footer-links a {
  color: var(--color-muted);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--color-btn-primary-bg);
}
.footer-bottom {
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.footer-domain a {
  color: var(--color-btn-primary-bg);
  font-weight: 600;
}
.footer-domain a:hover {
  color: var(--color-btn-primary-bg-hover);
}

/* Кнопка «Наверх» */
.back-to-top {
  position: fixed;
  left: max(16px, env(safe-area-inset-left, 0px));
  bottom: max(22px, env(safe-area-inset-bottom, 0px));
  z-index: 8500;
  padding: 0.62rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--color-btn-primary-bg);
  color: var(--color-white);
  box-shadow: 0 8px 26px var(--color-btn-primary-shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease,
    background var(--transition), box-shadow var(--transition);
  pointer-events: none;
}
.back-to-top:hover {
  background: var(--color-btn-primary-bg-hover);
  box-shadow: 0 10px 32px var(--color-btn-primary-shadow), 0 0 24px rgb(96 165 250 / 0.18);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Cookie */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  max-width: min(480px, 92vw);
  padding: 1rem 1.25rem;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  text-align: center;
}
.cookie-banner.is-visible {
  display: flex;
}
.cookie-title {
  margin: 0;
  font-weight: 700;
}
.cookie-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.5;
}
.btn-cookie {
  align-self: center;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal.is-open {
  display: flex;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 26, 0.55);
  backdrop-filter: blur(4px);
}
.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 2rem;
  animation: modalIn 0.35s ease;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.06);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.modal-title {
  margin: 0 0 0.35rem;
  padding-right: 2rem;
}
.modal-sub {
  margin: 0 0 1rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9600;
  background: rgba(10, 14, 26, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.is-open {
  display: flex;
}
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.75rem;
  cursor: pointer;
}

/* Reveal on scroll: мягкий spring */
.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 0.75s var(--ease-spring), transform 0.75s var(--ease-spring);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-delay {
  transition-delay: 0.14s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transform: translateY(8px);
    transition: opacity 0.4s ease;
  }
  .reveal.is-visible {
    transform: none;
  }
}

.empty-hint {
  text-align: center;
  color: var(--color-muted);
  grid-column: 1 / -1;
}
.hidden {
  display: none !important;
}

.emphasis {
  font-weight: 700;
  color: var(--color-text);
  margin-top: 1rem;
}
.section-dark .emphasis {
  color: var(--color-white);
}
.pain-footer {
  font-weight: 600;
  color: var(--color-muted);
}

/* Product page */
.product-hero .hero-inner {
  grid-template-columns: 1fr minmax(240px, 300px);
}
.product-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(96, 165, 250, 0.25);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.product-subnav {
  position: sticky;
  top: 88px;
  z-index: 900;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: var(--radius-md);
}
.product-subnav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  padding: 0.35rem 0;
  justify-content: center;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.product-subnav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-muted);
  flex-shrink: 0;
  white-space: nowrap;
}
.product-subnav a:hover {
  color: var(--color-accent);
}
.price-big {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0.5rem 0 1rem;
}

/* Блок стоимости на странице продукта — светлая тема */
.product-price {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, #eef2f8 55%, rgba(255, 255, 255, 0.65) 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.product-price .section-title {
  color: var(--color-text);
}
.product-price .price-big {
  color: var(--color-text);
  letter-spacing: -0.03em;
}
.product-price .price-sub {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-muted);
  max-width: 36rem;
}
.product-price .price-included-title {
  margin: 1.75rem 0 0.85rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
}
.price-included {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 38rem;
}
.price-included__row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0 0 0.7rem;
}
.price-included__bullet {
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #6ee7b7 0%, #34d399 45%, #059669 100%);
  box-shadow: 0 1px 4px rgba(5, 150, 105, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.price-included__text {
  flex: 1;
  min-width: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--color-muted);
}
.product-price__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.product-price .product-price__service-link {
  text-decoration: none;
}

/* Акция: зачёркнутая цена, скидка, таймер */
.price-was {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  color: var(--color-muted);
  font-size: 1.15rem;
  font-weight: 600;
  margin-right: 0.65rem;
}
.price-now {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: var(--tracking-tight);
}
.price-discount-badge,
.price-discount-inline {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  background: linear-gradient(135deg, #fde68a 0%, #fbbf24 100%);
  border-radius: 8px;
  vertical-align: middle;
}
.product-card__price--sale {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  text-align: right;
  line-height: 1.25;
}
.product-card__price--sale .price-was {
  font-size: 0.82rem;
  margin-right: 0;
}
.product-card__price--sale .price-now {
  font-size: 1rem;
  font-weight: 700;
}
.product-card__price--sale .price-discount-inline {
  margin-left: 0.35rem;
  font-size: 0.72rem;
}
.price-sale-block {
  margin: 0.5rem 0 1rem;
}
.price-sale-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
}
.price-countdown-intro {
  margin: 1rem 0 0.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-muted);
  max-width: 40rem;
}
.price-sale-countdown {
  display: inline-block;
  padding: 0.75rem 1.1rem;
  margin: 0 0 0.5rem;
  font-variant-numeric: tabular-nums;
}
.price-countdown-digits {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.price-sale-countdown.is-ended .price-countdown-digits {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-muted);
}

/* Экономика / ROI — светлая секция + маркированный список */
.product-roi {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, #f1f5f9 50%, rgba(248, 250, 252, 0.9) 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.product-roi .section-title {
  color: var(--color-text);
}
.roi-items {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  max-width: 44rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.roi-items__row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 0;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 6px 22px rgba(10, 14, 26, 0.05);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.roi-items__row:hover {
  border-color: rgba(58, 95, 154, 0.16);
  box-shadow: 0 8px 26px rgba(58, 95, 154, 0.07);
}
.roi-items__bullet {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  margin-top: 0.05rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(96, 165, 250, 0.28), rgba(58, 95, 154, 0.12));
  border: 1px solid rgba(58, 95, 154, 0.2);
  box-shadow: 0 2px 10px rgba(58, 95, 154, 0.12);
}
.roi-items__bullet::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: solid var(--color-btn-primary-bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}
.roi-items__text {
  flex: 1;
  min-width: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--color-muted);
}
.roi-emphasis {
  margin: 1.5rem 0 0;
  padding: 1rem 1.15rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(58, 95, 154, 0.09);
  border-left: 4px solid var(--color-btn-primary-bg);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--color-text);
  max-width: 44rem;
}

/* Блок «старый способ» / боль (#oldway) — маркированный список */
.oldway-items {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  max-width: 44rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.oldway-items__row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 0;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 6px 22px rgba(10, 14, 26, 0.04);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.oldway-items__row:hover {
  border-color: rgba(100, 116, 139, 0.22);
  box-shadow: 0 8px 26px rgba(71, 85, 105, 0.08);
}
.oldway-items__bullet {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  margin-top: 0.05rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(148, 163, 184, 0.28), rgba(100, 116, 139, 0.12));
  border: 1px solid rgba(100, 116, 139, 0.28);
  box-shadow: 0 2px 8px rgba(71, 85, 105, 0.1);
}
.oldway-items__bullet::after {
  content: '';
  display: block;
  width: 12px;
  height: 2px;
  border-radius: 1px;
  background: rgba(71, 85, 105, 0.88);
}
.oldway-items__text {
  flex: 1;
  min-width: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--color-muted);
}
.oldway-emphasis {
  margin: 1.5rem 0 0;
  padding: 1rem 1.15rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.04);
  border-left: 4px solid rgba(71, 85, 105, 0.55);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--color-text);
  max-width: 44rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.gallery-item img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.02);
}
.prose {
  line-height: 1.7;
  color: var(--color-muted);
}
.prose-block {
  line-height: 1.75;
  color: var(--color-muted);
}
.prose-block h2 {
  color: var(--color-text);
  margin-top: 2rem;
}

.legal-doc-page {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.legal-doc {
  padding: 2rem 1.75rem;
  text-align: left;
}
.legal-doc-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0 0 1.25rem;
  color: var(--color-text);
}
.legal-doc-body {
  margin-top: 0.5rem;
}
.legal-doc-body a {
  color: var(--color-link, #2563eb);
  text-decoration: underline;
}
.legal-doc-empty {
  color: var(--color-muted);
  line-height: 1.6;
}
.legal-doc-back {
  margin: 2rem 0 0;
}

.form-consent-wrap {
  width: 100%;
  margin-top: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.field-consent {
  margin-bottom: 0;
  margin-top: 2rem;
  text-align: left;
}
/* Отступ задаёт обёртка на главной — не удваиваем */
.form-consent-wrap .field-consent {
  margin-top: 0;
}
.field-consent .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  cursor: pointer;
  font-weight: 400;
  margin: 0;
  padding: 0.35rem 0;
}
.field-consent .checkbox-label input {
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--color-btn-primary-bg);
  cursor: pointer;
}
.field-consent .checkbox-label-text {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--color-muted);
}
.field-consent .checkbox-label-text a {
  color: var(--color-link, #2563eb);
  text-decoration: underline;
}
.field-consent .field-error {
  margin-top: 0.35rem;
  display: block;
}

/* Breakpoints */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards-3,
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-inner,
  .product-hero .hero-inner {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-photos {
    max-width: 420px;
    margin: 0 auto;
  }
  .adv-list.two-col {
    columns: 1;
  }
}

@media (max-width: 768px) {
  .glass-header {
    width: min(1120px, calc(100% - 16px));
    max-width: calc(100vw - 16px);
    border-radius: var(--radius-md);
    top: 8px;
  }
  .site-header .header-inner {
    justify-content: space-between;
  }
  .logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }
  .logo {
    font-size: 1rem;
    gap: 0.45rem;
  }
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav > .btn-header {
    margin-left: 0;
  }
  .section-dark .site-nav {
    background: rgba(15, 23, 42, 0.96);
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
  }
  .nav-link {
    white-space: normal;
  }
  .btn-header {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .bento-grid,
  .cards-3,
  .catalog-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .slider {
    padding: 0 2.5rem;
  }
  .inline-form {
    flex-direction: column;
  }
  .product-subnav {
    margin-left: auto;
    margin-right: auto;
    width: min(1120px, calc(100% - 16px));
    max-width: calc(100vw - 16px);
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .product-subnav-inner {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 0.5rem 1rem;
    padding: 0.4rem 0.75rem 0.5rem;
    scrollbar-width: thin;
  }
  .product-subnav-inner::-webkit-scrollbar {
    height: 4px;
  }
  .product-subnav-inner::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.2);
    border-radius: 4px;
  }
  .product-subnav a {
    font-size: 0.85rem;
    padding: 0.15rem 0;
  }
}

/* Блок «цифры и графики» на странице продукта (statStrip) */
.product-stats-strip {
  scroll-margin-top: 5rem;
}
.stat-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}
.stat-bar-card {
  padding: 1.25rem 1.35rem;
}
.stat-bar-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
}
.stat-bar-card__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.35;
}
.stat-bar-card__value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-accent);
  white-space: nowrap;
}
.stat-bar-track {
  height: 12px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
  box-shadow: inset 2px 2px 6px rgba(var(--neo-shadow) / 0.2);
}
.stat-bar-fill {
  height: 100%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.35);
  transition: width 0.85s var(--ease-spring);
}
.stat-bar-card__source {
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--color-muted);
}
.stat-mini-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.stat-mini-card {
  padding: 1.1rem 1.25rem;
  text-align: left;
}
.stat-mini-card__kpi {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
  line-height: 1.1;
}
.stat-mini-card__label {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--color-muted);
}
.stat-mini-card__source {
  margin: 0.5rem 0 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--color-muted);
  opacity: 0.92;
}
.stat-strip-disclaimer {
  margin: 1.35rem 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--color-muted);
  max-width: 58rem;
}
@media (max-width: 900px) {
  .stat-strip-grid,
  .stat-mini-cards {
    grid-template-columns: 1fr;
  }
}
