/* =========================================================
   SHNUROC.RU — Landing
   Design tokens, base, components, sections
   ========================================================= */

:root {
  /* Palette — strict 3 colors: white / black / red */
  --bg: #FFFFFF;
  --bg-soft: #F4F4F4;
  --surface: #FFFFFF;
  --ink: #000000;
  --ink-soft: #111111;
  --muted: #6B6B6B;
  --line: rgba(0, 0, 0, 0.10);
  --line-strong: rgba(0, 0, 0, 0.22);
  --accent: #E52300;
  --accent-dark: #B81C00;
  --accent-soft: #FCE7E2;

  /* Type — single family */
  --font-display: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter: 28px;
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --radius-xl: 32px;
  --shadow-card: 0 1px 0 rgba(14,14,16,0.04), 0 12px 36px -18px rgba(14,14,16,0.18);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv11", "ss01";
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

/* Typography */
.font-display { font-family: var(--font-display); letter-spacing: -0.02em; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
  transform: translateY(-2px);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(34px, 4.6vw, 56px); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -0.025em; }
h3 { font-size: clamp(20px, 1.8vw, 24px); line-height: 1.18; letter-spacing: -0.015em; font-weight: 600; }
h4 { font-size: 17px; letter-spacing: -0.01em; font-weight: 600; }

p { margin: 0 0 1em 0; text-wrap: pretty; }
.lead { font-size: clamp(17px, 1.3vw, 19px); line-height: 1.45; color: var(--ink-soft); font-weight: 400; }
.muted { color: var(--muted); }
.mono { font-family: "JetBrains Mono", ui-monospace, Menlo, monospace; font-variant-numeric: tabular-nums; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: clamp(72px, 10vw, 140px) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }
.section + .section { padding-top: 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 72px);
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1fr 1fr; align-items: end; }
  .section-head .head-right { justify-self: end; max-width: 460px; }
}
.section-head .head-eyebrow { margin-bottom: 18px; }
.section-head h2 { max-width: 18ch; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #2a2a2e; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-sm { height: 44px; padding: 0 18px; font-size: 14px; }
.btn-arrow::after {
  content: "→";
  font-family: var(--font-body);
  font-weight: 400;
  transform: translateY(-1px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  line-height: 1;
}
.link-arrow:hover { color: var(--accent); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  height: 78px;
  position: relative;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--accent);
  border-radius: 8px;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  transform: rotate(-6deg);
}
/* Real SVG logo */
.logo-real {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}
.logo-real .logo-img {
  height: 28px;
  width: auto;
  display: block;
}
.logo-real .logo-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.logo-footer .logo-img { height: 52px; }
.logo-footer .logo-sub { color: rgba(255,255,255,0.45); }
.logo-footer { margin-bottom: 24px; }
@media (max-width: 640px) {
  .logo-real .logo-img { height: 22px; }
  .logo-real .logo-sub { font-size: 9px; }
}

.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.12em;
}
.nav { display: flex; gap: 6px; justify-content: center; }
.nav a {
  padding: 10px 14px;
  font-size: 14px;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.nav a:hover { background: rgba(14,14,16,0.06); }

/* Выпадающий список «Продукция» */
.nav-dd { position: relative; }
.nav-dd-toggle {
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink-soft);
  background: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .15s ease, color .15s ease;
}
.nav-dd-toggle:hover { background: rgba(14,14,16,0.06); }
.nav-dd-caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .55;
  transition: transform .2s ease;
}
.nav-dd.open .nav-dd-caret { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 248px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}
.nav-dd.open .nav-dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd-menu a {
  padding: 10px 14px;
  font-size: 14px;
  color: var(--ink-soft);
  border-radius: 8px;
  white-space: nowrap;
}
.nav-dd-menu a:hover { background: rgba(14,14,16,0.06); color: var(--ink); }
.nav-dd-menu a[aria-current="page"] { color: var(--accent); font-weight: 600; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
}
/* Бургер-кнопка (скрыта на десктопе) */
.nav-toggle { display: none; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav a {
    padding: 13px 24px;
    border-radius: 0;
    font-size: 15px;
  }
  .nav a:hover { background: rgba(14,14,16,0.05); }

  /* Дропдаун как аккордеон внутри бургер-панели */
  .nav-dd { width: 100%; }
  .nav-dd-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 13px 24px;
    border-radius: 0;
    font-size: 15px;
  }
  .nav-dd-menu {
    position: static;
    display: none;
    min-width: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    background: var(--bg-soft);
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-dd.open .nav-dd-menu { display: flex; }
  .nav-dd-menu a { padding: 12px 24px 12px 40px; border-radius: 0; }
}

@media (max-width: 640px) {
  .header-phone { display: none; }
  .header-inner { height: 64px; }
  .header-cta .btn-sm { display: none; }
}

/* Hero */
.hero { padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(56px, 8vw, 120px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; }
}
.hero h1 .accent { color: var(--accent); }
.hero h1 .strike-line {
  position: relative;
  display: inline-block;
}
.hero-sub {
  max-width: 56ch;
  margin-top: 28px;
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-soft);
  line-height: 1.45;
}
.hero-bullets {
  list-style: none;
  max-width: 56ch;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-bullets li {
  position: relative;
  padding-left: 26px;
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-soft);
  line-height: 1.4;
}
.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-aside-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-aside-meta .meta {
  display: flex; flex-direction: column; gap: 2px;
}
.hero-aside-meta .meta strong {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.02em;
}
.hero-aside-meta .meta span {
  font-size: 13px; color: var(--muted);
}

/* Hero visual — stylized lanyard composition (placeholder) */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.hero-visual .ph-label {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 4;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero-visual .ph-badge {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  z-index: 4;
  display: flex; justify-content: space-between; align-items: end;
  gap: 16px;
}
.hero-visual .ph-badge .big {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 18ch;
}
.hero-visual .ph-badge .pill {
  padding: 8px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
/* Ribbon-like decorations */
.ribbon {
  position: absolute;
  width: 56px;
  top: -10%;
  bottom: -10%;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  background-size: 100% 24px;
  background-repeat: repeat-y;
}
.ribbon::after {
  content: "";
  position: absolute;
  left: 50%; top: 64%;
  transform: translateX(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 6px solid rgba(255,255,255,0.85);
  background: transparent;
}
.ribbon-1 { left: 18%; transform: rotate(-8deg); background-color: var(--accent); background-image: repeating-linear-gradient(180deg, rgba(255,255,255,0.18) 0 1px, transparent 1px 22px); }
.ribbon-2 { left: 44%; transform: rotate(4deg); background-color: #000; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10); }
.ribbon-3 { left: 70%; transform: rotate(-3deg); background-color: var(--accent); }
.ribbon-3::before {
  content: "PROMOFABRIC";
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.85);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* Hero video */
.hero-visual video.cover,
.hero-visual img.cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.hero-visual .ph-badge { z-index: 3; }

/* Trust bar */
.trust {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin: 0 var(--gutter);
}
@media (min-width: 760px) {
  .trust { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
.trust .stat {
  display: flex; flex-direction: column; gap: 6px;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.trust .stat:last-child { border-right: 0; }
.trust .stat strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.trust .stat span { font-size: 13px; color: rgba(255,255,255,0.6); }

.client-logos {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 40px;
  justify-content: space-between;
}
.client-logos .label { font-size: 12px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; flex-shrink: 0; }
.client-logos img {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.2s;
}
.client-logos img:hover { filter: grayscale(0) opacity(1); }
.client-logos .logo-chip {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
  opacity: .7;
}

/* Product navigator */
.prod-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .prod-nav { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .prod-nav { grid-template-columns: repeat(4, 1fr); } }

/* Pockets: всегда 3 колонки на всю ширину */
.pockets-nav { grid-template-columns: 1fr !important; }
@media (min-width: 720px) {
  .pockets-nav { grid-template-columns: repeat(3, 1fr) !important; }
}
.prod-card {
  background: var(--surface);
  border-radius: var(--radius-l);
  padding: 28px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  min-height: 280px;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}
.prod-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.prod-card .num {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.prod-card h3 { margin-top: 12px; }
.prod-card .price {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.prod-card .price small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--muted);
  margin-left: 2px;
}
.prod-card .desc { color: var(--muted); font-size: 14px; margin-top: 8px; }
.prod-card .arrow {
  position: absolute;
  top: 24px; right: 24px;
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-size: 14px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.prod-card:hover .arrow { background: var(--ink); color: #fff; border-color: var(--ink); transform: rotate(-45deg); }
.prod-card.bundle {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.prod-card.bundle .num { color: rgba(255,255,255,0.5); }
.prod-card.bundle .desc { color: rgba(255,255,255,0.65); }
.prod-card.bundle .arrow { border-color: rgba(255,255,255,0.2); }
.prod-card.bundle:hover .arrow { background: var(--accent); border-color: var(--accent); }

/* Карточка с изображением (карманы) */
.prod-card.with-img { padding: 0; overflow: hidden; }
.prod-card.with-img .prod-card-img {
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
  overflow: hidden;
  position: relative;
}
.prod-card.with-img .prod-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.prod-card.with-img:hover .prod-card-img img { transform: scale(1.04); }
.prod-card.with-img .num,
.prod-card.with-img h3,
.prod-card.with-img .desc { padding-left: 28px; padding-right: 28px; }
.prod-card.with-img .num { padding-top: 24px; }
.prod-card.with-img .price { padding: 0 28px 28px; }
.prod-card .save-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  align-self: flex-start;
  margin-top: 8px;
}

/* Product feature blocks (lenty s/bez nan., bejdji) */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
@media (min-width: 980px) {
  .feature { grid-template-columns: 1.1fr 1fr; }
  .feature.reverse { grid-template-columns: 1fr 1.1fr; }
  .feature.reverse .feature-visual { order: -1; }
}
.feature-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  background: var(--bg-soft);
  overflow: hidden;
  min-height: 480px;
}
.feature-visual .ph-label {
  position: absolute;
  top: 18px; left: 18px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.feature-visual .stack-tag {
  position: absolute;
  background: var(--surface);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.feature-visual .stack-tag.t1 { top: 28%; left: 8%; }
.feature-visual .stack-tag.t2 { top: 56%; right: 10%; }
.feature-visual .stack-tag.t3 { top: 80%; left: 40%; }
.feature-visual.dark { background: var(--ink); color: #fff; }
.feature-visual.dark .ph-label { color: rgba(255,255,255,0.55); }
.feature-visual.dark .stack-tag { background: rgba(0,0,0,0.41); color: #fff; border-color: rgba(255,255,255,0.15); backdrop-filter: blur(8px); }

/* Cover image inside feature-visual */
.feature-visual img.cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.feature-visual.has-img .stack-tag { z-index: 2; }
.feature-visual.has-img.dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Spec table */
.spec-list {
  display: flex;
  flex-direction: column;
}
.spec-row {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.spec-row:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 520px) {
  .spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 0;
  }
}
.spec-row .k {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.spec-row .v { font-size: 16px; line-height: 1.45; }
.spec-row .v .chip {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-soft);
  border-radius: 999px;
  font-size: 13px;
  margin: 2px 4px 2px 0;
}
.spec-row .v .chip.popular {
  background: var(--ink);
  color: #fff;
}
.spec-row .v .chip.popular::after {
  content: " ★";
  font-size: 10px;
  color: var(--accent);
}

.feature-foot {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
}
.feature-price {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.feature-price small {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 4px;
}

/* Print method tabs */
.tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-soft);
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 24px;
}
.tab-btn {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: background .15s, color .15s;
}
.tab-btn.active { background: var(--ink); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .2s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* Furniture grid */
.furniture-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 600px) { .furniture-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .furniture-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1200px) { .furniture-grid { grid-template-columns: repeat(7, 1fr); } }
.fur-cat {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 16px;
  margin-top: 32px;
}
.fur-cat:first-child { margin-top: 0; }
.fur-cat h3 { font-size: 16px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.fur-cat .line { flex: 1; height: 1px; background: var(--line); }
.fur-cat .count {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}
.fur-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 14px 14px 16px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .15s ease, border-color .15s ease;
}
.fur-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.fur-card .thumb {
  aspect-ratio: 1;
  background: var(--bg);
  border-radius: var(--radius-s);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}
.fur-card .thumb svg { width: 60%; height: 60%; }
.fur-card .thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fur-card .name {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 500;
}
.fur-banner {
  margin-top: 32px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-l);
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.fur-banner p { margin: 0; font-size: 18px; max-width: 50ch; }
.fur-banner strong { color: var(--accent); }

/* Bundle compare */
.bundle-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 860px) { .bundle-compare { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.bundle-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 32px;
  display: flex; flex-direction: column;
  position: relative;
}
.bundle-col.highlight {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.bundle-col h3 { margin-bottom: 8px; }
.bundle-col .col-sub { color: var(--muted); font-size: 14px; }
.bundle-col.highlight .col-sub { color: rgba(255,255,255,0.65); }
.bundle-items {
  margin: 24px 0;
  display: flex; flex-direction: column;
}
.bundle-items .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.bundle-col.highlight .bundle-items .row { border-top-color: rgba(255,255,255,0.12); }
.bundle-items .row:first-child { border-top: 0; }
.bundle-items .row .item { font-size: 15px; }
.bundle-items .row .v { font-family: var(--font-display); font-weight: 500; font-size: 15px; }
.bundle-total {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: end;
}
.bundle-col.highlight .bundle-total { border-top-color: rgba(255,255,255,0.18); }
.bundle-total .label { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.bundle-col.highlight .bundle-total .label { color: rgba(255,255,255,0.6); }
.bundle-total .price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.bundle-save-tag {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  padding: 8px 14px;
  border-radius: 999px;
}

/* Calculator */
.calc {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 980px) { .calc { grid-template-columns: 1.4fr 1fr; gap: 56px; } }
.calc h2 { color: #fff; }
.calc-fields {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px;
  margin-top: 32px;
}
@media (max-width: 640px) { .calc-fields { grid-template-columns: 1fr; } }
.calc-field { display: flex; flex-direction: column; gap: 10px; }
.calc-field .label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.calc-options { display: flex; flex-wrap: wrap; gap: 6px; }
.calc-opt {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  transition: background .15s, color .15s, border-color .15s;
}
.calc-opt:hover { background: rgba(255,255,255,0.1); }
.calc-opt.active { background: #fff; color: var(--ink); border-color: #fff; }
.calc-qty {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 4px;
  width: fit-content;
}
.calc-qty button {
  width: 36px; height: 36px; border-radius: 999px;
  font-size: 18px; color: #fff;
  display: grid; place-items: center;
}
.calc-qty button:hover { background: rgba(255,255,255,0.1); }
.calc-qty input {
  width: 80px;
  background: transparent;
  border: 0;
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  outline: none;
}
.calc-summary {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-l);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.calc-summary .label { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.1em; text-transform: uppercase; }
.calc-summary .total {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 4.5vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1;
}
.calc-summary .total small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-top: 8px;
  letter-spacing: 0;
}
.calc-summary .per-unit {
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between;
  font-size: 14px;
}
.calc-summary .per-unit strong {
  font-family: var(--font-display);
  font-weight: 500;
}
.calc-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* Production timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tl-step {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  position: relative;
}
.tl-step:last-child { border-right: 0; }
.tl-step .step-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0;
}
.tl-step h4 {
  margin: 12px 0 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
}
.tl-step .step-time {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.tl-step .step-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
}
@media (max-width: 740px) {
  .tl-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .tl-step:last-child { border-bottom: 0; }
}

/* Why us — bento */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 32px;
  display: flex; flex-direction: column;
  min-height: 220px;
}
.why-card .big-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 4vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--accent);
}
.why-card h3 { margin: 16px 0 8px; }
.why-card p { color: var(--muted); font-size: 15px; margin: 0; line-height: 1.45; }
.why-card.dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.why-card.dark .big-num { color: #fff; }
.why-card.dark p { color: rgba(255,255,255,0.7); }

/* Cases */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .cases-grid { grid-template-columns: repeat(3, 1fr); } }
.case {
  background: var(--surface);
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.case:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.case .case-img {
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  position: relative;
  display: grid; place-items: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.case .case-img.tinted-1 { background: #000; color: rgba(255,255,255,0.5); }
.case .case-img.tinted-2 { background: var(--accent); color: rgba(255,255,255,0.85); }
.case .case-img.tinted-3 { background: #000; color: rgba(255,255,255,0.5); }
.case .case-img.tinted-4 { background: var(--accent); color: rgba(255,255,255,0.85); }
.case .case-img.tinted-5 { background: #000; color: rgba(255,255,255,0.5); }
.case .case-img.tinted-6 { background: var(--accent); color: rgba(255,255,255,0.85); }
.case .case-img { overflow: hidden; }
.case .case-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.case:hover .case-img img { transform: scale(1.04); }
.case-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.case-tag { font-size: 12px; color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.case-body h3 { font-size: 22px; line-height: 1.15; }
.case-body p { color: var(--muted); font-size: 14px; margin: 0; }
.case-stats { display: flex; gap: 24px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.case-stats .s strong { font-family: var(--font-display); font-weight: 500; font-size: 18px; display: block; }
.case-stats .s span { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* Reviews — виджеты Яндекс.Карт + 2ГИС */
.reviews-widgets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
.reviews-widget {
  position: relative;
  flex: 1 1 480px;
  width: 100%;
  max-width: 560px;
  height: 800px;
  overflow: hidden;
}
.reviews-widget--2gis { height: 824px; }
.reviews-widget-frame {
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-sizing: border-box;
}
.reviews-widget-link {
  box-sizing: border-box;
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  display: block;
  max-height: 14px;
  padding: 0 16px;
  text-align: center;
  text-decoration: none;
  color: #b3b3b3;
  font-size: 10px;
  font-family: var(--font-body);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 600px) {
  .reviews-widget { height: 720px; }
}

.logos-wall {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
}
@media (min-width: 600px) { .logos-wall { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .logos-wall { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .logos-wall { grid-template-columns: repeat(6, 1fr); } }
.logos-wall .l {
  background: var(--surface);
  padding: 28px 16px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  min-height: 80px;
  opacity: .85;
}

/* B2B */
.b2b {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 980px) { .b2b { grid-template-columns: 1fr 1fr; align-items: center; } }
.b2b h2 { color: #fff; }
.b2b-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.b2b-feature .check {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}
.b2b-feature h4 { font-family: var(--font-display); font-weight: 500; font-size: 17px; margin-bottom: 4px; }
.b2b-feature p { color: rgba(255,255,255,0.65); font-size: 14px; margin: 0; line-height: 1.4; }

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.faq-q .icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-body);
  transition: transform .25s ease, background .15s, color .15s;
}
.faq-item.open .faq-q .icon {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 0 24px;
  max-width: 70ch;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.5;
}

/* Form */
.lead-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 56px);
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.form-action {
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  transition: background .15s, color .15s, border-color .15s;
}
.form-action.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.field input, .field textarea {
  height: 52px;
  padding: 0 16px;
  background: var(--bg);
  border: 1px solid transparent;
  border-radius: 12px;
  outline: none;
  transition: border-color .15s, background .15s;
}
.field textarea { height: 120px; padding: 14px 16px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--ink); background: var(--surface); }
.form-footer {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; margin-top: 32px;
  flex-wrap: wrap;
}
.form-footer .privacy { font-size: 13px; color: var(--muted); max-width: 60ch; line-height: 1.4; }
.form-footer .privacy a { text-decoration: underline; }
.form-success {
  display: none;
  padding: 40px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-l);
  text-align: center;
}
.form-success.show { display: block; }
.form-success h3 { color: #fff; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 80px 0 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 15px; }
.footer-col li a { color: rgba(255,255,255,0.85); }
.footer-col li a:hover { color: var(--accent); }
.footer-cta {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.footer-phone {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  display: block;
}
.footer-email { color: rgba(255,255,255,0.7); display: block; margin-top: 6px; }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.65); text-decoration: underline; }

/* Floating phone (mobile) */
.float-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
}
.float-cta .btn { box-shadow: 0 10px 30px -8px rgba(230,51,32,0.6); }
@media (max-width: 760px) {
  .float-cta { display: block; }
}

/* Utilities */
.hidden { display: none !important; }

/* =========================================================
   08A — Контрольный браслет (карусель + inline-форма)
========================================================= */
/* carousel + специфика/форма в две колонки; карусель максимум на пол-экрана */
.bracelet-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
/* грид-элементы не должны раздуваться по min-content и выпирать за контейнер */
.bracelet-layout > * { min-width: 0; }
@media (min-width: 900px) {
  .bracelet-layout { grid-template-columns: 1fr 1fr; }
}

.carousel.bracelet-carousel {
  aspect-ratio: 4 / 3;
  min-height: 0;
  margin-bottom: 0;
}

.carousel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 4 / 3;
  min-height: 380px;
}
.carousel-track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  height: 100%;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  z-index: 3;
  transition: background .15s ease, transform .15s ease;
}
.carousel-btn:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }
.carousel-btn:disabled { opacity: .4; cursor: default; transform: translateY(-50%); }

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.carousel-dots button.active {
  background: var(--ink);
  transform: scale(1.2);
}

.bracelet-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Inline form */
.inline-form {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-l);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.inline-form-head h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.inline-form-head .muted {
  color: rgba(255,255,255,0.55) !important;
}
.inline-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.inline-form-fields input:nth-child(3) { grid-column: 1 / -1; }
.inline-form-fields input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.inline-form-fields input::placeholder { color: rgba(255,255,255,0.4); }
.inline-form-fields input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
}
.inline-form .btn { align-self: flex-start; }

/* Широкая форма на всю ширину контейнера, поля в одну строку */
.inline-form-wide {
  margin-top: clamp(28px, 4vw, 48px);
  gap: 16px;
}
.inline-form-wide .inline-form-fields {
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: stretch;
  gap: 12px;
}
.inline-form-wide .inline-form-fields input:nth-child(3) { grid-column: auto; }
.inline-form-wide .inline-form-fields .btn {
  align-self: stretch;
  white-space: nowrap;
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 720px) {
  .inline-form-wide .inline-form-fields { grid-template-columns: 1fr; }
  .inline-form-wide .inline-form-fields .btn { padding-top: 14px; padding-bottom: 14px; }
}

/* =========================================================
   08B — Держатели для бейджей (галерея)
========================================================= */
.holders-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.holders-main {
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
}
.holders-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.holders-main:hover img { transform: scale(1.04); }
.holders-tiles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.holders-tile {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-soft);
  padding: 0;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .15s ease, transform .15s ease;
}
.holders-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.holders-tile:hover { transform: translateY(-2px); }
.holders-tile.active { border-color: var(--accent); }
[data-gallery-main] { transition: opacity .2s ease; }
[data-gallery-main].swapping { opacity: 0; }

/* =========================================================
   08C — Кастомные брендированные шнурки
========================================================= */
.custom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) { .custom-grid { grid-template-columns: repeat(3, 1fr); } }

.custom-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.custom-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.custom-card-img {
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  overflow: hidden;
}
.custom-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.custom-card:hover .custom-card-img img { transform: scale(1.04); }
.custom-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.custom-card-body h3 { font-size: 20px; line-height: 1.2; }
.custom-card-body p { color: var(--muted); font-size: 14px; margin: 0; flex: 1; }
.custom-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}
.custom-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--muted);
}

/* =========================================================
   14A — Полный каталог
========================================================= */
.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .catalog-grid { grid-template-columns: repeat(4, 1fr); } }

.catalog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.catalog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.catalog-card-img {
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  overflow: hidden;
}
.catalog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.catalog-card:hover .catalog-card-img img { transform: scale(1.04); }
.catalog-card h3 {
  font-size: 17px;
  line-height: 1.2;
  padding: 20px 20px 8px;
}
.catalog-card p {
  color: var(--muted);
  font-size: 13px;
  padding: 0 20px 12px;
  margin: 0;
}
.catalog-card-link {
  margin-top: auto;
  padding: 0 20px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: gap .15s ease;
}
.catalog-card:hover .catalog-card-link { text-decoration: underline; }
.catalog-foot {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* =========================================================
   Новости — карточки, листинг, тизер-блок, текст статьи
========================================================= */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }

.news-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--line-strong); }
.news-card-img {
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
  overflow: hidden;
}
.news-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 24px;
  flex: 1;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.news-meta .tag {
  color: var(--accent);
  font-weight: 600;
}
.news-meta time { color: var(--muted); }
.news-card h3 { font-size: 19px; line-height: 1.22; }
.news-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.news-card-link {
  margin-top: auto;
  padding-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}
.news-card:hover .news-card-link { text-decoration: underline; }

/* Тизер-блок «Новости» на страницах */
.news-teaser-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.news-teaser-head h2 { margin: 0; }

/* Страница статьи — типографика текста */
.article {
  max-width: 760px;
  margin: 0 auto;
}
.article-head { margin-bottom: 36px; }
.article-head h1 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-top: 14px;
}
.article-head .news-meta { margin-bottom: 6px; }
.article-cover {
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg-soft);
  margin-bottom: 36px;
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-body { font-size: 17px; line-height: 1.65; color: var(--ink-soft); }
.article-body > * + * { margin-top: 20px; }
.article-body h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 40px;
}
.article-body h3 {
  font-size: 20px;
  color: var(--ink);
  margin-top: 28px;
}
.article-body ul, .article-body ol { padding-left: 22px; }
.article-body li { margin-top: 8px; }
.article-body li::marker { color: var(--accent); }
.article-body strong { color: var(--ink); }
.article-body a { color: var(--accent); text-decoration: underline; }
.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 20px;
  color: var(--ink);
  font-size: 19px;
}
.article-cta {
  margin-top: 44px;
  padding: 28px;
  border-radius: var(--radius-l);
  background: var(--bg-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.article-cta p { margin: 0; font-weight: 500; max-width: 46ch; }

/* =========================================================
   Хлебные крошки
========================================================= */
.breadcrumbs {
  padding-top: 18px;
  font-size: 13px;
}
.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--muted); transition: color .15s ease; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { color: var(--line-strong); }
.breadcrumbs [aria-current="page"] { color: var(--ink); }

/* Галерея ремувок */
.remuvki-carousel { aspect-ratio: 16 / 10; min-height: 0; max-height: 560px; }

/* =========================================================
   Главная — блок «О компании» (ff-item) + навигатор по разделам
========================================================= */
.ff-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 180px;
}
.ff-item strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}
.ff-item span { color: var(--muted); font-size: 14px; line-height: 1.4; }

.prodnav-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .prodnav-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .prodnav-grid { grid-template-columns: repeat(3, 1fr); } }

.prodnav-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.prodnav-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--line-strong); }
.prodnav-img {
  aspect-ratio: 16 / 11;
  background: var(--bg-soft);
  overflow: hidden;
}
.prodnav-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.prodnav-card:hover .prodnav-img img { transform: scale(1.05); }
.prodnav-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  flex: 1;
}
.prodnav-eyebrow {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
}
.prodnav-body h3 { font-size: 21px; line-height: 1.15; }
.prodnav-body p { color: var(--muted); font-size: 14px; line-height: 1.5; margin: 0; }
.prodnav-go {
  margin-top: auto;
  padding-top: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
}
.prodnav-card:hover .prodnav-go { text-decoration: underline; }

/* Ведущая карточка — на всю ширину строки на широких экранах */
@media (min-width: 1000px) {
  .prodnav-card--lead { grid-column: span 1; }
}

/* CTA-карточка без изображения */
.prodnav-card--cta {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  justify-content: center;
}
.prodnav-card--cta .prodnav-body { padding: 28px; gap: 14px; }
.prodnav-card--cta h3 { color: #fff; }
.prodnav-card--cta p { color: rgba(255,255,255,0.7); }
.prodnav-card--cta .btn { align-self: flex-start; margin-top: 6px; }

/* =========================================================
   Modal (CTA popup)
========================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 5vh 16px;
  overflow-y: auto;
}
.modal.open { display: flex; animation: modalFade .2s ease; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}
.modal-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  padding: 36px 32px 32px;
  box-shadow: 0 32px 80px -20px rgba(0,0,0,0.4);
  animation: modalSlide .25s ease;
}
@keyframes modalSlide {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  color: var(--muted);
  transition: background .15s ease, color .15s ease;
}
.modal-close:hover { background: var(--bg-soft); color: var(--ink); }
.modal-head h3 {
  font-size: 26px;
  margin-bottom: 8px;
}
.modal-head .muted {
  font-size: 14px;
  margin: 0 0 24px;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal-form .field label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.modal-form .field input {
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.modal-form .field input:focus {
  border-color: var(--ink);
  background: #fff;
}
.modal-submit { width: 100%; margin-top: 6px; }
.modal-privacy {
  font-size: 11px;
  color: var(--muted);
  margin: 8px 0 0;
  text-align: center;
  line-height: 1.4;
}
.modal-privacy a { text-decoration: underline; }

.modal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 18px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.modal-divider::before,
.modal-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.modal-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.modal-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.modal-channel:hover {
  border-color: var(--ink);
  background: var(--bg-soft);
  transform: translateY(-1px);
}
.modal-channel strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.modal-channel small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.ch-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.ch-tg { background: #229ED9; }
.ch-wa { background: #25D366; }
.ch-max { background: #000; font-weight: 700; font-family: var(--font-display); }
.ch-mail { background: var(--accent); }
.ch-phone { background: var(--ink); }

.modal-success {
  text-align: center;
  padding: 20px 0;
}
.modal-success .success-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0AA85B;
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}
.modal-success h3 {
  margin-bottom: 8px;
}
.modal-success p {
  margin: 0 0 20px;
}

@media (max-width: 520px) {
  .modal-card { padding: 28px 22px 24px; }
  .modal-head h3 { font-size: 22px; }
  .modal-channels { grid-template-columns: 1fr; }
}

/* =========================================================
   Calculator — preview + multi-select + figures
========================================================= */
.label-hint {
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0.45);
  margin-left: 6px;
}
.calc-options-multi .calc-opt {
  position: relative;
}
.calc-options-multi .calc-opt::before {
  content: "+";
  display: inline-block;
  width: 14px; height: 14px;
  margin-right: 6px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  font-size: 11px;
  line-height: 12px;
  text-align: center;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.calc-options-multi .calc-opt.active::before {
  content: "✓";
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Preview / order constructor */
.calc-preview {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-l);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.preview-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.preview-stage {
  position: relative;
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.preview-ribbon {
  width: 38px;
  height: 180px;
  background: #F0F0F0;
  border-radius: 4px 4px 0 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(255,255,255,0.06);
  transition: width .25s ease, background .25s ease, color .25s ease;
  overflow: hidden;
}
.preview-ribbon::before,
.preview-ribbon::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(0,0,0,0.07);
}
.preview-ribbon::before { top: 33%; }
.preview-ribbon::after { top: 66%; }
.preview-print {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  transition: opacity .2s ease;
}
.preview-fur {
  margin-top: -20px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.45));
  transition: transform .25s ease;
}
.preview-fur img {
  height: 100%;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  display: block;
}
.preview-fur[data-fur="2karabina"] img { max-width: 50px; }
.preview-fur[data-fur="retraktor"] img,
.preview-fur[data-fur="klipsa"] img { max-width: 64px; }

.preview-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pv-badge {
  font-size: 11px;
  padding: 5px 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}

/* Figures (per-unit, total, term) */
.calc-figures {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 4px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 6px;
}
.figure-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
}
.figure-row .label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.figure-row .unit-price,
.figure-row .total-price,
.figure-row strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #fff;
}
.figure-row.total-row {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  margin-top: 4px;
}
.figure-row.total-row .total-price {
  font-size: 32px;
  color: #fff;
}
.calc-disclaimer {
  margin: 12px 0 0;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.45;
}

/* =========================================================
   Button glow / shine animations
========================================================= */
.btn-glow {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 0 rgba(229, 35, 0, 0.4);
  animation: pulse-glow 2.4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229, 35, 0, 0.55), 0 8px 24px -8px rgba(229,35,0,0.5); }
  50%      { box-shadow: 0 0 0 14px rgba(229, 35, 0, 0), 0 12px 32px -8px rgba(229,35,0,0.7); }
}
.btn-glow::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: shine 3.2s ease-in-out infinite;
  animation-delay: 1s;
  pointer-events: none;
}
@keyframes shine {
  0%   { left: -100%; }
  40%  { left: 130%; }
  100% { left: 130%; }
}
.btn-glow:hover {
  animation-play-state: paused;
  transform: translateY(-1px);
}

/* Apply glow to the main CTAs by default */
.btn-primary.btn-arrow,
.hero-ctas .btn-primary,
.float-cta .btn-primary,
.bundle-col.highlight ~ * .btn-primary,
.modal-submit {
  /* mild glow on all primary CTAs */
}
.hero-ctas .btn-primary { position: relative; overflow: hidden; }
.hero-ctas .btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  animation: shine 4s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
}
.float-cta .btn-primary {
  animation: pulse-glow 2.4s ease-in-out infinite;
}

/* Soft entrance animation for any block tagged for it */
[data-anim="fade-up"] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-anim="fade-up"].in {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle hover lift on cards */
.fur-card, .case, .catalog-card, .custom-card, .prod-card, .why-card { will-change: transform; }

/* Calc options — multi-select active highlight (override base) */
.calc-options-multi .calc-opt.active {
  background: rgba(229, 35, 0, 0.18);
  color: #fff;
  border-color: var(--accent);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   EXIT-INTENT POPUP
============================================================ */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9100;
  align-items: center;
  justify-content: center;
}
.exit-popup.show { display: flex; }

.exit-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
}

.exit-card {
  position: relative;
  z-index: 1;
  background: var(--surface, #1a1a2e);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px 36px 36px;
  max-width: 440px;
  width: calc(100% - 32px);
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  animation: fadeInUp .3s ease;
}

.exit-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
  transition: color .2s;
}
.exit-close:hover { color: #fff; }

.exit-icon { font-size: 36px; margin-bottom: 12px; }

.exit-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.exit-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  line-height: 1.5;
}

.exit-form { display: flex; flex-direction: column; gap: 10px; }

.exit-form input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color .2s;
}
.exit-form input:focus { border-color: var(--accent); }
.exit-form input::placeholder { color: rgba(255,255,255,0.35); }

.exit-decline { margin-top: 8px; margin-bottom: 0; }
.exit-decline a { color: rgba(255,255,255,0.35); font-size: 12px; text-decoration: none; }
.exit-decline a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   SCROLL SLIDE-IN
============================================================ */
.scroll-slidein {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  background: var(--surface, #1a1a2e);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 18px 20px 16px;
  width: 300px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
}
.scroll-slidein.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.slidein-close {
  position: absolute;
  top: 10px; right: 12px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 2px 4px;
}
.slidein-close:hover { color: #fff; }

.slidein-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
}
.slidein-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin: 0 0 12px;
}

.slidein-form {
  display: flex;
  gap: 8px;
}
.slidein-form input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 9px 12px;
  color: #fff;
  font-size: 14px;
  outline: none;
  min-width: 0;
}
.slidein-form input:focus { border-color: var(--accent); }
.slidein-form input::placeholder { color: rgba(255,255,255,0.3); font-size: 12px; }

@media (max-width: 480px) {
  .scroll-slidein { right: 12px; left: 12px; width: auto; bottom: 80px; }
}
