/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #F7F4FF;
  --bg-card: #FFFFFF;
  --bg-tinted: #F0EBFF;
  --text: #17111F;
  --text-secondary: #6B6675;
  --accent: #6D28D9;
  --accent-2: #A855F7;
  --accent-soft: #EDE9FE;
  --border: #E7DDFB;
  --success: #059669;
  --shadow-sm: 0 1px 4px rgba(109,40,217,.06), 0 2px 12px rgba(109,40,217,.04);
  --shadow-md: 0 4px 24px rgba(109,40,217,.10), 0 1px 4px rgba(109,40,217,.06);
  --shadow-lg: 0 12px 48px rgba(109,40,217,.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --max-w: 1160px;
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Unbounded', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(28px, 5vw, 52px); }
h2 { font-size: clamp(24px, 4vw, 40px); }
h3 { font-size: clamp(16px, 2.5vw, 22px); font-weight: 600; }
h4 { font-size: 15px; font-weight: 700; font-family: 'Manrope', sans-serif; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: #5b21b6;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(109,40,217,.28);
}
.btn--ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-1px);
}
.btn--ghost-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
}
.btn--lg { padding: 15px 32px; font-size: 16px; }
.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--full { width: 100%; }
.btn--add {
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--add:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}
/* State: service already in cart */
.btn--add.btn--added {
  background: rgba(109, 40, 217, 0.10);
  color: var(--accent);
  cursor: default;
  font-size: 12px;
}
.btn--add.btn--added:hover {
  background: rgba(109, 40, 217, 0.10);
  color: var(--accent);
  transform: none;
}

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--accent-soft);
  color: var(--accent);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247,244,255,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.header--scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 16px rgba(109,40,217,.07);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 50%, #a855f7 100%);
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(109,40,217,.35), 0 1px 3px rgba(109,40,217,.2);
  flex-shrink: 0;
}
.logo__text {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--text);
}
.logo__text em {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: .01em;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__link {
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.nav__link:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Cart button */
.cart-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.cart-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.cart-btn__count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger--open span:nth-child(2) { opacity: 0; }
.burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Active nav link ── */
.nav__link--active {
  color: var(--accent);
  background: var(--accent-soft);
}

/* ===== PAGE SUBNAV ===== */
.page-subnav {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: rgba(248,247,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(109,40,217,.10);
  overflow-x: auto;
  scrollbar-width: none;
}
.page-subnav::-webkit-scrollbar { display: none; }
.page-subnav__inner {
  display: flex;
  gap: 2px;
  padding: 8px 0;
  white-space: nowrap;
  align-items: center;
}
.page-snav-link {
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background .18s, color .18s;
  white-space: nowrap;
  flex-shrink: 0;
}
.page-snav-link:hover { background: rgba(109,40,217,.09); color: var(--accent); }
.page-snav-link--active { background: rgba(109,40,217,.07); color: var(--accent); }
.page-snav-link--cta {
  background: var(--accent);
  color: #fff !important;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.page-snav-link--cta:hover { background: #7C3AED; }
@media (max-width: 767px) {
  .page-subnav { top: 56px; }
  .page-snav-link { padding: 6px 12px; font-size: 12px; }
  .page-snav-link--cta { margin-left: 8px; }
}

/* ===== SECTION BASE ===== */
.section {
  padding: 96px 0;
}
.section--tinted {
  background: var(--bg-tinted);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-title {
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
}

/* ===== FADE IN — управляется GSAP ===== */
/* opacity и transform задаются через GSAP, CSS не нужен */

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 108px 0 72px;
  position: relative;
  overflow: hidden;
}

/* ---- VIDEO BACKGROUND ---- */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -2;          /* below .hero__bg (0) and .hero__inner (1) */
  pointer-events: none;
  opacity: 0.78;        /* desktop: clearly visible, not overpowering */
  will-change: opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Smart gradient overlay:
   LEFT  (0–40%)   → 0.80 opacity — keeps text fully readable
   CENTER(40–62%)  → transitions to 0.42 — blending zone
   RIGHT (62–100%) → 0.16 opacity — video/tiles clearly visible
   PLUS  a soft purple radial glow on the right for the dashboard area */
.hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;          /* above video (-2), below hero__bg (0) */
  pointer-events: none;
  background:
    /* Right-side radial glow — muted purple, adds depth behind dashboard */
    radial-gradient(
      ellipse 44% 60% at 80% 46%,
      rgba(139,92,246,0.10) 0%,
      rgba(168,85,247,0.05) 40%,
      transparent 70%
    ),
    /* Primary left→right protection gradient */
    linear-gradient(
      108deg,
      rgba(247,244,255,0.82)  0%,    /* left: text area — strong cover */
      rgba(247,244,255,0.72) 28%,    /* left-centre */
      rgba(247,244,255,0.46) 50%,    /* centre: visible transition */
      rgba(247,244,255,0.22) 68%,    /* right-centre: video coming through */
      rgba(247,244,255,0.12) 100%    /* far right: tiles clearly readable */
    );
}

/* ── TABLET (768px – 1199px) ──────────────────────────── */
@media (max-width: 1199px) {
  .hero__video { opacity: 0.52; }
  .hero__video-overlay {
    background: linear-gradient(
      108deg,
      rgba(247,244,255,0.90)  0%,
      rgba(247,244,255,0.80) 35%,
      rgba(247,244,255,0.56) 60%,
      rgba(247,244,255,0.30) 100%
    );
  }
}

/* ── MOBILE (≤767px) — video ON, lower opacity, strong overlay ── */
@media (max-width: 767px) {
  /* Video stays visible — lighter presence */
  .hero__video { opacity: 0.48; }

  /* Overlay: uniform and strong — mobile is 1-column, whole width is text */
  .hero__video-overlay {
    background: linear-gradient(
      160deg,
      rgba(247,244,255,0.92)  0%,
      rgba(247,244,255,0.88) 40%,
      rgba(247,244,255,0.82) 70%,
      rgba(247,244,255,0.76) 100%
    );
  }

  /* Lavender gradient on hero itself as deeper fallback layer under video */
  .hero {
    background: linear-gradient(
      148deg,
      #ede9fe 0%,
      #f5f3ff 30%,
      #f7f4ff 62%,
      #ede9fe 100%
    );
  }
}

/* Background layer */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero__blob--1 {
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(168,85,247,.17) 0%, transparent 70%);
  top: -200px; right: -120px;
}
.hero__blob--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(109,40,217,.10) 0%, transparent 70%);
  bottom: -120px; left: -60px;
}
.hero__blob--3 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(192,132,252,.09) 0%, transparent 70%);
  top: 42%; left: 36%;
}

/* Subtle dot grid */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(109,40,217,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 90% 80% at 65% 40%, rgba(0,0,0,.55) 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 65% 40%, rgba(0,0,0,.55) 0%, transparent 100%);
}

/* Layout grid */
.hero__inner {
  display: grid;
  grid-template-columns: 52fr 48fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ---- LEFT: TEXT ---- */
.hero__content { max-width: 600px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  border: 1px solid rgba(109,40,217,.15);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: blink-dot 2.4s ease-in-out infinite;
}
@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .25; }
}

.hero__title {
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 500px;
}
.hero__accent {
  background: linear-gradient(125deg, #5b21b6 0%, #7c3aed 40%, #a855f7 80%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 18px;
  line-height: 1.65;
  color: #5F596B;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #7a7085;
}

/* ---- RIGHT: VISUAL ---- */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 900px;
  perspective-origin: 50% 50%;
}

/* Big glow behind dashboard */
.hero__glow {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,.24) 0%, rgba(109,40,217,.11) 40%, transparent 70%);
  filter: blur(56px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.hero__dashboard {
  position: relative;
  width: 100%;
  max-width: 520px;
  z-index: 1;
  will-change: transform;
  /* filter: drop-shadow конфликтует с CSS 3D perspective — убран.
     Тени у .dash__browser и .dash__float собственные box-shadow. */
}

/* ---- BROWSER CARD ---- */
.dash__browser {
  background: #fff;
  border: 1px solid #ddd7f4;
  border-radius: 16px;
  box-shadow:
    0 1px 2px rgba(109,40,217,.04),
    0 6px 24px rgba(109,40,217,.11),
    0 28px 64px rgba(109,40,217,.08);
  overflow: hidden;
  margin-bottom: 12px;
}

.dash__browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: #f5f2ff;
  border-bottom: 1px solid #ece8fb;
}
.dash__browser-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.dash__browser-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.dash__browser-dots span:nth-child(1) { background: #f87171; }
.dash__browser-dots span:nth-child(2) { background: #fbbf24; }
.dash__browser-dots span:nth-child(3) { background: #34d399; }

.dash__browser-url {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,.75);
  border: 1px solid #e5deff;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 10.5px;
  color: #9b8fb5;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash__browser-body {
  padding: 10px 14px 0;
  background: #f9f7ff;
  overflow: hidden;
  height: 162px;
}

/* Animated scroll track inside browser */
.dash__scroll-track {
  will-change: transform;
  padding-bottom: 14px;
}

/* Mini site nav */
.dash__site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid #ede9fe;
}
.dash__site-logo-pill {
  width: 58px; height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #6D28D9, #a855f7);
  opacity: .6;
  flex-shrink: 0;
}
.dash__site-nav-links {
  display: flex;
  gap: 5px;
  flex: 1;
  justify-content: center;
}
.dash__site-nav-links span {
  width: 28px; height: 5px;
  border-radius: 3px;
  background: #ddd6f0;
}
.dash__site-nav-btn {
  width: 42px; height: 18px;
  border-radius: 9px;
  background: var(--accent);
  opacity: .55;
  flex-shrink: 0;
}

/* Scene progress indicator */
.dash__progress {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 2px;
}
.dash__prog-step {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.dash__prog-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #d4cde8;
  flex-shrink: 0;
}
.dash__prog-label {
  font-size: 10px;
  font-weight: 600;
  color: #c4badb;
  white-space: nowrap;
}
.dash__prog-line {
  flex: 1;
  height: 1.5px;
  background: #e5deff;
  margin: 0 6px;
  min-width: 20px;
  position: relative;
  overflow: hidden;
}
.dash__prog-fill {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
}

/* Mini site hero content */
.dash__site-hero { padding: 7px 8px 8px; background: rgba(109,40,217,0); }
.dash__site-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .07em;
  background: var(--accent-soft);
  padding: 2px 7px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.dash__site-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 9px;
}
.dash__line {
  display: block;
  height: 9px;
  border-radius: 5px;
  background: rgba(36,10,90,.12);
  transform-origin: left center;
}
.dash__line--h1 { width: 90%; height: 14px; background: rgba(36,10,90,.2); }
.dash__line--h2 { width: 74%; }
.dash__line--short { width: 52%; }

.dash__site-btn-row { display: flex; gap: 7px; }
.dash__site-cta { height: 21px; border-radius: 11px; }
.dash__site-cta--primary { width: 78px; background: var(--accent); opacity: .75; }
.dash__site-cta--ghost   { width: 78px; background: transparent; border: 1.5px solid #c4b5fd; }

/* Mini feature cards */
.dash__site-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.dash__feat {
  background: #fff;
  border: 1px solid #ede9fe;
  border-radius: 8px;
  padding: 8px;
}
.dash__feat-icon {
  width: 18px; height: 18px;
  border-radius: 5px;
  background: var(--accent-soft);
  margin-bottom: 6px;
}
.dash__feat-lines { display: flex; flex-direction: column; gap: 3px; }
.dash__feat-lines span {
  display: block;
  height: 5px; border-radius: 3px;
  background: #dfd9f0;
}
.dash__feat-lines span:last-child { width: 68%; }

/* Form section inside browser (revealed on scroll) */
.dash__site-form {
  padding: 10px 8px 8px;
  border-top: 1px solid #ede9fe;
  margin-top: 8px;
}
.dash__form-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 7px;
}
.dash__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 6px;
}
.dash__form-field {
  height: 18px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #e5deff;
}
.dash__form-submit {
  height: 22px;
  border-radius: 11px;
  width: 92px;
  background: var(--accent);
  opacity: .75;
}

/* AI bubble chip */
.dash__ai-bubble {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  color: #059669;
  background: rgba(5,150,105,.1);
  border: 1px solid rgba(5,150,105,.22);
  border-radius: 6px;
  padding: 2px 7px;
  margin-top: 5px;
  white-space: nowrap;
}

/* Booking badge chip */
.dash__booking-badge {
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(109,40,217,.18);
  border-radius: 6px;
  padding: 2px 7px;
  margin-top: 5px;
  white-space: nowrap;
}

/* ---- LIGHT SWEEP ---- */
/* GSAP manages transform (xPercent) — no CSS transform here */
.dash__light-sweep {
  position: absolute;
  top: -5%; height: 110%;
  left: 0; width: 35%;
  pointer-events: none;
  z-index: 10;
  background: linear-gradient(
    108deg,
    transparent 15%,
    rgba(255,255,255,.48) 50%,
    transparent 85%
  );
  opacity: 0;
  border-radius: 0;
}

/* ---- MINI-SITE REAL CONTENT ---- */
.dash__mini-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #17111F;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 4px;
  opacity: 0;
  transform: translateY(4px);
}
.dash__mini-accent {
  background: linear-gradient(125deg, #5b21b6 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dash__mini-sub {
  font-size: 9px;
  color: #8B80A8;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(3px);
}

/* CTA glow overlay */
.dash__site-cta--primary {
  position: relative;
  overflow: hidden;
}
.dash__cta-glow {
  position: absolute;
  inset: 0;
  border-radius: 11px;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,.6) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none;
}

/* ---- SERVICES SECTION ---- */
.dash__services-section {
  padding: 10px 8px 8px;
  border-top: 1px solid #ede9fe;
  margin-top: 6px;
}
.dash__svc-header {
  font-size: 8px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .08em;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.dash__svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 7px;
}
.dash__svc-item {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid #ede9fe;
  border-radius: 5px;
  padding: 5px 6px;
}
.dash__svc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .6;
  flex-shrink: 0;
}
.dash__svc-line {
  height: 5px;
  border-radius: 3px;
  background: #ddd6f0;
  flex: 1;
}
.dash__trust-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.dash__trust-stars {
  font-size: 9px;
  color: #f59e0b;
  letter-spacing: 1px;
}
.dash__trust-text {
  font-size: 8.5px;
  color: #8B80A8;
  font-weight: 500;
}

/* Submit glow overlay */
.dash__form-submit {
  position: relative;
  overflow: hidden;
}
.dash__submit-glow {
  position: absolute;
  inset: 0;
  border-radius: 11px;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,.6) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none;
}

/* ---- BOTTOM CARDS ---- */
.dash__cards {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.dash__cards-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 152px;
}

/* Glass base for floating cards */
.dash__float {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(220,214,244,.9);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(109,40,217,.10), 0 1px 3px rgba(109,40,217,.05);
  padding: 14px 16px;
}

/* Project card */
.dash__float-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.dash__float-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #7a7085;
  padding: 5px 0;
  border-bottom: 1px solid #f0ecf8;
}
.dash__float-row:last-of-type { border-bottom: none; }
.dash__price { font-weight: 700; color: var(--text); white-space: nowrap; }
.dash__float-total {
  margin-top: 8px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}
.dash__float-total strong { font-weight: 800; }

/* AI card */
.dash__float--ai { display: flex; align-items: center; gap: 10px; }
.dash__ai-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dash__ai-label { font-size: 12px; font-weight: 700; color: var(--text); }
.dash__ai-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #059669;
  margin-top: 2px;
  font-weight: 500;
}
.dash__pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #059669;
  flex-shrink: 0;
  animation: blink-dot 2s ease-in-out infinite;
}

/* Booking card */
.dash__float--booking { display: flex; align-items: center; gap: 10px; }
.dash__booking-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dash__booking-label { font-size: 12px; font-weight: 700; color: var(--text); }
.dash__booking-sub { font-size: 11px; color: #7a7085; margin-top: 1px; }

/* ===== WHO GRID ===== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.who-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
}
.who-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.who-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.who-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.who-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ===== FORMAT GRID ===== */
.format-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.format-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  transition: all var(--transition);
}
.format-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.format-card__num {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.format-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
}
.format-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.format-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
}
.format-note p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== INCLUDED GRID ===== */
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.included-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--transition);
}
.included-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.included-item__check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.included-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}
.included-item span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ===== EXAMPLES GRID ===== */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.example-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.example-card:hover {
  box-shadow: var(--shadow-md);
}

.example-card__visual {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.example-card__visual--beauty  { background: linear-gradient(135deg, #fce7f3 0%, #ede9fe 100%); }
.example-card__visual--auto    { background: linear-gradient(135deg, #dbeafe 0%, #ede9fe 100%); }
.example-card__visual--cafe    { background: linear-gradient(135deg, #fef9c3 0%, #fce7f3 100%); }
.example-card__visual--repair  { background: linear-gradient(135deg, #dcfce7 0%, #dbeafe 100%); }
.example-card__visual--school  { background: linear-gradient(135deg, #ede9fe 0%, #dbeafe 100%); }
.example-card__visual--specialist { background: linear-gradient(135deg, #fef3c7 0%, #ede9fe 100%); }

/* Mini site preview inside cards */
.example-card__preview {
  width: 120px;
  background: rgba(255,255,255,.8);
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.preview-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(109,40,217,.15);
  margin-bottom: 6px;
}
.preview-line--title { background: rgba(109,40,217,.3); height: 10px; }
.preview-line--short { width: 60%; }
.preview-btn {
  margin-top: 10px;
  height: 20px;
  border-radius: 10px;
  background: var(--accent);
  opacity: .7;
  width: 70%;
}

.example-card__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.example-card__body h3 { font-size: 17px; }
.example-card__body p { font-size: 14px; color: var(--text-secondary); }
.example-card__actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }

/* ── Browser mockup preview ── */
.example-card--live .example-card__visual { background: #F5F3FF; padding: 12px 12px 0; }
.example-browser-mockup {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(109,40,217,.12);
  display: flex;
  flex-direction: column;
}
.example-browser-bar {
  background: #F0EDF8;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.browser-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(109,40,217,.2);
}
.browser-dot:nth-child(1) { background: #fc635d; }
.browser-dot:nth-child(2) { background: #fdbc40; }
.browser-dot:nth-child(3) { background: #35cd4b; }
.browser-url {
  margin-left: 8px;
  font-size: 10px;
  color: #888;
  background: rgba(255,255,255,.7);
  padding: 2px 10px;
  border-radius: 4px;
  flex: 1;
  text-align: center;
}
.example-browser-content { flex: 1; overflow: hidden; }
.beauty-preview-hero {
  background: linear-gradient(160deg, #FFF8F3 0%, #F7EDE6 100%);
  padding: 10px 12px 8px;
}
.beauty-preview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.beauty-preview-logo { font-size: 9px; font-weight: 600; color: #261B17; letter-spacing: .01em; }
.beauty-preview-logo em { font-style: italic; color: #C98F76; }
.beauty-preview-nav-link { display: inline-block; width: 20px; height: 5px; background: rgba(180,100,70,.2); border-radius: 3px; margin-left: 4px; }
.beauty-preview-title { font-size: 9px; line-height: 1.4; color: #261B17; margin-bottom: 6px; font-weight: 500; }
.beauty-preview-title em { font-style: italic; color: #C98F76; }
.beauty-preview-btns { display: flex; gap: 5px; }
.beauty-preview-btn { padding: 3px 8px; border-radius: 99px; font-size: 8px; font-weight: 600; }
.beauty-preview-btn--accent { background: #C98F76; color: #fff; }
.beauty-preview-btn--outline { border: 1px solid rgba(185,120,90,.4); color: #C98F76; }
.beauty-preview-cards { display: flex; gap: 4px; padding: 8px; background: #FAF1EA; }
.beauty-preview-card {
  flex: 1; background: rgba(255,255,255,.8);
  border: 1px solid rgba(185,120,90,.18);
  border-radius: 6px; padding: 5px 6px;
  font-size: 8px; font-weight: 600; color: #261B17; line-height: 1.5;
}
.beauty-preview-card small { font-weight: 400; color: #C98F76; font-size: 7px; }

/* ── Beauty luxury dark mockup ── */
.example-card--live-beauty .example-card__visual { background: #1A0F0A; padding: 12px 12px 0; height: 210px; }
.beauty-luxury-mockup {
  width: 100%; height: 100%;
  background: #070504;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.6), 0 0 0 1px rgba(242,199,184,.08);
  display: flex; flex-direction: column;
}
.beauty-luxury-bar {
  background: #120908;
  padding: 7px 10px;
  display: flex; align-items: center; gap: 5px; flex-shrink: 0;
  border-bottom: 1px solid rgba(242,199,184,.08);
}
.beauty-luxury-url {
  margin-left: 8px; font-size: 10px; color: rgba(242,199,184,.5);
  background: rgba(242,199,184,.06); padding: 2px 10px;
  border-radius: 4px; flex: 1; text-align: center;
}
.beauty-luxury-content { flex: 1; overflow: hidden; display: flex; flex-direction: column; }
.blm-hero {
  background: #070504;
  padding: 10px 12px 8px;
  flex: 1;
  position: relative;
  overflow: hidden;
}
.blm-hero::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(216,23,47,.18) 0%, transparent 65%),
    radial-gradient(ellipse at 70% 90%, rgba(242,199,184,.08) 0%, transparent 55%);
  pointer-events: none;
}
.blm-nav {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 5px;
}
.blm-logo { font-size: 9px; font-weight: 700; color: #FFF8F4; letter-spacing: .04em; }
.blm-logo em { font-style: italic; color: #F2C7B8; font-weight: 400; }
.blm-nav-link { display: inline-block; width: 16px; height: 4px; background: rgba(242,199,184,.18); border-radius: 2px; margin-left: 4px; }
.blm-eyebrow { font-size: 6px; letter-spacing: .14em; color: rgba(242,199,184,.45); text-transform: uppercase; margin-bottom: 5px; }
.blm-title { font-size: 11px; line-height: 1.35; color: #FFF8F4; font-weight: 600; margin-bottom: 7px; }
.blm-title em { font-style: italic; color: #F2C7B8; font-weight: 300; display: block; }
.blm-cta {
  display: inline-block; padding: 3px 10px;
  background: #F2C7B8; color: #261B17;
  border-radius: 99px; font-size: 7px; font-weight: 700; letter-spacing: .04em;
}
.blm-services {
  display: flex; gap: 4px; padding: 7px 10px;
  background: #120908; border-top: 1px solid rgba(242,199,184,.08);
  flex-shrink: 0;
}
.blm-service-card {
  flex: 1; background: rgba(242,199,184,.04);
  border: 1px solid rgba(242,199,184,.1);
  border-radius: 5px; padding: 5px 5px 4px;
  font-size: 7px; font-weight: 600; color: #FFF8F4; line-height: 1.5;
}
.blm-sc-dot { width: 5px; height: 5px; border-radius: 50%; background: #D8172F; margin-bottom: 3px; }
.blm-service-card small { display: block; font-weight: 400; color: #F2C7B8; font-size: 7px; }

/* ── Auto-service card browser preview ── */
.example-card--live-auto .example-card__visual {
  background: #0A0C0F;
  padding: 12px 12px 0;
}
.auto-browser-mockup {
  width: 100%; height: 100%;
  background: #0E1520;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(239,68,68,.18);
  display: flex;
  flex-direction: column;
}
.auto-browser-bar {
  background: #1a2136;
  padding: 7px 10px;
  display: flex; align-items: center; gap: 5px; flex-shrink: 0;
}
.auto-browser-content {
  flex: 1; overflow: hidden;
  background: #0A0C0F;
  position: relative;
}
.auto-browser-content::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg,transparent,transparent 9px,rgba(239,68,68,.055) 9px,rgba(239,68,68,.055) 10px),
    repeating-linear-gradient(90deg,transparent,transparent 9px,rgba(239,68,68,.055) 9px,rgba(239,68,68,.055) 10px);
}
.auto-preview-inner { padding: 8px 10px; position: relative; z-index: 1; }
.auto-preview-logo { font-size: 8px; font-weight: 700; color: #fff; letter-spacing: .06em; margin-bottom: 6px; }
.auto-preview-logo em { color: #EF4444; font-style: normal; }
.auto-preview-headline { font-size: 9px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 3px; }
.auto-preview-sub { font-size: 7px; color: rgba(255,255,255,.42); margin-bottom: 8px; }
.auto-preview-cta {
  display: inline-block; background: #EF4444; color: #fff;
  font-size: 7px; font-weight: 700; padding: 3px 9px;
  border-radius: 4px; margin-bottom: 9px; letter-spacing: .04em;
}
.auto-preview-services { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; }
.auto-preview-svc {
  background: rgba(255,255,255,.06); border: 1px solid rgba(239,68,68,.18);
  border-radius: 4px; padding: 4px 3px; font-size: 6.5px; font-weight: 600;
  color: rgba(255,255,255,.75); text-align: center; line-height: 1.4;
}

/* ── Cafe card browser preview ── */
.example-card--live-cafe .example-card__visual {
  background: #FFF3E4;
  padding: 12px 12px 0;
}
.cafe-browser-mockup {
  width: 100%; height: 100%;
  background: #FFF7ED;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(249,115,22,.13);
  display: flex; flex-direction: column;
}
.cafe-browser-bar {
  background: #FEE9CC;
  padding: 7px 10px;
  display: flex; align-items: center; gap: 5px; flex-shrink: 0;
}
.cafe-browser-content {
  flex: 1; overflow: hidden;
  background: linear-gradient(160deg, #FFF7ED, #FFF3E4);
}
.cafe-preview-inner { padding: 8px 10px; }
.cafe-preview-logo { font-size: 8px; font-weight: 700; color: #2A1608; margin-bottom: 6px; }
.cafe-preview-logo em { color: #F97316; font-style: normal; }
.cafe-preview-headline { font-size: 9px; font-weight: 700; color: #2A1608; line-height: 1.3; margin-bottom: 3px; }
.cafe-preview-sub { font-size: 7px; color: rgba(42,22,8,.48); margin-bottom: 8px; }
.cafe-preview-cta {
  display: inline-block; background: #F97316; color: #fff;
  font-size: 7px; font-weight: 700; padding: 3px 9px;
  border-radius: 4px; margin-bottom: 9px;
}
.cafe-preview-dishes { display: flex; gap: 4px; }
.cafe-preview-dish {
  flex: 1; background: rgba(255,255,255,.85); border: 1px solid rgba(249,115,22,.18);
  border-radius: 5px; padding: 5px 4px; font-size: 7px; font-weight: 600;
  color: #2A1608; text-align: center;
}
.cafe-preview-dish small { display: block; color: #F97316; font-weight: 400; font-size: 6px; margin-top: 2px; }

/* ── Styled placeholder mockups (coming-soon cards) ── */
.mini-mockup {
  background: rgba(255,255,255,.82);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  width: 148px;
}
.mini-mockup-bar {
  height: 15px; display: flex; align-items: center; gap: 4px; padding: 0 8px;
}
.mini-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.mini-dot:nth-child(1) { background: #fc635d; }
.mini-dot:nth-child(2) { background: #fdbc40; }
.mini-dot:nth-child(3) { background: #35cd4b; }
.mini-url { flex: 1; height: 7px; border-radius: 4px; }
.mini-mockup-body { padding: 9px 8px; }
.mini-logo { height: 7px; width: 56px; border-radius: 3px; margin-bottom: 7px; }
.mini-h1 { height: 8px; border-radius: 3px; margin-bottom: 4px; }
.mini-h2 { height: 6px; border-radius: 3px; width: 72%; margin-bottom: 9px; }
.mini-cards { display: flex; gap: 3px; margin-bottom: 8px; }
.mini-card { flex: 1; height: 22px; border-radius: 4px; }
.mini-btn { height: 10px; width: 58%; border-radius: 5px; }

/* ── School (edtech) browser mockup ── */
.example-card--live-school .example-card__visual { background: #EEF4FF; padding: 12px 12px 0; }
.school-browser-mockup { background: #F7FAFF; border-radius: 8px 8px 0 0; overflow: hidden; box-shadow: 0 4px 14px rgba(37,99,235,.12); display: flex; flex-direction: column; }
.school-browser-bar { background: #DBEAFE; height: 22px; display: flex; align-items: center; gap: 5px; padding: 0 10px; flex-shrink: 0; }
.school-browser-url { flex: 1; background: rgba(37,99,235,.14); height: 8px; border-radius: 4px; font-size: 7px; color: #1D4ED8; display: flex; align-items: center; padding: 0 5px; font-family: monospace; line-height: 1; }
.school-browser-content { background: #F7FAFF; flex: 1; }
.school-preview-inner { padding: 9px 10px 0; }
.school-preview-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 9px; }
.school-preview-logo { font-size: 9px; font-weight: 800; color: #0F172A; letter-spacing: -.01em; }
.school-preview-logo em { font-style: normal; color: #2563EB; }
.school-preview-navlinks { display: flex; gap: 4px; }
.school-preview-navlinks span { width: 16px; height: 4px; border-radius: 2px; background: rgba(37,99,235,.18); }
.school-preview-dash { background: rgba(255,255,255,.9); border: 1px solid rgba(37,99,235,.12); border-radius: 8px; padding: 7px 9px; margin-bottom: 7px; }
.school-preview-lvl { display: inline-block; background: #2563EB; color: #fff; font-size: 8px; font-weight: 800; padding: 2px 6px; border-radius: 4px; margin-bottom: 5px; }
.school-preview-skills { display: flex; flex-direction: column; gap: 4px; margin-bottom: 5px; }
.sp-skill { display: flex; align-items: center; gap: 5px; }
.sp-skill > span { font-size: 7px; color: #374151; font-weight: 600; width: 46px; flex-shrink: 0; }
.sp-bar { flex: 1; height: 4px; background: #DBEAFE; border-radius: 2px; overflow: hidden; }
.sp-bar > div { height: 100%; border-radius: 2px; }
.school-preview-next { font-size: 7px; font-weight: 700; color: #2563EB; }
.school-preview-levels { display: flex; gap: 4px; margin-bottom: 7px; }
.sp-lvl-chip { font-size: 7px; font-weight: 800; padding: 3px 6px; border-radius: 4px; background: #DBEAFE; color: #1D4ED8; }
.sp-lvl-chip.active { background: #2563EB; color: #fff; }
.school-preview-cta { display: inline-block; background: #2563EB; color: #fff; font-size: 7px; font-weight: 700; padding: 4px 9px; border-radius: 4px; }

/* ── Repair browser mockup ── */
.example-card--live-repair .example-card__visual { background: #F2EFE9; padding: 12px 12px 0; }
.repair-browser-mockup {
  background: #F8F6F3; border-radius: 8px 8px 0 0;
  overflow: hidden; box-shadow: 0 4px 14px rgba(80,50,20,.12);
  display: flex; flex-direction: column;
}
.repair-browser-bar {
  background: #EDE8E0; height: 22px; display: flex; align-items: center; gap: 5px; padding: 0 10px; flex-shrink: 0;
}
.repair-browser-url {
  flex: 1; background: rgba(100,80,50,.14); height: 8px; border-radius: 4px;
  font-size: 7px; color: #6B5235; display: flex; align-items: center; padding: 0 5px;
  font-family: monospace; line-height: 1;
}
.repair-browser-content { background: #F8F6F3; padding: 0; flex: 1; }
.repair-preview-inner { padding: 10px 10px 0; }
.repair-preview-nav {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px;
}
.repair-preview-logo { font-size: 9px; font-weight: 800; color: #1A1614; letter-spacing: -.01em; }
.repair-preview-logo em { font-style: normal; color: #7C5C3E; }
.repair-preview-navlinks { display: flex; gap: 4px; }
.repair-preview-navlinks span { width: 16px; height: 4px; border-radius: 2px; background: rgba(100,80,50,.18); }
.repair-preview-hero { margin-bottom: 9px; }
.repair-preview-headline { font-size: 10px; font-weight: 800; color: #1A1614; line-height: 1.25; margin-bottom: 4px; letter-spacing: -.01em; }
.repair-preview-sub { font-size: 7px; color: #9A8878; margin-bottom: 6px; }
.repair-preview-cta {
  display: inline-block; background: #7C5C3E; color: #fff;
  font-size: 7px; font-weight: 700; padding: 4px 8px; border-radius: 4px;
}
.repair-preview-steps { display: flex; gap: 4px; }
.repair-preview-step {
  flex: 1; background: rgba(124,92,62,.09); border-radius: 5px; padding: 5px 4px;
  font-size: 7px; font-weight: 600; color: #4D3D2E; text-align: center; line-height: 1.4;
}
.repair-preview-step span { display: block; color: #7C5C3E; font-size: 8px; font-weight: 800; }

/* ===== SERVICES / PROJECT CONFIGURATOR ===== */
#services { scroll-margin-top: 96px; }

.services-header {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.services-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 7px 14px;
  border: 1px solid rgba(124,58,237,.16);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.72);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.services-block-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 18px;
}
.services-block-heading--addons { margin-top: 72px; }
.packages-label {
  margin-bottom: 7px;
  color: var(--text);
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}
.packages-label--addons { margin-top: 0; }
.services-block-heading p {
  max-width: 760px;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 24px;
  align-items: stretch;
}

.package-card {
  position: relative;
  min-width: 0;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78)),
    radial-gradient(circle at 84% 10%, rgba(168,85,247,.10), transparent 35%);
  border: 1px solid rgba(124,58,237,.13);
  border-radius: 24px;
  box-shadow: 0 18px 52px rgba(60,40,120,.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(109,40,217,.36);
  box-shadow: 0 24px 70px rgba(60,40,120,.13);
}
.package-card--popular {
  border-color: rgba(109,40,217,.30);
  box-shadow: 0 22px 68px rgba(109,40,217,.13);
}
.package-card--selected {
  border: 2px solid var(--accent);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.86)),
    radial-gradient(circle at 80% 0%, rgba(168,85,247,.16), transparent 36%);
  box-shadow: 0 26px 82px rgba(109,40,217,.18);
}
.package-card__badge,
.package-card__selected-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  padding: 6px 11px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.package-card__badge {
  background: rgba(109,40,217,.10);
  color: var(--accent);
}
.package-card__selected-badge {
  display: none;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 28px rgba(109,40,217,.24);
}
.package-card--selected .package-card__badge { display: none; }
.package-card--selected .package-card__selected-badge { display: inline-flex; }
.package-card__name {
  max-width: calc(100% - 100px);
  margin-bottom: 8px;
  font-family: 'Unbounded', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.05;
}
.package-card__position {
  min-height: 44px;
  margin-bottom: 22px;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.5;
}
.package-card__price {
  margin-bottom: 16px;
  color: var(--accent);
  font-family: 'Unbounded', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.0;
}
.package-card__list {
  margin-bottom: 14px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 7px;
}
.package-card__list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.4;
}
.package-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 25%, transparent 26%),
    linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 4px 12px rgba(109,40,217,.18);
}
.package-card__status {
  display: none;
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}
.package-card--selected .package-card__status { display: block; }
.package-card .btn {
  min-height: 48px;
  margin-top: auto;
  border-radius: var(--radius-pill);
}
.package-card--selected .btn {
  background: #17111F;
  box-shadow: none;
}

/* ── Package term (срок) ── */
.package-card__term {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(109,40,217,.07);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
}
.package-card__term svg { flex-shrink: 0; opacity: .6; }

/* ── Package extras accordion ── */
.package-card__extras {
  margin-bottom: 14px;
}
.package-card__extras-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(109,40,217,.3);
  transition: color var(--transition);
}
.package-card__extras-toggle:hover { color: var(--accent); }
.package-card__extras-body {
  display: none;
  margin-top: 8px;
  padding: 10px 12px;
  background: rgba(109,40,217,.04);
  border-radius: 10px;
  border: 1px solid rgba(109,40,217,.10);
}
.package-card__extras-body.is-open { display: block; }
.package-card__extras-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.package-card__extras-body li {
  position: relative;
  padding-left: 14px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.45;
}
.package-card__extras-body li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(109,40,217,.4);
  font-size: 10px;
  top: 1px;
}

/* ── Pro Max card accent ── */
.package-card--promax {
  border-color: rgba(109,40,217,.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78)),
    radial-gradient(circle at 20% 90%, rgba(168,85,247,.12), transparent 40%);
}

/* ── Service levels inside detail panel ── */
.svc-levels {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.svc-level {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(109,40,217,.05);
  border: 1px solid rgba(109,40,217,.10);
}
.svc-level__name {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 12.5px;
  font-weight: 900;
  line-height: 1.3;
}
.svc-levels__note {
  font-size: 12.5px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.5;
}

.services-showcase,
.services-builder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 32px;
  align-items: start;
  min-width: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  min-width: 0;
}

.service-card {
  min-height: 160px;
  min-width: 0;
  padding: 13px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 7px;
  overflow: hidden;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(124,58,237,0.14);
  border-radius: 24px;
  box-shadow: 0 16px 46px rgba(60,40,120,.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(109,40,217,.34);
  box-shadow: 0 20px 58px rgba(60,40,120,.13);
}
.service-card.is-active,
.service-card.is-added {
  border-color: rgba(109,40,217,.50);
  background: rgba(255,255,255,0.92);
}
.service-card.is-added {
  box-shadow: 0 18px 58px rgba(109,40,217,.15);
}
.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}
.service-card__badge,
.service-card__module {
  min-width: 0;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.service-card__badge {
  max-width: 100%;
  padding: 5px 9px;
  overflow: hidden;
  color: var(--accent);
  background: rgba(109,40,217,.08);
  font-size: 11px;
  font-weight: 800;
  text-overflow: ellipsis;
}
.service-card__module {
  color: rgba(23,17,31,.42);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.service-card__info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card__info h4 {
  margin-bottom: 0;
  display: -webkit-box;
  overflow: hidden;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.service-card__info p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.service-card__price {
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.service-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-width: 0;
}
.service-card .btn--add,
.service-detail-card .btn--add {
  min-width: 112px;
  min-height: 32px;
  padding: 7px 11px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(109,40,217,.14), rgba(168,85,247,.16));
  color: var(--accent);
  font-size: 12.5px;
  font-weight: 800;
}
.service-card .btn--add:hover,
.service-detail-card .btn--add:hover {
  background: var(--accent);
  color: #fff;
}
.service-card .btn--add.btn--added,
.service-detail-card .btn--add.btn--added {
  background: rgba(23,17,31,.90);
  color: #fff;
}
.service-card__more {
  min-height: 31px;
  padding: 7px 10px;
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: var(--radius-pill);
  background: rgba(124,58,237,0.06);
  color: var(--accent);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}
.service-card__more:hover,
.service-card__more.is-active {
  border-color: rgba(109,40,217,.30);
  background: rgba(124,58,237,0.11);
  color: #5b21b6;
}
.service-card__more:hover { transform: translateY(-1px); }

.service-detail-card {
  position: sticky;
  top: 110px;
  width: 100%;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  padding: 28px;
  border: 1px solid rgba(124,58,237,0.16);
  border-radius: 32px;
  background: rgba(255,255,255,0.86);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 80px rgba(60,40,120,0.12);
  scrollbar-width: thin;
  scrollbar-color: rgba(109,40,217,.32) transparent;
}
.service-detail-card__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--text-secondary);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(124,58,237,.12);
  font-size: 22px;
  line-height: 1;
  transition: color var(--transition), background var(--transition), transform var(--transition), border-color var(--transition);
}
.service-detail-card__close:hover {
  color: var(--accent);
  background: rgba(124,58,237,.08);
  border-color: rgba(124,58,237,.18);
  transform: rotate(90deg);
}
.service-detail-card__eyebrow {
  margin-bottom: 14px;
  padding-right: 42px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.service-detail-card h3 {
  max-width: calc(100% - 20px);
  margin-bottom: 14px;
  color: var(--text);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.08;
}
.service-detail-card__text {
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.55;
}
.service-detail-card__price {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(109,40,217,.16);
  border-radius: var(--radius-pill);
  background: rgba(109,40,217,.07);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}
.service-detail-card__body {
  display: flex;
  flex-direction: column;
}
.service-detail-card__group,
.service-detail-row {
  padding: 14px 0;
  border-top: 1px solid rgba(124,58,237,0.10);
}
.service-detail-card__group h4 {
  margin-bottom: 7px;
  color: rgba(109,40,217,.82);
  font-size: 11.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.service-detail-card__group p,
.service-detail-card__group li,
.service-detail-card__note {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.55;
}
.service-detail-card__group ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-detail-card__group li {
  position: relative;
  padding-left: 16px;
}
.service-detail-card__group li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-2);
}
.service-detail-card__note {
  padding: 0;
  border-radius: 0;
  background: transparent;
}
.service-detail-card__footer {
  padding-top: 18px;
  border-top: 1px solid rgba(124,58,237,0.10);
}
.service-detail-card__footer .btn {
  min-height: 48px;
  border-radius: var(--radius-pill);
}
.service-detail-card__footer .btn--add {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(109,40,217,.22);
}
.service-detail-card__footer .btn--add:hover {
  background: #5b21b6;
  color: #fff;
}
.service-detail-card__footer .btn--add.btn--added {
  background: #17111F;
  color: #fff;
  box-shadow: none;
}
.service-detail-card__footer p {
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 12.5px;
  line-height: 1.45;
  text-align: center;
}

/* ===== CART ===== */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.cart-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 88px;
}
.cart-panel__header {
  margin-bottom: 24px;
}
.cart-panel__header h3 { font-size: 18px; }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 32px 16px;
}
.cart-empty p {
  font-size: 14px;
  color: var(--text-secondary);
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 80px;
}

.cart-group-label {
  margin: 14px 0 4px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cart-group-label:first-child { margin-top: 0; }

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item__tag {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 2px;
}
.cart-item__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cart-item__price {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.cart-item__remove {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.cart-item__remove:hover {
  background: #fee2e2;
  color: #dc2626;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 8px;
  border-top: 2px solid var(--border);
  margin-top: 8px;
}
.cart-total__label { font-weight: 600; font-size: 15px; }
.cart-total__price {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.cart-note {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 16px;
  line-height: 1.6;
}

/* Cart form panel */
.cart-form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.cart-form-panel > h3 {
  font-size: 18px;
  margin-bottom: 24px;
}

/* ===== FORMS ===== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: var(--bg-card);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b8b0c8;
}
.form-group textarea { resize: vertical; min-height: 80px; }

/* select: кастомная стрелка, чтобы совпадал с инпутами */
.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236D28D9' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

/* Заметка под формой заявки */
.cart-form__note {
  margin-top: 12px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-pref {
  display: flex;
  gap: 20px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  cursor: pointer;
}
.radio-label input { accent-color: var(--accent); }

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

/* Success state */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 12px;
}
.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.form-success h3 { font-size: 20px; }
.form-success p { font-size: 15px; color: var(--text-secondary); max-width: 300px; }

/* ===== PROCESS ===== */
.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
}
.process-step:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.process-step__num {
  font-family: 'Unbounded', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  opacity: .25;
  margin-bottom: 14px;
  line-height: 1;
}
.process-step__body h3 { font-size: 16px; margin-bottom: 8px; }
.process-step__body p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
}
.review-card__stars {
  font-size: 16px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-card__text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.review-card__name { font-size: 14px; font-weight: 700; }
.review-card__role { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: #c4b5fd; }
.faq-item--open { border-color: var(--accent); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--accent); }
.faq-arrow {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-secondary);
}
.faq-item--open .faq-arrow { transform: rotate(180deg); color: var(--accent); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item--open .faq-a { max-height: 200px; }

.faq-a__inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== CONTACTS ===== */
.contacts-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contacts-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.contacts-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.contacts-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contacts-item__label { font-size: 12px; color: var(--text-secondary); margin-bottom: 2px; }
.contacts-item__value { font-size: 15px; font-weight: 600; }

.contacts-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #4c1d95 0%, #6D28D9 50%, #7c3aed 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: .3;
}
.cta-section__blob--1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168,85,247,.6) 0%, transparent 70%);
  top: -80px; left: -80px;
  filter: blur(60px);
}
.cta-section__blob--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(196,181,253,.5) 0%, transparent 70%);
  bottom: -60px; right: -60px;
  filter: blur(50px);
}
.cta-section__inner {
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  color: #fff;
  margin-bottom: 16px;
  font-size: clamp(24px, 4vw, 38px);
}
.cta-section p {
  color: rgba(255,255,255,.75);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.footer__logo .logo__mark { background: rgba(255,255,255,.15); }
.footer__logo .logo__text { color: #fff; }
.footer__logo .logo__text em { color: rgba(255,255,255,.5); }

.footer__nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: auto;
}
.footer__nav a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  transition: color var(--transition);
}
.footer__nav a:hover { color: rgba(255,255,255,.9); }

.footer__copy {
  width: 100%;
  font-size: 13px;
  color: rgba(255,255,255,.3);
  margin-top: 8px;
}

.footer__legal {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 4px;
}
.footer__legal a {
  font-size: 12px;
  color: rgba(255,255,255,.28);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  transition: color var(--transition);
  text-decoration: none;
}
.footer__legal a:hover { color: rgba(255,255,255,.7); }

.examples__ip-note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
}
.examples__ip-note a { color: var(--accent); }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--text);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
  z-index: 999;
  white-space: nowrap;
}
.toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast--info { background: var(--accent); }

/* ===== RESPONSIVE =====
   Breakpoints:
   - mobile:  up to 767px
   - tablet:  768px – 1199px
   - desktop: 1200px+ (base styles)
============================= */

/* ---- TABLET: 768px – 1199px ---- */
@media (min-width: 768px) and (max-width: 1199px) {
  :root { --max-w: 960px; }

  .section { padding: 72px 0; }
  .section-header { margin-bottom: 44px; }

  /* Hero tablet: обе колонки, dashboard уменьшен */
  .hero { padding: 110px 0 72px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
  .hero__dashboard { max-width: 420px; }
  .dash__cards { grid-template-columns: 1fr; gap: 8px; }
  .dash__cards-right { flex-direction: row; gap: 8px; }
  .dash__cards-right .dash__float { flex: 1; }

  /* Grids */
  .who-grid       { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .format-grid    { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .included-grid  { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .examples-grid  { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .packages-grid  { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .package-card { padding: 26px; }
  .services-showcase,
  .services-builder { grid-template-columns: 1fr; gap: 22px; }
  .services-grid  { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .service-detail-card {
    position: relative;
    top: auto;
    max-height: none;
    overflow: visible;
  }
  .process-list   { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .reviews-grid   { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .contacts-layout { grid-template-columns: 1fr; gap: 28px; }

  /* Cart: стекируем, без sticky */
  .cart-layout  { grid-template-columns: 1fr; gap: 24px; }
  .cart-panel   { position: static; }

  /* Burger hidden on tablet, nav visible */
  .burger { display: none; }
  .nav { display: flex; }
  .header__actions .btn--primary { display: inline-flex; }
}

/* ---- MOBILE: up to 767px ---- */
@media (max-width: 767px) {
  :root {
    --radius-lg: 20px;
    --radius-md: 16px;
  }

  /* Base */
  .section { padding: 52px 0; }
  .section-header { margin-bottom: 32px; }
  .section-sub { font-size: 15px; }
  .container { padding: 0 16px; }

  /* Header */
  .header__inner { gap: 12px; height: 60px; }
  .header__actions .btn--primary { display: none; }
  .burger { display: flex; }

  /* Mobile nav overlay */
  .nav {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(247,244,255,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(109,40,217,.1);
  }
  .nav--open { display: flex; }
  .nav__link {
    text-align: center;
    padding: 14px;
    font-size: 16px;
    border-radius: var(--radius-sm);
  }
  /* Кнопка в мобильном меню */
  .nav::after {
    content: '';
    display: block;
    height: 1px;
    background: var(--border);
    margin: 8px 0;
  }

  /* ─── Hero mobile: 1 колонка, текст → визуал ─── */
  .hero { padding: 80px 0 44px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 0; }

  /* Typography */
  .hero__title {
    font-size: clamp(30px, 8.5vw, 40px);
    line-height: 1.04;
    margin-bottom: 14px;
  }
  .hero__badge { font-size: 12px; padding: 5px 14px; margin-bottom: 16px; }
  .hero__sub   { font-size: 15px; line-height: 1.6; margin-bottom: 24px; }

  /* Buttons: stacked, full-width, big touch targets */
  .hero__btns { flex-direction: column; gap: 10px; margin-bottom: 18px; }
  .hero__btns .btn {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    font-size: 16px; /* prevents iOS zoom */
  }

  /* Trust row */
  .hero__trust      { flex-direction: column; gap: 5px; align-items: flex-start; }
  .hero__trust-item { font-size: 12px; }

  /* ─── Visual: показываем ниже текста ─── */
  .hero__visual {
    display: block !important; /* override desktop hidden-state if GSAP set it */
    margin-top: 32px;
    width: 100%;
    overflow: hidden;
    /* No 3D perspective on mobile — no mouse tilt */
    perspective: none;
  }

  /* Dashboard fills mobile width */
  .hero__dashboard {
    max-width: 100%;
    width: 100%;
    will-change: auto; /* release GPU layer on mobile */
  }
  /* Hide the three floating bottom cards — reduces height & complexity */
  .dash__cards { display: none; }
  /* Slightly tighter browser body on mobile */
  .dash__browser-body { height: 136px; }
  /* Compact progress labels */
  .dash__prog-label { font-size: 9px; }
  /* Disable backdrop-filter in glass cards — heavy on weak GPUs */
  .hero__glow { display: none; }

  /* Grids — одна колонка */
  .who-grid       { grid-template-columns: 1fr; gap: 12px; }
  .format-grid    { grid-template-columns: 1fr; gap: 10px; }
  .included-grid  { grid-template-columns: 1fr; gap: 10px; }
  .examples-grid  { grid-template-columns: 1fr; gap: 16px; }
  .process-list   { grid-template-columns: 1fr; gap: 12px; }
  .services-showcase,
  .services-builder { grid-template-columns: 1fr; gap: 16px; }
  .services-grid  { grid-template-columns: 1fr; gap: 12px; }
  .reviews-grid   { grid-template-columns: 1fr; gap: 16px; }
  .contacts-layout { grid-template-columns: 1fr; gap: 20px; }

  /* Packages */
  .services-kicker { font-size: 10px; }
  .services-block-heading { margin-bottom: 14px; }
  .services-block-heading--addons { margin-top: 48px; }
  .services-block-heading p { font-size: 13.5px; }
  .packages-label { font-size: 14px; }

  .packages-grid { grid-template-columns: 1fr; gap: 16px; }
  .package-card {
    min-height: 0;
    padding: 24px;
    border-radius: 24px;
  }
  .package-card__badge,
  .package-card__selected-badge {
    top: 16px;
    right: 16px;
    max-width: calc(100% - 32px);
  }
  .package-card__name {
    max-width: calc(100% - 110px);
    font-size: 20px;
  }
  .package-card__position {
    min-height: 0;
    font-size: 14px;
  }
  .package-card__price { font-size: 24px; }

  /* Cart */
  .cart-layout  { grid-template-columns: 1fr; gap: 20px; }
  .cart-panel   { position: static; padding: 24px; }
  .cart-form-panel { padding: 24px; }

  /* Service module cards */
  .packages-label--addons { margin-top: 0; }
  .service-card {
    min-height: 154px;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
  }
  .service-card__top { gap: 8px; }
  .service-card__badge { padding: 6px 9px; }
  .service-card__info h4 { font-size: 15px; }
  .service-card__info p {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .service-card__actions { gap: 8px; }
  .service-card .btn--add {
    min-width: 112px;
    padding: 9px 12px;
  }
  .service-card__more { padding: 8px 11px; }
  .service-detail-card {
    position: relative;
    top: auto;
    min-height: 0;
    padding: 20px;
    border-radius: 24px;
    scroll-margin-top: 76px;
  }
  .service-detail-card h3 { font-size: 21px; }
  .service-detail-card__text { font-size: 14px; }
  .service-detail-card__group p,
  .service-detail-card__group li,
  .service-detail-card__note { font-size: 13.5px; }
  .btn--add { flex: 0; }

  /* Forms — один столбец, крупные поля */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px; /* предотвращаем zoom на iOS */
    padding: 13px 14px;
  }
  .form-actions { flex-direction: column; gap: 10px; }
  .form-actions .btn { width: 100%; min-height: 50px; justify-content: center; }
  .contact-pref { flex-wrap: wrap; gap: 8px; }
  .radio-label { font-size: 15px; }

  /* CTA section */
  .cta-section { padding: 60px 0; }
  .cta-section__btns { flex-direction: column; align-items: center; gap: 10px; }
  .cta-section__btns .btn { width: 100%; max-width: 300px; min-height: 50px; }

  /* Footer */
  .footer { padding: 32px 0; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__nav { margin-left: 0; }
  .footer__copy { margin-top: 4px; }

  /* FAQ */
  .faq-q { padding: 16px 18px; font-size: 14px; }
  .faq-a__inner { padding: 0 18px 16px; font-size: 14px; }

  /* Contacts */
  .contacts-form-wrap { padding: 24px; }
  .contacts-item { padding: 16px; }

  /* Who / Format cards */
  .who-card { padding: 20px; }
  .format-card { padding: 20px 16px; }
  .format-card__num { font-size: 10px; }

  /* Review card */
  .review-card { padding: 20px; }
  .review-card__text { font-size: 14px; }

  /* Process step */
  .process-step { padding: 20px; }
  .process-step__num { font-size: 24px; }

  /* Example card */
  .example-card__visual { height: 140px; }
  .example-card__body { padding: 16px 18px 20px; }

  /* Toast — выше на мобиле, чтобы не перекрывало кнопки */
  .toast { bottom: 20px; font-size: 13px; padding: 10px 18px; }

  /* Hover на touch отключён через JS (isMobile check в initCardHovers) */
}

/* ==========================================================
   LARI — mini AI assistant (desktop ≥1024px)
   Pure CSS robot. transform-only motion. No canvas, no images.
   ========================================================== */
.lari {
  position: fixed;
  top: 0; left: 0;
  width: 46px;
  height: 58px;
  z-index: 900;            /* above content, below panel(960) & toast(999) */
  pointer-events: none;    /* robot halo never blocks page clicks */
  will-change: transform;
  opacity: 1;
  transition: opacity 0.3s ease;   /* плавно тускнеет, когда нет места */
  display: none;           /* enabled by JS only on desktop */
}
.lari.is-active { display: block; }

/* Only the actual robot + bubble are clickable */
.lari__bot,
.lari__bubble { pointer-events: auto; cursor: pointer; }

/* ── Robot body (button reset + relative box) ── */
.lari__bot {
  position: absolute;
  inset: 0;
  width: 46px; height: 58px;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  transition: opacity 0.3s ease;   /* плавное затемнение тела над контентом */
}
.lari.is-active .lari__bot { animation: lariBob 3.2s ease-in-out infinite; }
@keyframes lariBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Antenna */
.lari__antenna {
  position: absolute;
  top: 0; left: 50%;
  width: 2px; height: 7px;
  transform: translateX(-50%);
  background: #c4b5fd;
  border-radius: 2px;
}
.lari__antenna::after {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  width: 6px; height: 6px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #a855f7;
  box-shadow: 0 0 7px #a855f7;
}

/* Head + visor */
.lari__head {
  position: absolute;
  top: 6px; left: 50%;
  width: 38px; height: 27px;
  transform: translateX(-50%);
  border-radius: 12px;
  background: linear-gradient(160deg, #ffffff 0%, #ede9fe 100%);
  border: 1.5px solid #d6ccf5;
  box-shadow: inset 0 1px 2px #fff, 0 3px 8px rgba(109,40,217,0.20);
}
.lari__visor {
  position: absolute;
  top: 7px; left: 50%;
  width: 28px; height: 13px;
  transform: translateX(-50%);
  border-radius: 8px;
  background: linear-gradient(160deg, #3b2a63, #241640);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.lari__eye {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #c4b5fd;
  box-shadow: 0 0 6px 1px rgba(168,85,247,0.9);
  animation: lariBlink 4.5s ease-in-out infinite;
}
@keyframes lariBlink {
  0%, 92%, 100% { transform: scaleY(1); }
  95%           { transform: scaleY(0.15); }
}

/* Body + chest light */
.lari__body {
  position: absolute;
  bottom: 4px; left: 50%;
  width: 30px; height: 23px;
  transform: translateX(-50%);
  border-radius: 10px;
  background: linear-gradient(160deg, #ffffff, #ede9fe);
  border: 1.5px solid #d6ccf5;
  box-shadow: inset 0 1px 2px #fff, 0 4px 10px rgba(109,40,217,0.24);
}
.lari__body::after {
  content: '';
  position: absolute;
  top: 7px; left: 50%;
  width: 11px; height: 4px;
  transform: translateX(-50%);
  border-radius: 3px;
  background: linear-gradient(90deg, #6d28d9, #a855f7);
  box-shadow: 0 0 6px rgba(168,85,247,0.6);
}

/* Arms */
.lari__arm {
  position: absolute;
  bottom: 10px;
  width: 5px; height: 13px;
  border-radius: 4px;
  background: linear-gradient(160deg, #fff, #e3dcfa);
  border: 1px solid #d6ccf5;
  transition: transform 0.4s cubic-bezier(.3,.8,.3,1);
}
.lari__arm--l { left: 1px;  transform-origin: top center; }
.lari__arm--r { right: 1px; transform-origin: top center; }
/* Pointing at CTA — right arm raises */
.lari.is-pointing .lari__arm--r { transform: rotate(-52deg); }

/* Contact shadow */
.lari__shadow {
  position: absolute;
  bottom: -6px; left: 50%;
  width: 34px; height: 7px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(109,40,217,0.28), transparent 70%);
  opacity: 0.5;
}

/* Fast-scroll soft reposition */
.lari.is-reposition .lari__bot { opacity: 0.62; transition: opacity 0.2s ease; }

/* ── Speech bubble ── */
.lari__bubble {
  position: absolute;
  bottom: calc(100% + 12px);
  right: -4px;
  width: max-content;
  max-width: 230px;
  min-width: 130px;
  padding: 10px 14px;
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 14px;
  background: rgba(255,255,255,0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px rgba(109,40,217,0.22);
  font: inherit;
  font-size: 13px;
  line-height: 1.4;
  color: #2a1f3d;
  text-align: left;
  opacity: 0;
  transform: translateY(6px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.22s ease, transform 0.22s ease;   /* быстрый отклик */
}
.lari__bubble.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.lari__bubble::after {
  content: '';
  position: absolute;
  bottom: -6px; right: 20px;
  width: 12px; height: 12px;
  background: rgba(255,255,255,0.94);
  border-right: 1px solid rgba(168,85,247,0.25);
  border-bottom: 1px solid rgba(168,85,247,0.25);
  transform: rotate(45deg);
}

/* Bubble flips BELOW the bot near the top of the viewport */
.lari--bubble-below .lari__bubble {
  bottom: auto;
  top: calc(100% + 12px);
  transform-origin: top right;
}
.lari--bubble-below .lari__bubble::after {
  bottom: auto;
  top: -6px;
  border-right: 0;
  border-bottom: 0;
  border-left: 1px solid rgba(168,85,247,0.25);
  border-top: 1px solid rgba(168,85,247,0.25);
}

/* ── Assistant panel ── */
.lari-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 312px;
  max-width: calc(100vw - 48px);
  padding: 16px;
  z-index: 960;            /* above lari(900), below toast(999) */
  border: 1px solid rgba(168,85,247,0.22);
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 18px 50px rgba(60,20,110,0.28);
  pointer-events: auto;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transform-origin: bottom right;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(.2,.7,.3,1);
  display: none;
}
.lari-panel.is-open { display: block; }
.lari-panel.is-anim { opacity: 1; transform: translateY(0) scale(1); }

.lari-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.lari-panel__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: #2a1f3d;
}
.lari-panel__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(160deg, #a855f7, #6d28d9);
}
.lari-panel__close {
  width: 26px; height: 26px;
  border: 0;
  border-radius: 8px;
  background: rgba(109,40,217,0.08);
  color: #6d28d9;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lari-panel__close:hover { background: rgba(109,40,217,0.16); }
.lari-panel__prompt {
  font-size: 12px;
  color: #8b80a8;
  margin-bottom: 10px;
}
.lari-panel__questions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.lari-q {
  font-size: 12px;
  font-weight: 600;
  padding: 7px 11px;
  border: 1px solid rgba(168,85,247,0.22);
  border-radius: 10px;
  background: rgba(245,243,255,0.7);
  color: #4c3a7a;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lari-q:hover,
.lari-q.is-active {
  background: #6d28d9;
  color: #fff;
  border-color: #6d28d9;
}
.lari-panel__answer {
  font-size: 13px;
  line-height: 1.5;
  color: #2a1f3d;
  background: rgba(237,233,254,0.5);
  border-radius: 12px;
  padding: 11px 13px;
  min-height: 64px;
  margin-bottom: 12px;
  transition: opacity 0.15s ease;
}
.lari-panel__cta {
  width: 100%;
  padding: 11px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  box-shadow: 0 6px 18px rgba(109,40,217,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lari-panel__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(109,40,217,0.45);
}

/* Off on tablet/mobile and reduced-motion (defense-in-depth) */
@media (max-width: 1023px) {
  .lari, .lari-panel { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .lari, .lari-panel { display: none !important; }
}

/* ---- prefers-reduced-motion: GSAP анимации отключены в JS ---- */
@media (prefers-reduced-motion: reduce) {
  .hero__badge-dot, .dash__pulse { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ---- Минимизируем тяжёлые blur на слабых устройствах ---- */
@media (max-width: 767px) {
  .hero__blob { filter: blur(40px); }
  .dash__float { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .header { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
}

/* ==========================================================
   QUIZ — «Подберём формат сайта за 30 секунд»
   ========================================================== */
.quiz-card {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}

/* ---- LEFT: вопросы ---- */
.quiz-main { display: flex; flex-direction: column; min-height: 360px; }

.quiz-progress { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.quiz-progress__track {
  flex: 1; height: 8px; border-radius: var(--radius-pill);
  background: var(--accent-soft); overflow: hidden;
}
.quiz-progress__fill {
  height: 100%; width: 25%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transition: width .4s cubic-bezier(.4,0,.2,1);
}
.quiz-progress__label { font-size: 13px; font-weight: 600; color: var(--text-secondary); white-space: nowrap; }

.quiz-steps { position: relative; flex: 1; }
.quiz-step { display: none; }
.quiz-step.is-active { display: block; animation: quizFade .35s ease; }
@keyframes quizFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.quiz-q { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.quiz-hint { font-size: 13px; color: var(--text-secondary); margin-bottom: 14px; }
.quiz-q + .quiz-options { margin-top: 16px; }

.quiz-options { display: flex; flex-wrap: wrap; gap: 10px; }
.quiz-opt {
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--text);
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.quiz-opt:hover { border-color: var(--accent-2); transform: translateY(-1px); }
.quiz-opt.is-selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(109,40,217,.28);
}

.quiz-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 24px; }
.quiz-nav .btn { min-width: 120px; justify-content: center; }
.quiz-nav .btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

/* ---- RIGHT: интро / результат ---- */
.quiz-side {
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, #f5f3ff 0%, #ede9fe 100%);
  border: 1px solid var(--border);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: center;
}
.quiz-side__lari { display: flex; align-items: center; gap: 9px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.quiz-side__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 8px;
  font-size: 13px; font-weight: 800; color: #fff;
  background: linear-gradient(160deg, var(--accent-2), var(--accent));
}
.quiz-side__text { font-size: 14px; line-height: 1.55; color: var(--text-secondary); margin-bottom: 16px; }
.quiz-side__list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.quiz-side__list li { position: relative; padding-left: 24px; font-size: 13.5px; color: var(--text); }
.quiz-side__list li::before {
  content: '✓'; position: absolute; left: 0; top: -1px;
  color: var(--accent); font-weight: 800;
}

/* ---- результат ---- */
.quiz-result { display: flex; flex-direction: column; animation: quizFade .4s ease; }
.quiz-result__tag {
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.quiz-result__pkg { font-family: 'Unbounded', sans-serif; font-size: 24px; font-weight: 800; color: var(--text); line-height: 1.1; }
.quiz-result__price { font-size: 16px; font-weight: 700; color: var(--accent); margin: 6px 0 12px; }
.quiz-result__why { font-size: 14px; line-height: 1.55; color: var(--text-secondary); margin-bottom: 14px; }

.quiz-result__addons { margin-bottom: 16px; }
.quiz-result__addons-label { font-size: 12.5px; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.quiz-result__addons-list { display: flex; flex-wrap: wrap; gap: 7px; }
.quiz-addon-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px; border-radius: var(--radius-pill);
  background: #fff; border: 1px solid var(--border);
  font-size: 12.5px; font-weight: 500; color: var(--text);
}
.quiz-addon-chip span { color: var(--accent); font-weight: 700; }

.quiz-result__btns { display: flex; flex-direction: column; gap: 10px; }
.quiz-restart {
  margin-top: 12px; align-self: center;
  background: none; border: 0; cursor: pointer;
  font-size: 13px; color: var(--text-secondary);
  text-decoration: underline; text-underline-offset: 3px;
}
.quiz-restart:hover { color: var(--accent); }

/* ---- TABLET ---- */
@media (max-width: 1199px) {
  .quiz-card { grid-template-columns: 1fr; }
  .quiz-main { min-height: auto; }
}

/* ---- MOBILE ---- */
@media (max-width: 767px) {
  .quiz-card { padding: 18px; gap: 18px; border-radius: var(--radius-md); }
  .quiz-q { font-size: 18px; }
  .quiz-opt { font-size: 14px; padding: 12px 15px; min-height: 44px; }
  .quiz-options { gap: 8px; }
  .quiz-nav .btn { min-width: 0; flex: 1; min-height: 46px; }
  .quiz-side { padding: 18px; }
  .quiz-result__pkg { font-size: 21px; }
}

/* ==========================================================
   BEFORE / AFTER — «хаос → система» (изолированный вау-блок)
   Финальный вид задаётся здесь; GSAP лишь добавляет from-состояния.
   ========================================================== */
.before-after { overflow: hidden; }   /* страховка от горизонтального скролла внутри секции */

.ba-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
}

.ba-scene {
  display: grid;
  grid-template-columns: 1fr 210px 1fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 36px;
}

/* ---- общие карточки ---- */
.ba-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  background: rgba(255,255,255,0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
}
.ba-before { background: linear-gradient(165deg, #f4f2fb 0%, #eceaf6 100%); }
.ba-card__label {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 7px;
  padding: 5px 12px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 16px;
}
.ba-card__label--before { background: #e6e2f0; color: #6b6480; }
.ba-card__label--after  { background: var(--accent-soft); color: var(--accent); }
.ba-card__label--after::before { content: '✓'; font-weight: 900; }

.ba-card__text { font-size: 14px; line-height: 1.55; color: var(--text-secondary); margin: 16px 0 14px; }

.ba-points { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-top: auto; }
.ba-points li { position: relative; padding-left: 22px; font-size: 13.5px; color: var(--text); }
.ba-points li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.ba-points--muted li { color: var(--text-secondary); }
.ba-points--muted li::before { content: '✕'; color: #b9b2cc; }

/* ---- ДО: message bubbles ---- */
.ba-messages { position: relative; height: 230px; }
.ba-message { position: absolute; will-change: transform, opacity; }
.ba-message__inner {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 14px 14px 14px 4px;
  background: #fff;
  border: 1px solid #e2dcf2;
  box-shadow: 0 6px 18px rgba(60,20,110,.10);
  font-size: 13px; font-weight: 500; color: #2a2435;
  white-space: nowrap;
}

/* ---- ПОТОК (центр) ---- */
.ba-flow {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; text-align: center; padding: 8px 0;
}
.ba-flow__label { font-size: 13px; font-weight: 700; color: var(--accent); line-height: 1.3; }
.ba-flow__line {
  position: relative;
  width: 100%; height: 3px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, rgba(168,85,247,.15), var(--accent-2), var(--accent));
  box-shadow: 0 0 14px rgba(168,85,247,.4);
}
.ba-flow__arrow {
  position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  color: var(--accent); font-size: 18px; font-weight: 900; line-height: 1;
}
.ba-particle {
  position: absolute; top: 50%; left: 0;
  width: 7px; height: 7px; margin-top: -3.5px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #fff, var(--accent-2) 60%, transparent 75%);
  box-shadow: 0 0 8px rgba(168,85,247,.8);
  animation: baParticle 2.6s linear infinite;
  opacity: 0;
}
.ba-particle:nth-child(2) { animation-delay: .5s; }
.ba-particle:nth-child(3) { animation-delay: 1.0s; }
.ba-particle:nth-child(4) { animation-delay: 1.5s; }
.ba-particle:nth-child(5) { animation-delay: 2.0s; }
@keyframes baParticle {
  0%   { transform: translateX(0)    scale(.6); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateX(190px) scale(1); opacity: 0; }
}
.ba-flow__badge {
  padding: 7px 13px; border-radius: var(--radius-pill);
  background: #fff; border: 1px solid var(--border);
  font-size: 11.5px; font-weight: 600; color: var(--text);
  box-shadow: var(--shadow-sm);
}

/* ---- ПОСЛЕ: mini-dashboard ---- */
.ba-dashboard {
  position: relative;
  border: 1px solid #e2dcf2; border-radius: 16px;
  background: #fff; overflow: hidden;
  box-shadow: 0 10px 30px rgba(60,20,110,.12);
}
.ba-dash__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 12px; background: #f7f5ff; border-bottom: 1px solid #efeaff;
}
.ba-dash__dot { width: 8px; height: 8px; border-radius: 50%; background: #d8d0ee; }
.ba-dash__dot:nth-child(1){ background:#f0a3b1; } .ba-dash__dot:nth-child(2){ background:#f3d08a; } .ba-dash__dot:nth-child(3){ background:#9ed6a8; }
.ba-dash__url { margin-left: 8px; font-size: 11px; color: #9a92b3; background:#fff; border:1px solid #ece7fb; border-radius: 6px; padding: 2px 10px; }
.ba-dash__body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.ba-dash__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-radius: 10px;
  background: #faf9ff; border: 1px solid #f0ecfb;
  will-change: transform, opacity;
}
.ba-dash__rowtitle { font-size: 12.5px; font-weight: 700; color: var(--text); }
.ba-dash__bars { display: flex; gap: 4px; }
.ba-dash__bars i { width: 18px; height: 6px; border-radius: 3px; background: #ddd5f2; }
.ba-dash__price { font-size: 12.5px; font-weight: 700; color: var(--accent); }
.ba-dash__stars { font-size: 12px; color: #f5a623; letter-spacing: 1px; }
.ba-dash__field { width: 70px; height: 18px; border-radius: 6px; background: #ece7fb; }
.ba-dash__status {
  display: flex; align-items: center; gap: 7px;
  margin: 0 12px 12px; padding: 9px 12px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(168,85,247,.12), rgba(109,40,217,.08));
  border: 1px solid rgba(168,85,247,.25);
  font-size: 12.5px; font-weight: 700; color: var(--accent);
}
.ba-dash__pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 0 rgba(168,85,247,.6); animation: baPulse 2s ease-out infinite; }
@keyframes baPulse { 0%{box-shadow:0 0 0 0 rgba(168,85,247,.55);} 70%{box-shadow:0 0 0 9px rgba(168,85,247,0);} 100%{box-shadow:0 0 0 0 rgba(168,85,247,0);} }
.ba-dash__done {
  position: absolute; top: 10px; right: 10px;
  padding: 4px 10px; border-radius: var(--radius-pill);
  background: var(--accent); color: #fff; font-size: 10.5px; font-weight: 800; letter-spacing: .03em;
  box-shadow: 0 6px 16px rgba(109,40,217,.4);
}
.ba-dash__sweep {
  position: absolute; top: 0; left: -40%; width: 35%; height: 100%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-12deg);
  animation: baSweep 5.5s ease-in-out 1.2s infinite;
}
@keyframes baSweep { 0%{left:-40%;} 35%,100%{left:130%;} }

/* ---- итоговая плашка + кнопки ---- */
.ba-result {
  margin: 30px auto 0; max-width: 760px; text-align: center;
  padding: 20px 26px; border-radius: var(--radius-md);
  background: linear-gradient(160deg, #f5f3ff, #ede9fe);
  border: 1px solid var(--border);
  font-size: 15px; line-height: 1.6; color: var(--text); font-weight: 500;
}
.ba-cta { display: flex; justify-content: center; gap: 14px; margin-top: 22px; flex-wrap: wrap; }

/* 3D hover tilt (desktop, pointer:fine) */
@media (hover: hover) and (pointer: fine) {
  .ba-card { transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease; transform-style: preserve-3d; }
  .ba-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
}

/* ---- TABLET ---- */
@media (max-width: 1199px) {
  .ba-scene { grid-template-columns: 1fr; gap: 16px; }
  .ba-flow { flex-direction: row; gap: 14px; padding: 4px 0; }
  .ba-flow__line { height: 3px; min-width: 120px; flex: 1; }
  .ba-flow__label, .ba-flow__badge { white-space: nowrap; }
}

/* ---- MOBILE ---- */
@media (max-width: 767px) {
  .ba-scene { gap: 14px; margin-top: 26px; }
  .ba-flow { flex-direction: column; gap: 8px; }
  .ba-flow__line { width: 3px; height: 36px; min-width: 0; background: linear-gradient(180deg, var(--accent-2), var(--accent)); }
  .ba-flow__arrow { right: 50%; top: auto; bottom: -8px; transform: translateX(50%) rotate(90deg); }
  .ba-particle { display: none; }          /* без частиц на мобиле */
  .ba-dash__sweep { display: none; }        /* без sweep на мобиле */
  .ba-messages { height: 200px; }
  .ba-message__inner { font-size: 12px; padding: 7px 11px; }
  .ba-result { font-size: 14px; padding: 16px 18px; }
  .ba-cta { flex-direction: column; }
  .ba-cta .btn { width: 100%; justify-content: center; min-height: 50px; }
}

/* ---- reduced motion: убираем все циклические анимации ---- */
@media (prefers-reduced-motion: reduce) {
  .ba-particle, .ba-dash__sweep, .ba-dash__pulse { animation: none; }
  .ba-particle { display: none; }
}

/* ==========================================================
   BEFORE / AFTER — сборка dashboard из «кусочков» (доработка)
   ========================================================== */
.ba-scene { position: relative; }   /* контекст для летящих ghost-частиц */

/* Контакт-строка + финальный badge */
.ba-dash__schedule { font-size: 11.5px; font-weight: 600; color: var(--text-secondary); }
.ba-dash__final {
  margin-top: 12px;
  display: inline-flex; align-self: center; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #fff; font-size: 12.5px; font-weight: 800; letter-spacing: .02em;
  box-shadow: 0 8px 22px rgba(109,40,217,.35);
}
.ba-after { align-items: stretch; }
.ba-after .ba-dash__final { align-self: center; }
.ba-dash__final-mark { font-size: 12px; }

/* Летящий «кусочек» хаоса → структуры */
.ba-ghost {
  position: absolute; top: 0; left: 0;
  width: 26px; height: 18px; margin: -9px 0 0 -13px;
  border-radius: 6px;
  z-index: 4; pointer-events: none;
  background: linear-gradient(135deg, #fff 0%, #ede9fe 100%);
  border: 1px solid rgba(168,85,247,.5);
  box-shadow: 0 0 14px rgba(168,85,247,.7), 0 4px 10px rgba(109,40,217,.25);
  display: flex; align-items: center; justify-content: center;
  will-change: transform, opacity;
}
.ba-build-piece { width: 12px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--accent-2), var(--accent)); }

/* Подсветка слоя при «прилёте» частицы (build) */
.ba-dashboard-layer.is-glow {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 2px rgba(168,85,247,.35), 0 8px 20px rgba(109,40,217,.18) !important;
}

/* Hover-связь: вопрос ↔ блок сайта */
.ba-message { cursor: default; }
.ba-message.is-linked { z-index: 3; }
.ba-message.is-linked .ba-message__inner {
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(109,40,217,.3);
  transform: scale(1.05);
}
.ba-message__inner { transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease; }

.ba-dashboard-layer { cursor: default; transition: border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.ba-dashboard-layer.is-hl {
  border-color: var(--accent) !important;
  background: var(--accent-soft) !important;
  box-shadow: 0 0 0 2px rgba(168,85,247,.28) !important;
}
.ba-flow.is-active .ba-flow__line { box-shadow: 0 0 20px rgba(168,85,247,.7); }

/* На mobile полёты/частицы не нужны */
@media (max-width: 767px) {
  .ba-ghost { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ba-ghost { display: none; }
}

/* ==========================================================
   AFTER-HERO VIDEO BACKGROUND — единый фон для секций после hero
   (hero не входит). overflow:visible — чтобы не сломать sticky cart.
   ========================================================== */
.after-hero-bg {
  position: relative;
  isolation: isolate;
  background: #FAF8FF;
  /* overflow НЕ hidden: иначе можно сломать sticky cart внутри секции корзины */
}

.after-bg-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  margin-bottom: -100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.after-bg-video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 58% 50%;
  opacity: 0.48;
  pointer-events: none;
  display: block;
  will-change: opacity;
}

.after-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(250,248,255,0.46) 0%,
      rgba(250,248,255,0.34) 42%,
      rgba(250,248,255,0.50) 100%
    ),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.34), transparent 42%),
    radial-gradient(circle at 85% 55%, rgba(109,40,217,0.08), transparent 45%);
}

/* Контент (секции, футер, карточки) — выше видео и overlay */
.after-hero-bg > section,
.after-hero-bg > footer,
.after-hero-bg > div:not(.after-bg-sticky) {
  position: relative;
  z-index: 1;
}

/* Плотные tinted-секции делаем полупрозрачными, чтобы видео просвечивало,
   но текст оставался читаемым (карточки внутри сохраняют свой белый фон). */
.after-hero-bg .section--tinted { background: rgba(240, 235, 255, 0.46); }

/* Мягкий переход от hero к видео-фону (не перекрывает клики) */
.after-hero-bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  z-index: 0;                  /* над видео, под контентом — не блокирует клики */
  pointer-events: none;
  background: linear-gradient(180deg, rgba(250,248,255,0.95), rgba(250,248,255,0.0));
}

/* ---- Адаптив ---- */
@media (max-width: 1199px) {
  .after-bg-video {
    opacity: 0.34;
    object-position: 55% 50%;
  }
}

@media (max-width: 900px) {
  .after-bg-video { opacity: 0.30; }
}

@media (max-width: 640px) {
  .after-bg-video { opacity: 0.22; }
}

/* ── Expert (private specialist) dark mockup ── */
.example-card--live-expert .example-card__visual { background: #0C0B09; padding: 10px 10px 0; height: 210px; }
.expert-mockup {
  width: 100%; height: 100%; background: #0C0B09;
  border-radius: 7px 7px 0 0; overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid rgba(201,169,110,.12); border-bottom: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.expert-bar {
  background: #111009; padding: 6px 9px;
  display: flex; align-items: center; gap: 4px; flex-shrink: 0;
  border-bottom: 1px solid rgba(201,169,110,.08);
}
.expert-url {
  margin-left: 7px; font-size: 9px; color: rgba(201,169,110,.45);
  background: rgba(201,169,110,.06); padding: 2px 8px;
  border-radius: 4px; flex: 1; text-align: center;
}
.expert-body {
  flex: 1; overflow: hidden; padding: 8px 10px 6px;
  display: flex; flex-direction: column;
}
.expert-nav {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px;
}
.expert-logo {
  font-family: Georgia, serif; font-size: 9px; font-weight: 600;
  color: #F0EBE0; letter-spacing: .02em;
}
.expert-logo em { font-style: italic; color: #C9A96E; font-weight: 400; }
.expert-nav-cta {
  font-size: 7px; padding: 2px 7px; border: 1px solid rgba(201,169,110,.3);
  border-radius: 99px; color: rgba(240,235,224,.6);
}
.expert-tag {
  font-size: 7px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(201,169,110,.5); margin-bottom: 5px;
}
.expert-h1 {
  font-family: Georgia, serif; font-size: 11px; font-weight: 400;
  line-height: 1.3; color: #F0EBE0; margin-bottom: 7px;
}
.expert-h1 em { font-style: italic; color: #E8D5A3; font-weight: 300; }
.expert-btns { display: flex; gap: 5px; margin-bottom: 8px; }
.expert-btn-p {
  font-size: 7px; font-weight: 600; padding: 3px 9px;
  background: #C9A96E; color: #0C0B09; border-radius: 99px;
}
.expert-btn-o {
  font-size: 7px; padding: 2px 8px;
  border: 1px solid rgba(201,169,110,.3); border-radius: 99px; color: rgba(240,235,224,.55);
}
.expert-svcs { display: flex; flex-direction: column; gap: 3px; margin-top: auto; }
.expert-svc {
  display: flex; align-items: center; gap: 6px; padding: 3px 6px;
  background: rgba(201,169,110,.04); border: 1px solid rgba(201,169,110,.08);
  border-radius: 5px; font-size: 7px; color: rgba(240,235,224,.7);
}
.expert-svc-n { color: rgba(201,169,110,.55); font-family: Georgia, serif; font-size: 9px; }
.expert-svc-p { margin-left: auto; color: #C9A96E; font-size: 7px; }

/* ── Security card mockup ── */
.example-card--live-security .example-card__visual { background: #0A0E18; padding: 10px 10px 0; height: 210px; }
.sec-mockup {
  width: 100%; height: 100%; background: #0A0E18;
  border-radius: 7px 7px 0 0; overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid rgba(59,130,246,.15); border-bottom: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.sec-bar {
  background: #0D1320; padding: 6px 9px;
  display: flex; align-items: center; gap: 4px; flex-shrink: 0;
  border-bottom: 1px solid rgba(59,130,246,.1);
}
.sec-url {
  margin-left: 7px; font-size: 9px; color: rgba(96,165,250,.5);
  background: rgba(59,130,246,.07); padding: 2px 8px;
  border-radius: 4px; flex: 1; text-align: center;
}
.sec-body {
  flex: 1; overflow: hidden; padding: 7px 9px 5px;
  display: flex; flex-direction: column;
}
.sec-nav {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px;
}
.sec-logo {
  font-size: 9px; font-weight: 800; color: #fff; letter-spacing: .07em; text-transform: uppercase;
}
.sec-logo em { font-style: normal; color: #3B82F6; }
.sec-nav-cart { font-size: 7px; background: #3B82F6; color: #fff; padding: 2px 7px; border-radius: 4px; font-weight: 600; }
.sec-tag { font-size: 7px; letter-spacing: .12em; text-transform: uppercase; color: #3B82F6; margin-bottom: 3px; }
.sec-h1 { font-size: 11px; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 5px; }
.sec-h1 em { font-style: normal; color: #60A5FA; }
.sec-cats { display: flex; gap: 4px; margin-bottom: 6px; }
.sec-cat {
  font-size: 7px; padding: 2px 6px; border-radius: 3px;
  background: rgba(255,255,255,.05); color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.07);
}
.sec-cat--active { background: rgba(59,130,246,.2); color: #93C5FD; border-color: rgba(59,130,246,.3); }
.sec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; flex: 1; overflow: hidden; }
.sec-item {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px; padding: 5px; display: flex; flex-direction: column;
}
.sec-item-img { font-size: 14px; line-height: 1.3; text-align: center; margin-bottom: 3px; }
.sec-item-name { font-size: 7px; font-weight: 600; color: rgba(255,255,255,.8); margin-bottom: 2px; }
.sec-item-price { font-size: 9px; font-weight: 700; color: #3B82F6; }
.sec-item-btn {
  margin-top: 3px; background: rgba(59,130,246,.15); color: #60A5FA;
  border-radius: 3px; text-align: center; font-size: 7px; font-weight: 700; padding: 2px 0;
}

/* ── Event card mockup ── */
.example-card--live-event .example-card__visual { background: #FFF8F0; padding: 10px 10px 0; height: 210px; }
.ev-mockup {
  width: 100%; height: 100%; background: #FFF8F0;
  border-radius: 7px 7px 0 0; overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid rgba(234,88,12,.15); border-bottom: none;
  box-shadow: 0 4px 20px rgba(234,88,12,.12);
}
.ev-bar {
  background: #fff; padding: 6px 9px;
  display: flex; align-items: center; gap: 4px; flex-shrink: 0;
  border-bottom: 1px solid rgba(234,88,12,.1);
}
.ev-url {
  margin-left: 7px; font-size: 9px; color: rgba(234,88,12,.5);
  background: rgba(234,88,12,.07); padding: 2px 8px;
  border-radius: 4px; flex: 1; text-align: center;
}
.ev-body {
  flex: 1; overflow: hidden; padding: 7px 9px 5px;
  display: flex; flex-direction: column;
}
.ev-nav {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px;
}
.ev-logo {
  font-size: 9px; font-weight: 800; color: #EA580C; line-height: 1.2;
}
.ev-logo em { font-style: normal; color: #431407; }
.ev-nav-btn { font-size: 7px; background: #EA580C; color: #fff; padding: 2px 7px; border-radius: 4px; font-weight: 700; }
.ev-hero { margin-bottom: 5px; }
.ev-tag { font-size: 7px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #EA580C; margin-bottom: 3px; }
.ev-h1 { font-size: 11px; font-weight: 800; color: #431407; line-height: 1.25; margin-bottom: 4px; }
.ev-btns { display: flex; gap: 4px; }
.ev-btn-p { font-size: 7px; font-weight: 700; background: #EA580C; color: #fff; padding: 2px 8px; border-radius: 4px; }
.ev-btn-o { font-size: 7px; border: 1px solid rgba(234,88,12,.3); color: #EA580C; padding: 2px 7px; border-radius: 4px; font-weight: 600; }
.ev-cats { display: flex; gap: 5px; margin-top: auto; }
.ev-cat {
  flex: 1; background: #fff; border-radius: 6px; padding: 5px 4px;
  border: 1px solid rgba(234,88,12,.1); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.ev-cat-ic { font-size: 14px; line-height: 1; }
.ev-cat span:last-child { font-size: 7px; font-weight: 600; color: #7C2D12; }

/* ── mp-vl (Victoria Leonova showroom mockup) ── */
.mp-vl {
  width: 100%; height: 100%;
  background: #0C0B09; display: flex; flex-direction: column;
  font-family: 'Inter', sans-serif;
}
.mp-vl__nav {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-bottom: 1px solid rgba(201,169,110,.1);
  flex-shrink: 0;
}
.mp-vl__logo {
  font-family: Georgia, serif; font-size: 12px; font-weight: 600;
  color: #F0EBE0; letter-spacing: .02em; flex: 1;
}
.mp-vl__logo em { font-style: italic; color: #C9A96E; font-weight: 400; }
.mp-vl__sub {
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(240,235,224,.35); margin-right: 8px;
}
.mp-vl__cta {
  font-size: 9px; padding: 3px 10px;
  border: 1px solid rgba(201,169,110,.3); border-radius: 99px;
  color: rgba(240,235,224,.6);
}
.mp-vl__hero {
  flex: 1; padding: 16px 14px 12px;
  background: radial-gradient(ellipse 60% 60% at 80% 40%, rgba(201,169,110,.06) 0%, transparent 65%);
}
.mp-vl__tag {
  font-size: 9px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(201,169,110,.5); margin-bottom: 8px;
}
.mp-vl__title {
  font-family: Georgia, serif; font-size: 15px; font-weight: 400;
  line-height: 1.3; color: #F0EBE0; margin-bottom: 12px;
}
.mp-vl__title em { font-style: italic; color: #E8D5A3; }
.mp-vl__btns { display: flex; gap: 7px; margin-bottom: 0; }
.mp-vl__btn-p {
  font-size: 10px; font-weight: 600; padding: 5px 14px;
  background: #C9A96E; color: #0C0B09; border-radius: 99px;
}
.mp-vl__btn-o {
  font-size: 10px; padding: 4px 12px;
  border: 1px solid rgba(201,169,110,.3); border-radius: 99px; color: rgba(240,235,224,.6);
}
.mp-vl__svcs {
  padding: 10px 14px; border-top: 1px solid rgba(201,169,110,.08);
  display: flex; flex-direction: column; gap: 5px; flex-shrink: 0;
}
.mp-vl__svc {
  display: flex; align-items: center; gap: 8px; padding: 4px 8px;
  background: rgba(201,169,110,.04); border: 1px solid rgba(201,169,110,.08);
  border-radius: 6px; font-size: 10px; color: rgba(240,235,224,.7);
}
.mp-vl__svc-n { color: rgba(201,169,110,.55); font-family: Georgia, serif; font-size: 12px; }
.mp-vl__svc-p { margin-left: auto; color: #C9A96E; font-size: 10px; font-weight: 500; }

/* ── mp-sec (Larians Security showroom mockup) ── */
.mp-sec {
  width: 100%; height: 100%;
  background: #0A0E18; display: flex; flex-direction: column;
  font-family: 'Inter', sans-serif;
}
.mp-sec__nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; border-bottom: 1px solid rgba(59,130,246,.12); flex-shrink: 0;
}
.mp-sec__logo {
  font-size: 12px; font-weight: 800; letter-spacing: .08em;
  color: #fff; text-transform: uppercase;
}
.mp-sec__logo span { color: #3B82F6; }
.mp-sec__nav-r { display: flex; align-items: center; gap: 8px; }
.mp-sec__chip { font-size: 8px; background: rgba(59,130,246,.15); color: #60A5FA; padding: 2px 8px; border-radius: 4px; }
.mp-sec__cart { font-size: 9px; background: #3B82F6; color: #fff; padding: 3px 10px; border-radius: 5px; font-weight: 600; }
.mp-sec__hero {
  padding: 12px 14px 8px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(59,130,246,.07) 0%, transparent 60%);
}
.mp-sec__tag { font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: #3B82F6; margin-bottom: 5px; }
.mp-sec__title { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 6px; }
.mp-sec__title span { color: #60A5FA; }
.mp-sec__btns { display: flex; gap: 6px; }
.mp-sec__btn-p { font-size: 9px; font-weight: 700; background: #3B82F6; color: #fff; padding: 4px 12px; border-radius: 5px; }
.mp-sec__btn-o { font-size: 9px; border: 1px solid rgba(59,130,246,.3); color: rgba(255,255,255,.6); padding: 4px 10px; border-radius: 5px; }
.mp-sec__cats { display: flex; gap: 5px; padding: 8px 14px; flex-shrink: 0; overflow: hidden; }
.mp-sec__cat { font-size: 8px; padding: 3px 8px; border-radius: 4px; background: rgba(255,255,255,.05); color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.08); white-space: nowrap; }
.mp-sec__cat--active { background: rgba(59,130,246,.2); color: #93C5FD; border-color: rgba(59,130,246,.3); }
.mp-sec__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 14px; flex: 1; overflow: hidden; }
.mp-sec__item { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 8px; padding: 8px; display: flex; flex-direction: column; }
.mp-sec__item-img { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg,#1E2D4A,#162137); border-radius: 5px; margin-bottom: 5px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.mp-sec__item-name { font-size: 9px; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: 2px; line-height: 1.3; }
.mp-sec__item-price { font-size: 10px; font-weight: 700; color: #3B82F6; margin-top: auto; }
.mp-sec__item-btn { margin-top: 4px; background: rgba(59,130,246,.15); color: #60A5FA; border-radius: 4px; text-align: center; font-size: 9px; font-weight: 600; padding: 3px 0; }

/* ── mp-pr (Праздник Сегодня showroom mockup) ── */
.mp-pr {
  width: 100%; height: 100%;
  background: #FFF8F0; display: flex; flex-direction: column;
  font-family: 'Inter', sans-serif;
}
.mp-pr__nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; background: #fff; border-bottom: 1px solid rgba(234,88,12,.1); flex-shrink: 0;
}
.mp-pr__logo { font-size: 11px; font-weight: 800; color: #EA580C; line-height: 1.2; }
.mp-pr__logo span { display: block; font-size: 8px; font-weight: 400; color: rgba(234,88,12,.55); }
.mp-pr__menu-btn { font-size: 8px; background: #EA580C; color: #fff; padding: 4px 10px; border-radius: 5px; font-weight: 700; }
.mp-pr__hero {
  background: linear-gradient(135deg, #FFF1E6, #FFE4CC);
  padding: 14px 14px 10px; flex-shrink: 0;
  border-bottom: 1px solid rgba(234,88,12,.08);
}
.mp-pr__tag { font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #EA580C; margin-bottom: 4px; }
.mp-pr__title { font-size: 14px; font-weight: 800; color: #431407; line-height: 1.25; margin-bottom: 6px; }
.mp-pr__btns { display: flex; gap: 6px; }
.mp-pr__btn-p { font-size: 9px; font-weight: 700; background: #EA580C; color: #fff; padding: 4px 12px; border-radius: 5px; }
.mp-pr__btn-o { font-size: 9px; border: 1px solid rgba(234,88,12,.3); color: #EA580C; padding: 4px 10px; border-radius: 5px; font-weight: 600; }
.mp-pr__sections { display: flex; gap: 6px; padding: 8px 14px; flex-shrink: 0; }
.mp-pr__sec { flex: 1; background: #fff; border-radius: 8px; padding: 7px 8px; border: 1px solid rgba(234,88,12,.1); text-align: center; }
.mp-pr__sec-ic { font-size: 16px; line-height: 1.2; }
.mp-pr__sec-name { font-size: 8px; font-weight: 600; color: #7C2D12; margin-top: 2px; }
.mp-pr__cards { display: flex; gap: 7px; padding: 4px 14px 8px; flex: 1; overflow: hidden; }
.mp-pr__card { flex: 1; background: #fff; border-radius: 8px; border: 1px solid rgba(234,88,12,.1); padding: 8px; display: flex; flex-direction: column; }
.mp-pr__card-img { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg,#FED7AA,#FCA5A5); border-radius: 5px; margin-bottom: 5px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.mp-pr__card-name { font-size: 9px; font-weight: 700; color: #431407; margin-bottom: 2px; }
.mp-pr__card-price { font-size: 10px; font-weight: 700; color: #EA580C; margin-top: auto; }
.mp-pr__card-btn { margin-top: 4px; background: #EA580C; color: #fff; border-radius: 4px; text-align: center; font-size: 9px; font-weight: 700; padding: 3px 0; }

/* ---- prefers-reduced-motion: статичный красивый градиент ---- */
@media (prefers-reduced-motion: reduce) {
  .after-bg-video { display: none; }
  .after-hero-bg {
    background:
      radial-gradient(circle at 80% 20%, rgba(109,40,217,0.10), transparent 35%),
      radial-gradient(circle at 20% 70%, rgba(168,85,247,0.08), transparent 38%),
      #FAF8FF;
  }
}
