
:root {
  --bg-0: #f4f7f9;
  --bg-1: #ffffff;
  --bg-2: #ffffff;
  --bg-3: #eef3f7;
  --line: rgba(14, 24, 34, 0.08);
  --line-strong: rgba(14, 24, 34, 0.14);

  --text-0: #0e1822;
  --text-1: #36434f;
  --text-2: #5e6b76;
  --text-3: #8a949d;

  --neon: #0a8a55;
  --neon-bright: #3fae7d;
  --neon-dim: rgba(10, 138, 85, 0.10);
  --neon-glow: rgba(10, 138, 85, 0.16);

  --amber: #df5630;
  --amber-bright: #e8714f;
  --amber-dim: rgba(223, 86, 48, 0.10);
  --coral: #df5630;

  --b24: #2fc6f6;
  --b24-dim: rgba(47, 198, 246, 0.10);

  --danger: #e5484d;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --font-sans: 'Manrope', -apple-system, sans-serif;
  --font-mono: 'Manrope', -apple-system, sans-serif;
  --font-display: 'Manrope', -apple-system, sans-serif;
  --font-logo: 'Montserrat', var(--font-sans);
  --radius-pill: 100px;
  --paper: #fff;
  --ink-900: #0e1822;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg-0);
  color: var(--text-1);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }

.hub-mega__kicker, .hub-mega__card-dom, .hub-chat__bot { font-family: 'JetBrains Mono', 'Courier New', monospace; }

img, svg { max-width: 100%; height: auto; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* === LOGO === */
.logo-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}
.logo-block {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}
.logo-block .logo-text {
  font-family: 'Montserrat', var(--font-sans);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text-0);
  line-height: 1;
}
.logo-block .logo-itc { color: var(--text-0); }
.logo-block .logo-dot { color: var(--neon); margin: 0 1px; }
.logo-block .logo-media { color: var(--text-0); }
.logo-tagline {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--neon);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .logo-block .logo-text { font-size: 18px; }
  .logo-tagline { font-size: 9px; letter-spacing: 0.06em; }
}
.logo-text .logo-itc,
.logo-text .logo-media {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: 1;
}
.logo-text .logo-dot {
  font-size: 0.7em;
  line-height: 1;
  position: relative;
  top: -0.1em;
  font-family: 'Montserrat', sans-serif;
}
.logo-text .logo-itc, .logo-text .logo-media { color: var(--text-0); }
.logo-text .logo-dot { color: var(--neon); }
.logo-text-muted .logo-itc,
.logo-text-muted .logo-media { color: rgba(255, 255, 255, 0.92); }
.logo-text-muted .logo-dot { color: var(--neon); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon);
  background: var(--neon-dim);
  border: 1px solid var(--line-strong);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--text-0);
}
h1 { font-size: clamp(38px, 5.4vw, 72px); }
h2 { font-family: var(--font-sans); font-weight: 800; font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.035em; line-height: 1.05; }
h3 { font-size: clamp(20px, 2.2vw, 26px); }

p { color: var(--text-1); }
.head-italic { font-style: normal; color: var(--neon); }
.head-italic-b24 { font-style: normal; color: var(--b24); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--neon);
  color: var(--bg-0);
  box-shadow: 0 0 0 1px var(--neon), 0 0 30px -5px var(--neon-glow);
}
.btn-primary:hover {
  background: var(--neon-bright);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--neon-bright), 0 0 40px -3px var(--neon-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text-0);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  background: var(--bg-2);
  border-color: var(--neon);
  color: var(--neon);
}
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(7, 9, 12, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.nav { display: flex; gap: 28px; }
.nav a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover { color: var(--neon); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.phone-link {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--text-1);
  text-decoration: none;
  font-size: 14px;
}
.phone-link:hover { color: var(--neon); }
@media (max-width: 900px) {
  .nav { display: none; }
  .phone-link { display: none; }
}

/* HERO */
.hero { position: relative; padding: 80px 0 100px; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  top: -300px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--neon-glow) 0%, transparent 60%);
  opacity: 0.35;
  z-index: 0;
  filter: blur(40px);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 138, 85, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 138, 85, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at top, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at top, black 30%, transparent 80%);
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

.hero h1 { margin-bottom: 28px; }
.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 580px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}
.trust-item strong { color: var(--text-0); font-weight: 600; }
.trust-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--neon-dim);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
  flex-shrink: 0;
}
.trust-item-gold {
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(220, 175, 80, 0.10), rgba(200, 150, 50, 0.03));
  border: 1px solid rgba(220, 175, 80, 0.25);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}
.trust-item-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 100, 0.09), transparent);
  animation: gold-sweep 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes gold-sweep {
  0% { left: -100%; }
  60% { left: 200%; }
  100% { left: 200%; }
}
.trust-item-gold strong { color: #9a6f12 !important; font-weight: 700; }
.trust-item-gold span { color: var(--text-1) !important; }
.trust-icon-gold {
  background: linear-gradient(135deg, #d4a553, #b8853d) !important;
  border-color: #FFD060 !important;
  color: #1a1408 !important;
  box-shadow: 0 0 8px rgba(220, 175, 80, 0.25);
}

/* COMPARISON CARD (правая колонка hero) */
.compare {
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 64px rgba(20, 34, 52, 0.14), 0 0 30px -15px var(--neon-glow);
  position: relative;
}
.compare-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
}
.term-dot { width: 11px; height: 11px; border-radius: 50%; }
.term-dot.r { background: #ff5f57; }
.term-dot.y { background: #febc2e; }
.term-dot.g { background: #28c840; }
.compare-title {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.05em;
}
.compare-body { padding: 28px 24px; }
.compare-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* metric-row (кликабельная строка с кейсом) */
.metric-row {
  display: block;
  width: 100%;
  padding: 18px 0;
  border: none;
  background: transparent;
  border-bottom: 1px dashed var(--line);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, padding 0.2s ease;
  position: relative;
}
.metric-row:hover {
  background: rgba(10, 138, 85, 0.03);
  padding-left: 12px;
  padding-right: 12px;
}
.metric-row:last-of-type { border-bottom: none; }
.metric-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.metric-icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--neon-dim);
  border: 1px solid var(--line);
  color: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.metric-name {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.metric-headline {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.metric-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--neon);
}
.metric-row:last-of-type .metric-num { color: var(--coral); }
.metric-what {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-0);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.metric-detail {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}
.metric-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: flex-end;
}
.metric-cta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-2);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, gap 0.2s;
}
.metric-cta span { color: var(--neon); transition: transform 0.2s; }
.metric-cta:hover { color: var(--neon); gap: 10px; }
@media (max-width: 700px) {
  .metric-row { padding: 14px 0; }
  .metric-num { font-size: 32px; }
  .metric-what { font-size: 15px; }
  .metric-detail { font-size: 12.5px; }
}

.floating-badge {
  position: absolute;
  top: -16px; right: -16px;
  background: var(--bg-0);
  border: 1px solid var(--neon);
  color: var(--neon);
  padding: 9px 14px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 0 20px var(--neon-glow);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}
.floating-badge .live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 6px var(--neon);
  animation: pulse 1.5s infinite;
}

/* СТЕК */
.stack-section {
  padding: 30px 0 34px;
  background: var(--bg-1);
  overflow: hidden;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(14, 24, 34, 0.06);
  border-bottom: 1px solid rgba(14, 24, 34, 0.06);
}
.stack-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-3);
  margin-bottom: 20px;
  padding: 0 24px;
  font-weight: 400;
}
.stack-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.stack-track {
  display: flex;
  align-items: center;
  gap: 56px;
  animation: scroll-stack 41.4s linear infinite;
  width: max-content;
  padding: 8px 0;
}
.stack-slider:hover .stack-track { animation-play-state: paused; }
.stack-item {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-3);
  opacity: 0.72;
  transition: opacity 0.3s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.stack-item:hover { opacity: 1; }
.stack-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--neon);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes scroll-stack { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTIONS */
.section { padding: 45px 0; position: relative; z-index: 2; }
.section-header {
  max-width: 800px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-header h2 { margin-bottom: 18px; }
.section-header p { font-size: 18px; color: var(--text-2); }
@media (max-width: 700px) { .section { padding: 72px 0; } }

/* PAIN — что болит у бизнеса до Б24 */
.pain-section { background: var(--bg-1); padding-top: 90px; padding-bottom: 90px; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .pain-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card {
  background: var(--bg-2);
  padding: 32px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.pain-card:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 18px 44px -18px rgba(20, 34, 52, 0.22);
  border-color: rgba(10, 138, 85, 0.25);
}
.pain-card:last-child {
  background: rgba(10, 138, 85, 0.07);
  border-color: rgba(10, 138, 85, 0.22);
}
@property --cta-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes ctaAngle { to { --cta-angle: 360deg; } }
.pain-card:last-child::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--cta-angle), rgba(10,138,85,0) 0deg, rgba(10,138,85,0) 18deg, #7dd3a8 70deg, rgba(10,138,85,0) 120deg, rgba(10,138,85,0) 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ctaAngle 5s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) { .pain-card:last-child::before { animation: none; } }
.pain-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(10, 138, 85, 0.10);
  border: 1px solid rgba(10, 138, 85, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
  margin-bottom: 18px;
}
.pain-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--text-0);
}
.pain-card p { font-size: 14px; line-height: 1.55; color: var(--text-2); }

/* SERVICES */
.services-section {
  padding: 90px 0 45px;
  background: var(--bg-0);
}
@media (max-width: 700px) { .services-section { padding: 64px 0 48px; } }
.services-header { margin: 0 auto 56px; max-width: 760px; text-align: center; }
.services-eyebrow.services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--neon);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--neon-dim);
  border: 1px solid var(--line-strong);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.services-eyebrow.services-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon);
  animation: pulse 1.8s infinite;
}
.services-section h2 {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--text-0);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -18px rgba(20, 34, 52, 0.22);
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(10, 138, 85, 0.10);
  border: 1px solid rgba(10, 138, 85, 0.20);
  color: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-card:last-child .service-icon {
  background: rgba(223, 86, 48, 0.10);
  border-color: rgba(223, 86, 48, 0.20);
  color: var(--coral);
}
.service-card:last-child {
  background: var(--bg-2);
  border-color: rgba(223, 86, 48, 0.25);
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.service-card:last-child::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--cta-angle), rgba(223,86,48,0) 0deg, rgba(223,86,48,0) 18deg, #ef9277 70deg, rgba(223,86,48,0) 120deg, rgba(223,86,48,0) 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ctaAngle 5s linear infinite;
  pointer-events: none;
  z-index: 3;
}
@media (prefers-reduced-motion: reduce) { .service-card:last-child::after { animation: none; } }
.service-card:last-child:hover {
  border-color: rgba(223, 86, 48, 0.25);
  box-shadow: 0 18px 44px -18px rgba(20, 34, 52, 0.22);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-0);
  margin-bottom: 12px;
}
.service-card > p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-1);
  margin-bottom: 18px;
}
.service-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 18px 20px;
  background: rgba(10, 138, 85, 0.06);
  border: 1px solid rgba(10, 138, 85, 0.16);
  border-radius: var(--radius-md);
}
.service-card:last-child .service-list {
  background: rgba(223, 86, 48, 0.06);
  border-color: rgba(223, 86, 48, 0.18);
}
.service-card:last-child .service-list li::before { color: var(--coral); }
.service-list li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
}
.service-list li:last-child { margin-bottom: 0; }
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--neon);
  font-weight: 700;
}

/* WHY (наши УТП — AI РОП и приложение Б24) */
.why-section { background: var(--bg-0); padding-top: 45px; padding-bottom: 90px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -18px rgba(20, 34, 52, 0.22);
}
.why-card:last-child {
  background: rgba(10, 138, 85, 0.07);
  border-color: rgba(10, 138, 85, 0.22);
}
.why-card:last-child::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--cta-angle), rgba(10,138,85,0) 0deg, rgba(10,138,85,0) 18deg, #7dd3a8 70deg, rgba(10,138,85,0) 120deg, rgba(10,138,85,0) 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ctaAngle 5s linear infinite;
  pointer-events: none;
  z-index: 3;
}
@media (prefers-reduced-motion: reduce) { .why-card:last-child::after { animation: none; } }
.why-card:last-child h3 { color: var(--neon); }
.why-card:last-child .why-list {
  background: rgba(10, 138, 85, 0.11);
}
.why-card-utp {
  border-color: var(--line);
  box-shadow: none;
}
.why-card-utp::after {
  content: 'НАША РАЗРАБОТКА';
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--neon);
  background: var(--neon-dim);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  padding: 4px 10px;
}
.why-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--neon-dim);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
  margin-bottom: 24px;
}
.why-card h3 {
  font-size: 24px;
  margin-bottom: 18px;
  color: var(--text-0);
}
.why-list {
  list-style: none;
  margin-top: 4px;
  padding: 8px 18px;
  background: rgba(10, 138, 85, 0.06);
  border: none;
  border-radius: var(--radius-md);
}
.why-list li {
  position: relative;
  padding: 9px 0 9px 30px;
  font-size: 13.5px;
  color: var(--text-1);
  line-height: 1.55;
}
.why-list li strong { color: var(--neon); font-weight: 700; }
.why-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 11px;
  width: 18px; height: 18px;
  background: rgba(10, 138, 85, 0.10);
  color: var(--neon);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SHOWCASE — кейсы крупными плитками */
.showcase-section { background: var(--bg-1); padding-top: 90px; }
.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.showcase-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: var(--bg-0);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.showcase-card:hover {
  border-color: var(--neon);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -8px rgba(20, 34, 52, 0.18);
}
@media (max-width: 900px) { .showcase-card { grid-template-columns: 1fr; } }
.showcase-image-wrap {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.showcase-bg-volhva {
  background:
    radial-gradient(circle at 30% 30%, rgba(10, 138, 85, 0.25), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(47, 198, 246, 0.15), transparent 60%),
    linear-gradient(135deg, #eef3f7 0%, #ffffff 100%);
}
.showcase-bg-airop {
  background:
    radial-gradient(circle at 20% 20%, rgba(223, 86, 48, 0.2), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(10, 138, 85, 0.15), transparent 60%),
    linear-gradient(135deg, #f3efe9 0%, #ffffff 100%);
}
.showcase-bg-app {
  background:
    radial-gradient(circle at 30% 70%, rgba(47, 198, 246, 0.25), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(10, 138, 85, 0.12), transparent 60%),
    linear-gradient(135deg, #e9f1f4 0%, #ffffff 100%);
}
.showcase-bg-sankera {
  background:
    radial-gradient(circle at 20% 80%, rgba(10, 138, 85, 0.10), transparent 55%),
    radial-gradient(circle at 75% 20%, rgba(47, 198, 246, 0.20), transparent 55%),
    linear-gradient(135deg, #e9f1f4 0%, #f4f7f9 60%, #ffffff 100%);
}
.showcase-bg-sankera .showcase-img-real {
  object-fit: cover;
  object-position: center 88%;
}
.showcase-img-real {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  border-radius: 0;
  border: none;
  box-shadow: none;
  display: block;
}
.showcase-mock {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-2);
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  width: 100%;
  max-width: 380px;
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px rgba(20, 34, 52, 0.12);
}
.showcase-mock-bar {
  display: flex;
  gap: 6px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.showcase-mock-bar span {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.showcase-mock-bar span:nth-child(1) { background: #ff5f57; }
.showcase-mock-bar span:nth-child(2) { background: #febc2e; }
.showcase-mock-bar span:nth-child(3) { background: #28c840; }
.showcase-mock-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 11.5px;
}
.showcase-mock-row:last-child { border-bottom: none; }
.showcase-mock-row .l { color: var(--text-3); }
.showcase-mock-row .v { color: var(--neon); font-weight: 600; }
.showcase-mock-row .v.amber { color: var(--amber); }
.showcase-mock-row .v.b24 { color: var(--b24); }

.showcase-content { padding: 38px 36px; display: flex; flex-direction: column; }
@media (max-width: 700px) { .showcase-content { padding: 28px 24px; } }
.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.showcase-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px 12px;
  white-space: nowrap;
}
.showcase-pill:first-child {
  color: var(--neon);
  background: var(--neon-dim);
  border-color: rgba(10, 138, 85, 0.18);
}
.showcase-content h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-0);
  margin-bottom: 6px;
  line-height: 1.1;
}
.showcase-stack {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.showcase-content p {
  font-size: 14.5px;
  color: var(--text-1);
  line-height: 1.6;
  margin-bottom: 22px;
}
.showcase-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 28px;
  padding: 20px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  margin-bottom: 22px;
}
.showcase-stat { min-width: 0; }
.showcase-stat-v {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 800;
  color: var(--neon);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
  white-space: nowrap;
}
.showcase-stats-row .showcase-stat:last-child .showcase-stat-v { color: var(--coral); }
.showcase-stat-l {
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.showcase-link {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--neon);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.showcase-link::after {
  content: '→';
  transition: transform 0.2s;
}
.showcase-card:hover .showcase-link::after { transform: translateX(4px); }

/* CASE-VOLHVA DETAIL — отдельный длинный блок под главный кейс */
.case-detail {
  background: var(--bg-0);
  padding: 48px 0 110px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 700px) { .case-detail { padding: 0 0 50px; } .case-detail-meta { justify-content: flex-start; width: 100%; } }
.case-detail-head { max-width: 880px; margin: 0 auto 56px; text-align: center; }
.case-detail-head h2 { margin-bottom: 18px; }
.case-detail-meta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.05em;
  margin-top: 18px;
}
.case-detail-meta strong { color: var(--text-1); font-weight: 600; }
.case-detail-meta a { color: var(--neon); text-decoration: none; }
.case-detail-meta a:hover { text-decoration: underline; }

.case-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .case-blocks { grid-template-columns: 1fr; } }
.case-block {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.case-block-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--neon);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.case-block h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-0);
  line-height: 1.2;
}
.case-block p { font-size: 14.5px; color: var(--text-1); line-height: 1.6; }

.case-forms-block {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  margin-bottom: 40px;
}
@media (max-width: 700px) { .case-forms-block { padding: 30px 22px; } }
.case-forms-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--neon);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.case-forms-block h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 32px;
  color: var(--text-0);
}
.case-forms-cat {
  margin-bottom: 26px;
}
.case-forms-cat:last-child { margin-bottom: 0; }
.case-forms-cat-title {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-0);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 14px;
  background: var(--bg-2);
  border-left: 3px solid var(--neon);
  margin-bottom: 14px;
}
.case-forms-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 700px) { .case-forms-list { grid-template-columns: 1fr; } }
.case-forms-list li {
  position: relative;
  padding: 14px 16px 14px 38px;
  font-size: 14px;
  color: var(--text-1);
  line-height: 1.5;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.case-forms-list li strong {
  color: var(--text-0);
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
}
.case-forms-list li::before {
  content: counter(form-num, decimal-leading-zero);
  counter-increment: form-num;
  position: absolute;
  left: 14px;
  top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--neon);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.case-forms-list { counter-reset: form-num; }

.case-result-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  background: var(--bg-1);
  border: 1px solid var(--neon);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 0 0 1px var(--neon-dim), 0 0 40px -10px var(--neon-glow);
}
@media (max-width: 900px) { .case-result-block { grid-template-columns: 1fr; padding: 28px 24px; } }
.case-result-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--neon);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.case-result-block h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--text-0);
}
.case-result-list { list-style: none; }
.case-result-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: var(--text-1);
  font-size: 14.5px;
  line-height: 1.55;
}
.case-result-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--neon);
  font-weight: 700;
}
.case-result-callout {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 16px;
  color: var(--text-1);
  line-height: 1.55;
  display: flex;
  align-items: center;
}

/* RENT CASE — приложение Рентабельность */
.rent-screenshot-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 16px;
}
@media (max-width: 900px) { .rent-screenshot-block { grid-template-columns: 1fr; padding: 26px; gap: 24px; } }
.rent-screenshot {
  background:
    radial-gradient(circle at 30% 30%, rgba(10, 138, 85, 0.18), transparent 60%),
    linear-gradient(135deg, #eef3f7 0%, #ffffff 100%);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--line);
}
.rent-screenshot img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(20, 34, 52, 0.14);
}
.rent-screenshot-text h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-0);
}
.rent-screenshot-text p {
  font-size: 14.5px;
  color: var(--text-1);
  line-height: 1.6;
}

.rent-problems {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 12px;
}
@media (max-width: 1000px) { .rent-problems { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .rent-problems { grid-template-columns: 1fr; } }
.rent-problem {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}
.rent-problem-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--neon);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.rent-problem h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.rent-problem p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}

.rent-roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
}
@media (max-width: 900px) { .rent-roles { grid-template-columns: 1fr; } }
.rent-role {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}
.rent-role-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--neon-dim);
  border: 1px solid var(--line-strong);
  color: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.rent-role h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.rent-role-list { list-style: none; }
.rent-role-list li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: 13.5px;
  color: var(--text-1);
  line-height: 1.5;
}
.rent-role-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--neon);
  font-weight: 700;
  font-family: var(--font-mono);
}

.rent-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 800px) { .rent-testimonials { grid-template-columns: 1fr; } }
.rent-testimonial {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
}
.rent-testimonial-quote {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 16px;
  color: var(--text-1);
  line-height: 1.55;
  margin-bottom: 22px;
  letter-spacing: -0.005em;
}
.rent-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.rent-testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--neon-dim);
  flex-shrink: 0;
}
.rent-testimonial-name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-0);
  letter-spacing: -0.01em;
}
.rent-testimonial-role {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-3);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.rent-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 800px) { .rent-plans { grid-template-columns: 1fr; } }
.rent-plan {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.rent-plan-featured {
  border-color: var(--neon);
  box-shadow: 0 0 0 1px var(--neon-dim), 0 0 30px -10px var(--neon-glow);
  position: relative;
}
.rent-plan-featured::before {
  content: 'СО СКИДКОЙ 50%';
  position: absolute;
  top: -10px; right: 24px;
  background: var(--amber);
  color: #1a1408;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.rent-plan-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--neon);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.rent-plan-tagline {
  font-size: 13.5px;
  color: var(--text-2);
  margin-bottom: 22px;
  line-height: 1.5;
  min-height: 38px;
}
.rent-plan-list {
  list-style: none;
  padding: 18px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  margin-bottom: 20px;
  flex-grow: 1;
}
.rent-plan-list li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 13.5px;
  color: var(--text-1);
  line-height: 1.5;
}
.rent-plan-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--neon);
  font-weight: 700;
}
.rent-plan-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-0);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.rent-plan-old {
  font-size: 18px;
  color: var(--text-3);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 8px;
}
.rent-plan-period {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.rent-author {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 40px;
}
@media (max-width: 700px) { .rent-author { grid-template-columns: 1fr; text-align: center; padding: 26px; } }
.rent-author-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--neon-dim);
  margin: 0 auto;
}
@media (max-width: 700px) { .rent-author-photo { width: 140px; height: 140px; } }
.rent-author-text h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-0);
  margin: 8px 0 4px;
  letter-spacing: -0.02em;
}
.rent-author-role {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--neon);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.rent-author-text p {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 16px;
  color: var(--text-1);
  line-height: 1.6;
}

/* PROCESS — этапы работ */
.process-section { background: var(--bg-1); padding-bottom: 90px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }
.process-card { background: var(--bg-2); padding: 32px 24px; }
.process-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.process-head .process-num { margin-bottom: 0; }
.process-head .process-icon { margin-bottom: 0; }
.process-icon { width: 40px; height: 40px; border-radius: 11px; background: rgba(223, 86, 48, 0.10); border: 1px solid rgba(223, 86, 48, 0.20); display: flex; align-items: center; justify-content: center; color: var(--coral); margin-bottom: 18px; }
.process-icon svg { width: 20px; height: 20px; }
.process-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  opacity: 0.6;
}
.process-card h3 {
  font-size: 18px;
  font-family: var(--font-display);
  margin-bottom: 8px;
  color: var(--text-0);
}
.process-card p { font-size: 12.5px; color: var(--text-2); line-height: 1.5; }

/* PRICING */
.pricing-section { background: var(--bg-0); position: relative; overflow: hidden; padding: 90px 0; }
.pricing-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, var(--neon-glow) 0%, transparent 70%);
  opacity: 0.25;
  filter: blur(40px);
  z-index: 0;
}
.slots-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border: none;
  background: rgba(223, 86, 48, 0.08);
  color: var(--text-1);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}
.slots-banner strong { color: #b8431f; font-weight: 700; }
.slots-banner-wrap { display: flex; justify-content: center; }
.pulse-amber {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
  animation: pulse 1.5s infinite;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}
.pricing-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.pricing-card.featured {
  border: 2px solid var(--neon);
  background: var(--bg-2);
  box-shadow: 0 8px 32px rgba(10, 138, 85, 0.14);
  position: relative;
}
.pricing-card.featured .pricing-price { color: var(--neon); }
.pricing-card.featured::before {
  content: 'ПОПУЛЯРНЫЙ';
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--bg-0);
  background: var(--neon);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 700;
}
.pricing-name {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--coral);
  background: rgba(223, 86, 48, 0.10);
  border: 1px solid rgba(223, 86, 48, 0.20);
  border-radius: 100px;
  padding: 5px 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.pricing-card.featured .pricing-name {
  color: var(--neon);
  background: var(--neon-dim);
  border-color: rgba(10, 138, 85, 0.20);
}
.pricing-tagline {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 22px;
  min-height: 38px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-0);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
  order: 2;
  margin-top: auto;
  padding-top: 20px;
}
.pricing-period {
  font-size: 13.5px;
  color: var(--text-3);
  margin-bottom: 20px;
  font-family: var(--font-mono);
  order: 3;
}
.pricing-period strong { color: var(--text-1); }
.pricing-features {
  list-style: none;
  padding: 14px 18px;
  margin: 0 0 24px;
  background: rgba(223, 86, 48, 0.06);
  border-radius: var(--radius-md);
  order: 1;
}
.pricing-card .btn { order: 4; }
.pricing-card.featured .pricing-features {
  background: rgba(10, 138, 85, 0.08);
}
.pricing-features li {
  position: relative;
  padding: 7px 0 7px 28px;
  font-size: 13px;
  color: var(--text-1);
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 7px;
  width: 17px; height: 17px;
  background: rgba(223, 86, 48, 0.14);
  color: var(--coral);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-card.featured .pricing-features li::before { background: rgba(10, 138, 85, 0.14); color: var(--neon); }
.pricing-foot {
  text-align: center;
  margin-top: 36px;
  font-size: 14px;
  color: var(--text-2);
  position: relative;
  z-index: 2;
}
.pricing-foot a { color: var(--neon); text-decoration: none; }
.pricing-foot a:hover { text-decoration: underline; }
.pricing-rate {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-3);
}

/* GUARANTEES */
.guarantee-section { background: var(--bg-1); padding: 90px 0; }
.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .guarantee-grid { grid-template-columns: 1fr; } }
.guarantee-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.guarantee-card > p { flex: 1; }
.guarantee-card .btn { margin-top: auto; }
.guarantee-card-primary {
  border-color: rgba(10, 138, 85, 0.22);
  background: rgba(10, 138, 85, 0.06);
  box-shadow: none;
  z-index: 0;
  overflow: hidden;
}
.guarantee-card-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--cta-angle), rgba(10,138,85,0) 0deg, rgba(10,138,85,0) 18deg, #7dd3a8 70deg, rgba(10,138,85,0) 120deg, rgba(10,138,85,0) 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ctaAngle 5s linear infinite;
  pointer-events: none;
  z-index: 3;
}
@media (prefers-reduced-motion: reduce) { .guarantee-card-primary::after { animation: none; } }
.guarantee-card:not(.guarantee-card-primary) .guarantee-card-tag { color: var(--coral); }
.guarantee-card:not(.guarantee-card-primary) .guarantee-meta {
  background: rgba(223, 86, 48, 0.08);
  border-color: rgba(223, 86, 48, 0.18);
}
.guarantee-card:not(.guarantee-card-primary) .guarantee-meta-row { border-bottom-color: rgba(223, 86, 48, 0.22); }
.guarantee-card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--neon);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.guarantee-stamp {
  position: absolute;
  top: 28px; right: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.guarantee-stamp .big {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(10, 138, 85, 0.12);
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 800;
  color: var(--neon);
  letter-spacing: -0.03em;
  line-height: 1;
}
.guarantee-stamp span:not(.big) {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.guarantee-stamp-secondary .big { color: var(--coral); background: rgba(223, 86, 48, 0.12); }
.guarantee-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 14px;
  max-width: 70%;
}
.guarantee-card > p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: calc(100% - 110px);
}
.guarantee-meta {
  background: rgba(10, 138, 85, 0.11);
  border: 1px solid rgba(10, 138, 85, 0.18);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.guarantee-meta-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(10, 138, 85, 0.22);
  font-size: 13.5px;
}
.guarantee-meta-row:last-child { border-bottom: none; }
.guarantee-meta-row span { color: var(--text-3); }
.guarantee-meta-row strong { color: var(--text-0); font-weight: 600; font-family: var(--font-mono); }

/* FAQ */
.faq-section { background: radial-gradient(ellipse 55% 50% at 12% 5%, rgba(10, 138, 85, 0.07), transparent 60%), var(--bg-0); padding-top: 90px; }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}
@media (max-width: 900px) { .faq-layout { grid-template-columns: 1fr; gap: 40px; } }
.faq-eyebrow.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--neon);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--neon-dim);
  border: 1px solid var(--line-strong);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.faq-eyebrow.faq-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon);
  animation: pulse 1.8s infinite;
}
.faq-header h2 {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.faq-subhead { font-size: 15px; color: var(--text-2); line-height: 1.6; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item details { padding: 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-0);
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-3);
  flex-shrink: 0;
  transition: all 0.25s;
  position: relative;
}
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.25s;
}
.faq-toggle::before { width: 10px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 10px; }
.faq-item details[open] .faq-toggle {
  background: var(--neon-dim);
  color: var(--neon);
  border-color: var(--neon);
}
.faq-item details[open] .faq-toggle::after { transform: scaleY(0); }
.faq-answer {
  padding: 0 26px 24px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.65;
}
.faq-answer p { margin-bottom: 12px; color: var(--text-2); }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: var(--text-0); }

/* FINAL CTA */
.final-cta {
  padding: 90px 0 90px;
  background:
    radial-gradient(ellipse at center, var(--neon-dim) 0%, transparent 60%),
    var(--bg-0);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.final-cta__grid {
  display: grid;
  grid-template-columns: 1fr minmax(400px, 450px);
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .final-cta__grid { grid-template-columns: 1fr; gap: 36px; } }
.final-cta__card {
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px -22px rgba(20, 34, 52, 0.20);
  padding: 26px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.final-cta__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--cta-angle), rgba(10,138,85,0) 0deg, rgba(10,138,85,0) 18deg, #7dd3a8 70deg, rgba(10,138,85,0) 120deg, rgba(10,138,85,0) 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ctaAngle 5s linear infinite;
  pointer-events: none;
  z-index: 3;
}
@media (prefers-reduced-motion: reduce) { .final-cta__card::after { animation: none; } }
.final-cta::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10, 138, 85, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 138, 85, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, black 15%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 15%, transparent 65%);
  pointer-events: none;
}
.final-cta > .container { position: relative; z-index: 1; }
@media (max-width: 700px) { .final-cta { padding: 72px 0; } }

/* ── Адаптив: вертикальный ритм и точечные фиксы на мобиле ── */
@media (max-width: 700px) {
  .pain-section { padding-top: 50px; padding-bottom: 50px; }
  .services-section { padding: 50px 0; }
  .why-section { padding-top: 50px; padding-bottom: 50px; }
  .showcase-section { padding-top: 50px; padding-bottom: 50px; }
  .process-section { padding-top: 50px; padding-bottom: 50px; }
  .pricing-section { padding: 50px 0; }
  .guarantee-section { padding: 50px 0; }
  .faq-section { padding-top: 50px; padding-bottom: 50px; }
  .final-cta { padding: 50px 0; }
  .guarantee-card { padding: 28px 22px; }
  .guarantee-card > p { max-width: none; }
  .pricing-card { padding: 28px 22px; }
  .why-card { padding: 26px 22px; }
  .final-cta__card { padding: 22px; }
  .guarantee-stamp { position: static; align-items: center; flex-direction: row; gap: 12px; margin-bottom: 16px; }
  .guarantee-card h3 { max-width: 100%; }
  .guarantee-stamp .big { width: 64px; height: 64px; font-size: 19px; }
}
@media (max-width: 420px) {
  .showcase-stats-row { gap: 14px 12px; }
  .showcase-stat-v { font-size: 26px; }
}
.final-cta h2 {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  line-height: 1.05;
}
.final-cta__left p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 0 28px;
}
.final-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin: 0;
}
.final-bullet {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-1);
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.final-bullet::before {
  content: '✓';
  color: var(--neon);
  font-weight: 700;
}
.final-form {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0 0 12px;
}
.final-field { display: flex; flex-direction: column; gap: 6px; }
.final-field__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.final-form input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  background: var(--bg-0);
  color: var(--text-0);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.final-form input:focus { border-color: var(--neon); }
.final-form input::placeholder { color: var(--text-3); }
.final-form button { width: 100%; justify-content: center; }
.final-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  margin-top: 16px;
  text-align: center;
}
.final-note a { color: var(--neon); }
.form-status {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--neon);
  margin-top: 12px;
  min-height: 20px;
}
.form-status.error { color: var(--danger); }

/* FOOTER */
footer {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  padding: 56px 0 36px;
  position: relative;
  z-index: 2;
}
.footer-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .footer-row { grid-template-columns: 1fr; gap: 28px; } }
.footer-col-brand .logo-text { font-size: 22px; margin-bottom: 8px; }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  margin-top: 8px;
}
.footer-col-contacts { display: flex; flex-direction: column; gap: 6px; }
.footer-phone, .footer-email {
  color: var(--text-1);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-phone:hover, .footer-email:hover { color: var(--neon); }
.footer-col-legal {
  font-size: 13px;
  color: var(--text-3);
  font-family: var(--font-mono);
  line-height: 1.7;
}
.footer-col-legal a { color: var(--text-2); text-decoration: none; }
.footer-col-legal a:hover { color: var(--neon); }

/* REVEAL ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.7s ease forwards;
}
.fade-up.delay-1 { animation-delay: 0.08s; }
.fade-up.delay-2 { animation-delay: 0.16s; }
.fade-up.delay-3 { animation-delay: 0.24s; }
.fade-up.delay-4 { animation-delay: 0.32s; }
@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}
/* staggered rise-in для строк hero-терминала (как на главной) */
.metric-row {
  opacity: 0;
  transform: translateY(14px);
  animation: fade-up 0.6s var(--ease-out, ease) forwards;
}
.metric-row:nth-of-type(1) { animation-delay: 0.45s; }
.metric-row:nth-of-type(2) { animation-delay: 0.58s; }
.metric-row:nth-of-type(3) { animation-delay: 0.71s; }
@media (prefers-reduced-motion: reduce) { .metric-row { opacity: 1; transform: none; animation: none; } }
.reveal { opacity: 1; }
.reveal > * { opacity: 0; transition: opacity 0.7s ease; }
.reveal.visible > * { opacity: 1; }

/* staggered card rise-in */
.reveal .pain-grid > *, .reveal .why-grid > *, .reveal .services-grid > *,
.reveal .proc-bento > *, .reveal .pricing-bento > *, .reveal .testimonials-grid > *,
.reveal .guarantee-grid > *, .reveal .faq-item, .reveal .cases-track > *, .reveal .showcase-card {
  opacity: 0; transform: translateY(26px);
  transition: opacity .55s var(--ease-out, ease), transform .55s var(--ease-out, ease);
}
.reveal.visible .pain-grid > *, .reveal.visible .why-grid > *, .reveal.visible .services-grid > *,
.reveal.visible .proc-bento > *, .reveal.visible .pricing-bento > *, .reveal.visible .testimonials-grid > *,
.reveal.visible .guarantee-grid > *, .reveal.visible .faq-item, .reveal.visible .cases-track > *, .reveal.visible .showcase-card {
  opacity: 1; transform: none;
}
.reveal.visible :is(.pain-grid,.why-grid,.services-grid,.proc-bento,.pricing-bento,.testimonials-grid,.guarantee-grid,.cases-track) > *:nth-child(2){transition-delay:.07s}
.reveal.visible :is(.pain-grid,.why-grid,.services-grid,.proc-bento,.pricing-bento,.testimonials-grid,.guarantee-grid,.cases-track) > *:nth-child(3){transition-delay:.14s}
.reveal.visible :is(.pain-grid,.why-grid,.services-grid,.proc-bento,.pricing-bento,.testimonials-grid,.guarantee-grid,.cases-track) > *:nth-child(4){transition-delay:.21s}
.reveal.visible :is(.pain-grid,.why-grid,.services-grid,.proc-bento,.pricing-bento,.testimonials-grid,.guarantee-grid,.cases-track) > *:nth-child(5){transition-delay:.28s}
.reveal.visible :is(.pain-grid,.why-grid,.services-grid,.proc-bento,.pricing-bento,.testimonials-grid,.guarantee-grid,.cases-track) > *:nth-child(6){transition-delay:.35s}
.reveal.visible .faq-item:nth-child(2){transition-delay:.05s}
.reveal.visible .faq-item:nth-child(3){transition-delay:.10s}
.reveal.visible .faq-item:nth-child(4){transition-delay:.15s}
.reveal.visible .faq-item:nth-child(5){transition-delay:.20s}
.reveal.visible .faq-item:nth-child(6){transition-delay:.25s}
.reveal.visible .faq-item:nth-child(7){transition-delay:.30s}
.reveal.visible .faq-item:nth-child(8){transition-delay:.35s}

/* caseboard bar-chart grow (hero, on load) */
@media (prefers-reduced-motion: no-preference) {
  .cb__bar { transform-origin: bottom; animation: cb-grow .65s var(--ease-out, ease) both; }
  .cb__bar:nth-child(1){animation-delay:.55s}
  .cb__bar:nth-child(2){animation-delay:.62s}
  .cb__bar:nth-child(3){animation-delay:.69s}
  .cb__bar:nth-child(4){animation-delay:.76s}
  .cb__bar:nth-child(5){animation-delay:.83s}
  .cb__bar:nth-child(6){animation-delay:.90s}
}
@keyframes cb-grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

@media (prefers-reduced-motion: reduce) {
  .reveal .pain-grid > *, .reveal .why-grid > *, .reveal .services-grid > *,
  .reveal .proc-bento > *, .reveal .pricing-bento > *, .reveal .testimonials-grid > *,
  .reveal .guarantee-grid > *, .reveal .faq-item, .reveal .cases-track > *, .reveal .showcase-card {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* SAFETY NETS */
@media (max-width: 700px) {
  .container { padding: 0 16px; }
  .hero { padding: 50px 0 60px; }
  .hero-trust { gap: 16px; }
  h1 { font-size: 38px !important; }
}

/* === MODALS === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 9, 12, 0.85);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 24px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 700px) { .modal-overlay { padding: 24px 12px; } }
.modal {
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  max-width: 920px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 100px rgba(20, 34, 52, 0.16);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--text-1);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 5;
}
.modal-close:hover {
  background: var(--neon-dim);
  color: var(--neon);
  border-color: var(--neon);
}
.modal-header {
  padding: 40px 48px 26px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 700px) { .modal-header { padding: 32px 24px 22px; } }
.modal-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--neon);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}
.modal-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-0);
  margin-bottom: 12px;
}
.modal-meta {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}
.modal-meta strong { color: var(--text-1); font-weight: 600; }
.modal-meta a { color: var(--neon); text-decoration: none; }
.modal-meta a:hover { text-decoration: underline; }
.modal-body {
  padding: 32px 48px 40px;
}
@media (max-width: 700px) { .modal-body { padding: 26px 24px 32px; } }

.modal-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
@media (max-width: 800px) { .modal-blocks { grid-template-columns: 1fr; } }
.modal-block {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}
.modal-block-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--neon);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.modal-block h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.modal-block p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
}

.modal-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.modal-section:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.modal-section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--neon);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.modal-section h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.modal-section > p {
  font-size: 14.5px;
  color: var(--text-1);
  line-height: 1.6;
  margin-bottom: 12px;
}

.modal-forms-cat {
  margin-bottom: 18px;
}
.modal-forms-cat:last-child { margin-bottom: 0; }
.modal-forms-cat-title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-0);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 12px;
  background: var(--bg-2);
  border-left: 3px solid var(--neon);
  margin-bottom: 10px;
}
.modal-forms-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  counter-reset: m-form;
}
@media (max-width: 700px) { .modal-forms-list { grid-template-columns: 1fr; } }
.modal-forms-list li {
  position: relative;
  padding: 11px 14px 11px 36px;
  font-size: 13.5px;
  color: var(--text-1);
  line-height: 1.45;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.modal-forms-list li strong {
  color: var(--text-0);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.modal-forms-list li::before {
  content: counter(m-form, decimal-leading-zero);
  counter-increment: m-form;
  position: absolute;
  left: 12px;
  top: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--neon);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.modal-result {
  background: var(--bg-2);
  border: 1px solid var(--neon);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: 0 0 0 1px var(--neon-dim);
}
.modal-result-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
}
@media (max-width: 700px) { .modal-result-list { grid-template-columns: 1fr; } }
.modal-result-list li {
  position: relative;
  padding: 7px 0 7px 24px;
  color: var(--text-1);
  font-size: 13.5px;
  line-height: 1.5;
}
.modal-result-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--neon);
  font-weight: 700;
}

.modal-screenshot {
  margin: 18px 0 24px;
  background:
    radial-gradient(circle at 30% 30%, rgba(10, 138, 85, 0.12), transparent 60%),
    linear-gradient(135deg, #eef3f7 0%, #ffffff 100%);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--line);
}
.modal-screenshot img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 24px 50px rgba(20, 34, 52, 0.14);
  display: block;
}

.modal-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}
@media (max-width: 700px) { .modal-quotes { grid-template-columns: 1fr; } }
.modal-quote {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}
.modal-quote-text {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 14.5px;
  color: var(--text-1);
  line-height: 1.55;
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}
.modal-quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.modal-quote-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--neon-dim);
  flex-shrink: 0;
}
.modal-quote-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-0);
}
.modal-quote-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.modal-author {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-top: 18px;
}
@media (max-width: 600px) { .modal-author { flex-direction: column; text-align: center; } }
.modal-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--neon-dim);
  flex-shrink: 0;
}
.modal-author-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 2px;
}
.modal-author-role {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--neon);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.modal-author-quote {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 14px;
  color: var(--text-1);
  line-height: 1.55;
}

body.modal-open { overflow: hidden; }
/* /MODALS === */


/* ===== unified ITC chrome ===== */
@keyframes hub-chat-pulse { 0%{box-shadow:0 0 0 0 rgba(10,138,85,.5);} 70%{box-shadow:0 0 0 16px rgba(10,138,85,0);} 100%{box-shadow:0 0 0 0 rgba(10,138,85,0);} }

.hub-header { position: sticky; top: 0px; z-index: 90; background: rgba(255, 255, 255, 0.82); backdrop-filter: blur(20px); border-bottom: 1px solid var(--line); }
.hub-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 24px; max-width: 1240px; margin: 0px auto; }
.hub-nav { display: flex; align-items: center; gap: 26px; }
.hub-nav a { color: var(--text-2); font-size: 14px; font-weight: 500; transition: color 0.2s; text-decoration: none; }
.hub-nav a:hover { color: var(--neon); }
.hub-nav__item { position: relative; }
.hub-nav__trigger { display: inline-flex; align-items: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 0px; font-family: var(--font-sans); font-size: 14px; font-weight: 500; color: var(--text-2); transition: color 0.2s; }
.hub-nav__trigger:hover, .hub-nav__trigger.is-open { color: var(--neon); }
.hub-nav__caret { transition: transform 0.25s; }
.hub-nav__trigger.is-open .hub-nav__caret { transform: rotate(180deg); }
.hub-mega { position: absolute; left: 0px; right: 0px; top: 100%; background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(24px); border-bottom: 1px solid var(--line); box-shadow: rgba(20, 34, 52, 0.22) 0px 24px 48px -24px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 0.22s, transform 0.22s, visibility 0.22s; z-index: 89; }
.hub-mega.is-open { opacity: 1; visibility: visible; transform: translateY(0px); }
.hub-mega__inner { display: grid; grid-template-columns: 280px 1fr; gap: 48px; padding: 40px 24px 44px; align-items: start; }
.hub-mega__kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--neon); margin-bottom: 14px; }
.hub-mega__lead-title { font-family: var(--font-display); font-weight: 600; font-size: 24px; letter-spacing: -0.02em; line-height: 1.15; color: var(--text-0); margin-bottom: 12px; }
.hub-mega__lead-sub { font-size: 14px; line-height: 1.55; color: var(--text-2); max-width: 240px; }
.hub-mega__grid--vert { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hub-mega__card { display: block; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius-md); text-decoration: none; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; background: var(--bg-1); }
.hub-mega__card:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -18px rgba(20,34,52,.30); }
.hub-mega__card-title { font-family: var(--font-sans); font-weight: 700; font-size: 15px; color: var(--text-0); margin-bottom: 4px; }
.hub-mega__card-sub { font-size: 13px; color: var(--text-2); line-height: 1.45; margin-bottom: 10px; }
.hub-mega__card-dom { font-family: var(--font-mono); font-size: 12px; color: var(--neon); font-weight: 500; }
.hub-mega__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.hub-mega__col-title { font-family: var(--font-sans); font-weight: 700; font-size: 13px; letter-spacing: 0.02em; color: var(--text-0); padding-bottom: 12px; margin-bottom: 8px; border-bottom: 1px solid var(--line); }
.hub-mega__list { list-style: none; padding: 0px; margin: 0px; }
.hub-mega__list li { margin: 0px; }
.hub-mega__list a { display: block; padding: 8px 0px; font-size: 14px; color: var(--text-1); font-weight: 500; transition: color 0.2s, padding-left 0.2s; }
.hub-mega__list a:hover { color: var(--neon); padding-left: 5px; }
.hub-header__cta { display: flex; align-items: center; gap: 16px; }
.hub-phone { font-family: var(--font-sans); font-size: 14px; color: var(--text-1); white-space: nowrap; text-decoration: none; }
.hub-phone:hover { color: var(--neon); }
@media (max-width: 960px){ .hub-nav, .hub-phone { display: none; } .hub-mega { display: none; } }

.hub-footer { background: #ffffff; border-top: 1px solid var(--line); padding: 56px 0px 40px; position: relative; z-index: 2; }
.hub-footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 36px 48px; align-items: start; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
@media (max-width: 880px){ .hub-footer__top { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 520px){ .hub-footer__top { display: grid; grid-template-columns: 1fr; } }
.hub-footer__brandcol { display: flex; flex-direction: column; gap: 14px; }
.hub-footer__contact { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.hub-footer__contact a { color: var(--text-1); text-decoration: none; }
.hub-footer__contact a:hover { color: var(--neon); }
.hub-footer__phone { font-size: 18px; font-weight: 700; color: var(--text-0); }
.hub-footer__col-h { font-family: var(--font-sans); font-size: 11px; color: var(--text-3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.hub-footer__links { display: flex; flex-direction: column; gap: 9px; }
.hub-footer__links a { font-size: 14px; color: var(--text-2); text-decoration: none; }
.hub-footer__links a:hover { color: var(--neon); }
.hub-footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 24px; }
.hub-footer__copy { font-family: var(--font-sans); font-size: 11px; color: var(--text-3); }
.hub-footer__bottom a { font-size: 12px; color: var(--text-3); text-decoration: underline; }

.hub-chat { position: fixed; right: 24px; bottom: 24px; z-index: 200; }
.hub-chat__launcher { position: relative; width: 62px; height: 62px; border-radius: 50%; background: var(--neon); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: rgba(10, 138, 85, 0.55) 0px 14px 32px -10px; transition: transform 0.25s, box-shadow 0.25s; margin-left: auto; }
.hub-chat__launcher:hover { transform: translateY(-3px) scale(1.04); box-shadow: rgba(10, 138, 85, 0.65) 0px 20px 40px -12px; }
.hub-chat__launcher.is-open { background: var(--text-0); }
.hub-chat__launcher-pulse { position: absolute; inset: 0px; border-radius: 50%; box-shadow: rgba(10, 138, 85, 0.5) 0px 0px 0px 0px; animation: 2.4s ease-out 0s infinite normal none running hub-chat-pulse; }
@media (prefers-reduced-motion: reduce){ .hub-chat__launcher-pulse { animation: none; } }
.hub-chat__panel { position: absolute; right: 0px; bottom: 76px; width: 380px; max-width: calc(-32px + 100vw); background: var(--bg-1); border: 1px solid var(--line); border-radius: 20px; box-shadow: rgba(20, 34, 52, 0.4) 0px 30px 70px -24px; overflow: hidden; display: flex; flex-direction: column; max-height: min(640px, -120px + 100vh); opacity: 0; visibility: hidden; transform: translateY(16px) scale(0.97); transform-origin: right bottom; transition: opacity 0.26s, transform 0.26s, visibility 0.26s; }
.hub-chat__panel.is-open { opacity: 1; visibility: visible; transform: translateY(0px) scale(1); }
.hub-chat__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.hub-chat__head-id { display: flex; align-items: center; gap: 12px; }
.hub-chat__name { font-family: var(--font-sans); font-weight: 700; font-size: 16px; color: var(--text-0); display: flex; align-items: center; gap: 8px; }
.hub-chat__bot { font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-3); background: var(--bg-3); padding: 2px 7px; border-radius: var(--radius-pill); }
.hub-chat__status { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-2); margin-top: 3px; }
.hub-chat__status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--neon); box-shadow: rgba(10, 138, 85, 0.18) 0px 0px 0px 3px; }
.hub-chat__close { background: none; border: none; cursor: pointer; color: var(--text-3); padding: 4px; border-radius: 8px; transition: color 0.2s, background 0.2s; display: flex; }
.hub-chat__close:hover { color: var(--text-0); background: var(--bg-3); }
.hub-chat__body { flex: 1 1 0%; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 14px; background: var(--bg-1); }
.hub-chat__row { display: flex; gap: 8px; align-items: flex-end; max-width: 90%; }
.hub-chat__avatar { flex-shrink: 0; }
.hub-chat__bubble { font-size: 14px; line-height: 1.55; padding: 12px 15px; border-radius: 16px; }
.hub-chat__row--bot .hub-chat__bubble { background: var(--bg-2); color: var(--text-1); border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.hub-chat__quick { display: flex; flex-direction: column; gap: 8px; padding: 0px 18px 8px; }
.hub-chat__chip { text-align: left; font-family: var(--font-sans); font-size: 13.5px; font-weight: 500; color: var(--text-1); background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 11px 14px; cursor: pointer; transition: border-color 0.2s, color 0.2s, transform 0.2s; }
.hub-chat__chip:hover { border-color: var(--neon); color: var(--neon); transform: translateX(2px); }
.hub-chat__foot { display: flex; gap: 10px; padding: 14px 18px 18px; border-top: 1px solid var(--line); background: var(--bg-2); }
.hub-chat__foot-btn { flex: 1 1 0%; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; font-weight: 700; padding: 11px 0px; border-radius: 11px; text-decoration: none; transition: opacity 0.2s, transform 0.2s; }
.hub-chat__foot-btn:hover { transform: translateY(-2px); opacity: 0.92; }
.hub-chat__foot-btn--tg { background: rgb(42, 171, 238); color: rgb(255, 255, 255); }
.hub-chat__foot-btn--max { background: linear-gradient(135deg, rgb(43, 140, 255) 0%, rgb(124, 77, 255) 100%); color: rgb(255, 255, 255); }
.hub-chat__foot-btn--max svg { color: rgb(255, 255, 255); }
@media (max-width: 520px){ .hub-chat { right: 16px; bottom: 16px; } .hub-chat__panel { bottom: 72px; } }

.itc-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 28px; border-radius: 8px; font-family: var(--font-sans); font-size: 15px; font-weight: 600; cursor: pointer; border: none; text-decoration: none; white-space: nowrap; transition: all var(--dur-fast, .2s) ease; }
.itc-btn--sm { padding: 12px 22px; font-size: 14px; }
.itc-btn--primary { background: var(--neon); color: var(--bg-0); box-shadow: var(--glow-btn); }
.itc-btn--primary:hover { background: var(--neon-bright); transform: translateY(-2px); box-shadow: 0 0 0 1px var(--neon-bright), 0 0 40px -3px var(--neon-glow); }

.itc-logo { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1; }
.itc-logo__word { font-family: var(--font-logo); font-size: 22px; font-weight: 700; letter-spacing: -0.01em; line-height: 1; text-transform: uppercase; }
.itc-logo__itc, .itc-logo__media { color: var(--text-0); }
.itc-logo__dot { color: var(--neon); margin: 0px 1px; }
.itc-logo--muted .itc-logo__itc, .itc-logo--muted .itc-logo__media { color: rgba(255, 255, 255, 0.92); }
.itc-logo__tagline { font-family: var(--font-mono); font-size: 10px; color: var(--neon); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-top: 4px; white-space: nowrap; }
body[data-cap="plain"] .itc-logo__tagline { font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.01em; text-transform: none; color: var(--text-3); }
body[data-theme="light"] .itc-logo--muted .itc-logo__itc, body[data-theme="light"] .itc-logo--muted .itc-logo__media { color: var(--text-0); }

.hub-mega .hub-mega__inner{padding:40px 24px 44px;}

