/* ═══════════════════════════════════════════════════
   AntiBlock Landing — styles.css
   Design: "Clean Intelligence" | FaraMirAI
   Ref: egz-team.ru style
   ═══════════════════════════════════════════════════ */

:root {
  --yellow: #ffe34e;
  --yellow-dark: #f0d230;
  --yellow-glow: rgba(255,227,78,0.25);
  --blue: #0145ff;
  --blue-dark: #0038d4;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --bg-dark: #153959;
  --bg-dark-deep: #0d2640;
  --border: rgba(0,2,25,0.08);
  --border-yellow: rgba(255,227,78,0.4);
  --text: #000219;
  --text-heading: #153959;
  --muted: #6b7b8d;
  --green: #2ECC71;
  --red-err: #ff4757;
  --amber: #F5A623;
  --font: 'Inter', Arial, sans-serif;
  --shadow-sm: 0 4px 12px rgba(0,11,48,0.06);
  --shadow-md: 0 8px 24px rgba(0,11,48,0.10);
  --shadow-lg: 0 15px 30px -10px rgba(0,11,48,0.15);
  --shadow-btn: 0 15px 30px -10px rgba(0,11,48,0.20);
  --radius-pill: 122px;
  --radius-card: 20px;
  --radius-lg: 40px;
  --radius-btn: 50px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 5%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-weight: 700; font-size: 1.5rem;
  color: var(--text-heading); text-decoration: none;
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo span { color: var(--blue); }
.nav-menu {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-menu a {
  color: var(--muted); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--text); }
.nav-menu a.active {
  color: var(--text-heading); font-weight: 600;
  border-bottom: 2px solid var(--yellow); padding-bottom: 2px;
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-social {
  display: flex; gap: 10px;
}
.nav-social a {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-alt); color: var(--muted);
  text-decoration: none; font-size: 0.9rem;
  transition: all 0.2s;
}
.nav-social a:hover { background: var(--yellow); color: var(--text); }
.nav-cta {
  background: var(--yellow); color: var(--text);
  font-weight: 600; font-size: 0.85rem;
  text-decoration: none;
  padding: 10px 24px; border-radius: var(--radius-pill);
  transition: all 0.2s;
  box-shadow: var(--shadow-btn);
}
.nav-cta:hover { background: var(--yellow-dark); transform: translateY(-1px); }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 99; padding: 32px 5%;
  flex-direction: column; gap: 8px;
  animation: slideDown 0.3s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; padding: 16px 0;
  font-size: 1.2rem; font-weight: 500;
  color: var(--text); text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu .nav-cta {
  margin-top: 16px; text-align: center; display: block;
  font-size: 1rem; padding: 16px 24px;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: calc(100vh - 72px - 44px); /* viewport minus nav minus urgency bar */
  padding: 60px 5%;
  background: var(--bg);
  overflow: visible;
}
.hero-inner {
  max-width: 900px; margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.hero-left { max-width: 900px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow-glow);
  border: 1px solid var(--border-yellow);
  color: var(--text); font-weight: 600;
  font-size: 0.82rem; padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700; line-height: 1.05;
  color: var(--text-heading);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--blue); }
.hero h1 .highlight {
  background: var(--yellow);
  padding: 0 8px; border-radius: 8px;
  display: inline;
}
.hero-sub {
  font-size: 1.25rem; color: var(--muted);
  max-width: 660px; margin: 0 auto 48px;
  line-height: 1.8;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 0; position: relative; z-index: 10; }
.btn-lg { font-size: 1.1rem; padding: 18px 44px; }
.hero-trust {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-trust-item {
  font-size: 0.85rem; font-weight: 600; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}
.btn-yellow {
  background: var(--yellow); color: var(--text);
  font-weight: 600; font-size: 1rem;
  text-decoration: none; padding: 16px 36px;
  border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.2s; white-space: nowrap;
  box-shadow: var(--shadow-btn);
}
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 20px 40px -10px rgba(0,11,48,0.25); }
.btn-blue {
  background: rgba(1, 69, 255, 0.08); color: var(--blue);
  font-weight: 600; font-size: 1rem;
  text-decoration: none; padding: 14px 36px;
  border-radius: var(--radius-btn);
  border: 2px solid rgba(1, 69, 255, 0.2);
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.2s; white-space: nowrap;
}
.btn-blue:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--blue);
  font-weight: 600; font-size: 1rem;
  text-decoration: none; padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--blue);
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px); }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.stat-item { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-size: 2.6rem; font-weight: 700; line-height: 1;
  color: var(--text-heading);
}
.stat-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }

/* Hero right — decorative card */
.hero-right {
  position: relative;
  display: flex; align-items: flex-start; justify-content: center;
}
.hero-visual {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-deep) 100%);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual-content {
  text-align: center; color: #fff; padding: 48px;
  position: relative; z-index: 1;
}
.hero-visual-content .big-num {
  font-size: 5rem; font-weight: 700; line-height: 1;
  margin-bottom: 8px;
}
.hero-visual-content .big-label {
  font-size: 1.1rem; font-weight: 400; opacity: 0.8;
}
.hero-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,227,78,0.15) 0%, transparent 60%);
}

/* ─── SECTIONS (SHARED) ─── */
.section { position: relative; padding: 100px 5%; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-dark .section-title { color: #fff; }
.section-dark .section-sub { color: rgba(255,255,255,0.7); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-label {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.1;
  color: var(--text-heading);
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.75; max-width: 600px;
}
.section-header .section-sub { margin: 0 auto; }

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 0;
  transition: all 0.3s;
  position: relative; overflow: hidden;
  min-height: 320px;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-yellow);
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--yellow); opacity: 0; transition: opacity 0.3s;
}
.service-card:hover::after { opacity: 1; }
.service-icon {
  position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 0;
}
.service-icon img {
  width: 180px; height: 180px;
  object-fit: contain;
  opacity: 0.18;
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .service-icon img { opacity: 0.28; transform: scale(1.05); }
.service-card-body {
  position: relative; z-index: 1;
  padding: 36px 28px 32px;
}
.service-title { font-weight: 700; font-size: 1.15rem; margin-bottom: 10px; color: var(--text-heading); }
.service-text { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.service-stat {
  display: inline-block; margin-top: 16px;
  font-size: 1.8rem; font-weight: 700;
  color: var(--blue);
}

/* ─── STEPS ─── */
.steps { margin-top: 48px; }
.step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 28px; padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative; transition: all 0.2s;
}
.step:last-child { border-bottom: none; }
.step:hover { padding-left: 12px; }
.step-num {
  font-size: 3.5rem; font-weight: 700; line-height: 1;
  color: rgba(0,2,25,0.08);
  transition: color 0.2s;
}
.step:hover .step-num { color: var(--yellow); }
.step-content { padding-top: 4px; }
.step-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; color: var(--text-heading); }
.step-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.step-tag {
  display: inline-block; background: rgba(1,69,255,0.08);
  color: var(--blue); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 100px; margin-top: 10px;
}

/* ─── RISK SECTION ─── */
.risk-section {
  background: var(--bg-dark);
  border-radius: var(--radius-lg); padding: 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; color: #fff;
}
.risk-title { font-size: 2.4rem; font-weight: 700; line-height: 1.1; margin-bottom: 16px; }
.risk-title .hl { color: var(--yellow); }
.risk-text { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 28px; }
.risk-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.risk-num-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 24px;
  transition: all 0.2s;
}
.risk-num-item:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.risk-num-val { font-size: 2.4rem; font-weight: 700; color: var(--yellow); line-height: 1; margin-bottom: 4px; }
.risk-num-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); }

/* ─── PLATFORMS ─── */
.platforms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.platform-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 0;
  transition: all 0.25s;
  overflow: hidden; position: relative;
  min-height: 200px;
}
.platform-card:hover { border-color: var(--border-yellow); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.platform-icon {
  position: absolute; top: 0; right: 0;
  width: 140px; height: 140px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 0;
}
.platform-icon img {
  width: 120px; height: 120px;
  object-fit: contain;
  opacity: 0.15;
  transition: opacity 0.3s, transform 0.3s;
}
.platform-card:hover .platform-icon img { opacity: 0.25; transform: scale(1.05); }
.platform-card-body {
  position: relative; z-index: 1;
  padding: 24px 24px 28px;
}
.platform-name { font-weight: 700; font-size: 1rem; margin-bottom: 6px; color: var(--text-heading); }
.platform-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
.platform-status {
  display: inline-block; margin-top: 12px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 4px 10px; border-radius: 100px;
}
.status-hot { background: var(--yellow-glow); color: #b8860b; border: 1px solid var(--border-yellow); }
.status-good { background: rgba(46,204,113,0.1); color: var(--green); border: 1px solid rgba(46,204,113,0.2); }
.status-ready { background: rgba(1,69,255,0.08); color: var(--blue); border: 1px solid rgba(1,69,255,0.15); }

/* ─── CROSS-SELL BANNER ─── */
.cross-sell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 5%;
}
.cross-sell-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 44px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.cross-sell-badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 6px;
}
.cross-sell-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}
.cross-sell-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 560px;
}
.cross-sell .btn-sm {
  font-size: 0.82rem;
  padding: 10px 20px;
  white-space: nowrap;
}

/* ─── TRUST ROW ─── */
.trust-row {
  display: flex; gap: 40px; flex-wrap: wrap; align-items: center; justify-content: center;
  padding: 40px 0; border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  flex-shrink: 0;
}
.trust-text { font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.trust-text strong { color: var(--text); font-weight: 700; }

/* ─── FAQ ─── */
.faq-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.faq-list { flex: 1; max-width: 800px; }
.faq-illustration {
  flex-shrink: 0;
  width: 340px;
  position: sticky;
  top: 100px;
}
.faq-illustration img {
  width: 100%;
  height: auto;
  display: block;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; cursor: pointer;
  font-weight: 600; font-size: 1rem; color: var(--text);
  transition: color 0.2s; gap: 16px;
}
.faq-q:hover { color: var(--blue); }
.faq-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-alt); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-arrow { background: var(--yellow); color: var(--text); transform: rotate(45deg); }
.faq-a {
  font-size: 0.9rem; color: var(--muted); line-height: 1.75;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 24px; }

/* ─── PRICING BANNER ─── */
.pricing-banner {
  position: relative; z-index: 1;
  padding: 0 5%;
}
.pricing-banner-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; padding: 48px 56px;
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pricing-banner-inner::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,227,78,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-banner-label {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--yellow);
  font-weight: 700; margin-bottom: 8px;
}
.pricing-banner-title {
  font-size: 2rem; font-weight: 700;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.pricing-banner-sub { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.pricing-banner-btn {
  position: relative; z-index: 1; flex-shrink: 0;
  background: var(--yellow); color: var(--text);
  text-decoration: none; font-weight: 700; font-size: 1rem;
  padding: 18px 40px; border-radius: var(--radius-pill);
  transition: all 0.25s; box-shadow: var(--shadow-btn);
  white-space: nowrap;
}
.pricing-banner-btn:hover { background: var(--yellow-dark); transform: translateY(-3px); }

/* ─── LEAD FORM SECTION ─── */
.form-section {
  padding: 100px 5%;
  background: var(--bg-alt);
}
.form-section-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 480px; gap: 80px;
  align-items: center;
}
.form-section-left { max-width: 500px; }
.form-section-left h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.1;
  color: var(--text-heading); margin-bottom: 20px;
}
.form-section-left p {
  font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 32px;
}
.form-benefits { list-style: none; }
.form-benefits li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; font-size: 0.95rem; color: var(--text);
  font-weight: 500;
}
.form-benefits li .icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--yellow-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}

/* Form card */
.hero-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card-title {
  font-size: 1.5rem; font-weight: 700;
  color: var(--text-heading); margin-bottom: 8px;
}
.hero-card-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 6px;
}
.form-input {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text); font-family: var(--font);
  font-size: 0.95rem; padding: 14px 18px;
  border-radius: 12px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(1,69,255,0.1); }
.form-input::placeholder { color: var(--muted); }
.form-select {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text); font-family: var(--font);
  font-size: 0.95rem; padding: 14px 18px;
  border-radius: 12px; outline: none;
  transition: border-color 0.2s; cursor: pointer;
}
.form-select:focus { border-color: var(--blue); }
.form-submit {
  width: 100%;
  background: var(--blue); color: #fff;
  font-family: var(--font); font-weight: 700;
  font-size: 1rem; padding: 16px;
  border-radius: var(--radius-btn); border: none;
  cursor: pointer; margin-top: 8px;
  transition: all 0.2s;
}
.form-submit:hover { background: var(--blue-dark); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-note { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 12px; }
.form-note a { color: var(--blue); text-decoration: none; }
.form-note a:hover { text-decoration: underline; }

/* Honeypot */
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 100px 5%; text-align: center;
  background: var(--bg);
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.1;
  color: var(--text-heading); margin-bottom: 20px;
}
.cta-title .hl { color: var(--blue); }
.cta-sub {
  font-size: 1.05rem; color: var(--muted);
  margin-bottom: 40px; line-height: 1.75;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-note { font-size: 0.78rem; color: var(--muted); margin-top: 24px; }

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-dark); color: #fff;
  padding: 48px 5%;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo { font-weight: 700; font-size: 1.4rem; }
.footer-logo span { color: var(--yellow); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ─── FLOATING CONTACT FAB ─── */
.fab-wrap {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.fab-options {
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0; transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  order: 2;
}
.fab-trigger {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--blue); color: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(1,69,255,0.35);
  transition: all 0.3s;
  animation: fab-pulse 2.5s ease-in-out infinite;
  order: 3;
  position: relative;
}
/* Tooltip "Связь с нами" on hover */
.fab-trigger::after {
  content: 'Связь с нами';
  position: absolute; right: 72px;
  background: var(--bg-dark); color: #fff;
  font-size: 0.78rem; font-weight: 600;
  padding: 6px 14px; border-radius: 8px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.fab-trigger:hover::after { opacity: 1; }
.fab-wrap.open .fab-trigger::after { display: none; }
.fab-trigger:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(1,69,255,0.5); }
.fab-icon-close { display: none; }
.fab-wrap.open .fab-icon-chat { display: none; }
.fab-wrap.open .fab-icon-close { display: block; }
.fab-wrap.open .fab-trigger { background: #fff; color: var(--text); box-shadow: var(--shadow-md); animation: none; }
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(1,69,255,0.35); }
  50% { box-shadow: 0 8px 40px rgba(1,69,255,0.6); }
}
.fab-wrap.open .fab-options {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: auto;
}
.fab-opt {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: all 0.2s;
  position: relative;
}
.fab-opt:hover { transform: scale(1.12); }
.fab-whatsapp { background: #25D366; }
.fab-phone { background: #1a1a2e; }
.fab-telegram { background: #2AABEE; }
.fab-max { background: linear-gradient(135deg, #6C5CE7, #00B4D8); }
/* Tooltip labels */
.fab-opt::before {
  content: attr(title);
  position: absolute; right: 64px;
  background: var(--bg-dark); color: #fff;
  font-size: 0.78rem; font-weight: 600;
  padding: 6px 12px; border-radius: 8px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.fab-opt:hover::before { opacity: 1; }

/* ─── HERO CONSULT BTN ─── */
.hero-consult-btn {
  cursor: pointer; border: none;
  font-family: var(--font);
}

/* ─── DROPDOWN ─── */
.dropdown-wrap {
  position: relative;
  display: inline-flex;
  width: 100%;
  z-index: 60;
}
.dropdown-trigger {
  cursor: pointer; border: none;
  font-family: var(--font);
  width: 100%;
}
.dropdown-arrow {
  font-size: 0.65em; margin-left: 6px;
  transition: transform 0.25s;
}
.dropdown-wrap.open .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0; transform: translateY(-8px);
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 50;
}
.dropdown-wrap.open .dropdown-menu {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
.dropdown-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600; font-size: 0.95rem;
  transition: background 0.15s;
}
.dropdown-item:hover { background: var(--bg-alt); }
.dropdown-item svg { flex-shrink: 0; color: var(--muted); }

/* ─── CASES GRID (index.html preview) ─── */
.cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-yellow);
}
.case-tag {
  display: inline-block;
  background: var(--yellow-glow);
  color: #b8860b; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 14px;
  border: 1px solid var(--border-yellow);
}
.case-title {
  font-size: 1.3rem; font-weight: 700;
  color: var(--text-heading); margin-bottom: 8px;
}
.case-desc {
  font-size: 0.88rem; color: var(--muted);
  line-height: 1.6; margin-bottom: 20px;
}
.case-metrics {
  display: flex; gap: 16px; flex-wrap: wrap;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.case-metric { display: flex; flex-direction: column; gap: 2px; }
.case-metric-val {
  font-size: 1.3rem; font-weight: 700;
  color: var(--text-heading); line-height: 1;
}
.case-metric-label {
  font-size: 0.7rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.cases-cta { text-align: center; margin-top: 48px; }

/* ─── ANIMATIONS ─── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-d1 { transition-delay: 0.1s; }
.fade-in-d2 { transition-delay: 0.2s; }
.fade-in-d3 { transition-delay: 0.3s; }

/* ─── URGENCY BAR ─── */
.urgency-bar {
  background: var(--bg-dark);
  text-align: center; padding: 12px 20px;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.04em; color: #fff;
  margin-top: 72px;
}
.urgency-bar .sep { opacity: 0.3; margin: 0 14px; }
.urgency-bar .hl { color: var(--yellow); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-left { max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .risk-section { grid-template-columns: 1fr; padding: 40px 32px; }
  .form-section-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-section-left { max-width: 100%; }
}

@media (max-width: 768px) {
  /* NAV */
  .nav-menu { display: none; }
  .nav-social { display: none; }
  .burger { display: flex; }
  .nav-inner { height: 60px; }
  .nav-cta { font-size: 0.75rem; padding: 8px 16px; border-radius: 100px; box-shadow: none; }

  /* URGENCY BAR */
  .urgency-bar { font-size: 0.72rem; margin-top: 60px; padding: 10px 16px; line-height: 1.5; }
  .urgency-bar .sep { display: none; }

  /* HERO */
  .hero { min-height: auto; padding: 55px 5% 28px; align-items: flex-start; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); margin-bottom: 20px; }
  .hero h1 .highlight { padding: 0 4px; }
  .hero-sub { font-size: 0.92rem; margin-bottom: 24px; line-height: 1.65; }
  .hero-actions { flex-direction: column; gap: 12px; margin-bottom: 0; }
  .hero-actions a, .hero-actions button { width: 100%; justify-content: center; text-align: center; }
  .btn-lg { font-size: 0.95rem; padding: 14px 24px; }
  .btn-outline { padding: 13px 24px; font-size: 0.92rem; }
  .hero-trust { gap: 12px; margin-top: 24px; padding-top: 20px; flex-direction: column; align-items: center; }
  .hero-trust-item { font-size: 0.78rem; }

  /* SECTIONS */
  .section { padding: 48px 5%; }
  .section-header { margin-bottom: 28px; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .section-sub { font-size: 0.92rem; }
  .section-label { font-size: 0.72rem; margin-bottom: 8px; }

  /* SERVICES */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { min-height: auto; }
  .service-icon { width: 120px; height: 120px; top: -10px; right: -10px; }
  .service-icon img { width: 100px; height: 100px; opacity: 0.12; }
  .service-card-body { padding: 22px 18px 20px; }
  .service-title { font-size: 1rem; margin-bottom: 6px; }
  .service-text { font-size: 0.84rem; line-height: 1.6; }

  /* RISK */
  .risk-section { padding: 28px 20px; border-radius: 20px; gap: 28px; }
  .risk-title { font-size: 1.4rem; margin-bottom: 12px; }
  .risk-text { font-size: 0.85rem; margin-bottom: 20px; }
  .risk-numbers { grid-template-columns: 1fr 1fr; gap: 10px; }
  .risk-num-item { padding: 16px 14px; border-radius: 12px; }
  .risk-num-val { font-size: 1.5rem; }
  .risk-num-label { font-size: 0.7rem; line-height: 1.4; }
  .risk-section .btn-yellow { width: 100%; text-align: center; justify-content: center; padding: 14px 20px; font-size: 0.92rem; }

  /* STEPS */
  .steps { margin-top: 28px; }
  .step { grid-template-columns: 44px 1fr; gap: 14px; padding: 18px 0; }
  .step-num { font-size: 2rem; }
  .step-title { font-size: 0.95rem; margin-bottom: 6px; }
  .step-desc { font-size: 0.84rem; line-height: 1.6; }
  .step-tag { font-size: 0.68rem; margin-top: 8px; }

  /* CASES */
  .cases-grid { grid-template-columns: 1fr; gap: 14px; }
  .case-card { padding: 22px 18px; }
  .case-title { font-size: 1.15rem; }
  .case-desc { font-size: 0.84rem; margin-bottom: 16px; }
  .case-metrics { gap: 14px; }
  .case-metric-val { font-size: 1.15rem; }
  .case-metric-label { font-size: 0.65rem; }
  .cases-cta { margin-top: 32px; }

  /* PLATFORMS */
  .platforms-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .platform-card { min-height: auto; }
  .platform-icon { width: 90px; height: 90px; top: -5px; right: -5px; }
  .platform-icon img { width: 80px; height: 80px; opacity: 0.1; }
  .platform-card-body { padding: 16px 14px 18px; }
  .platform-name { font-size: 0.88rem; margin-bottom: 4px; }
  .platform-desc { font-size: 0.78rem; line-height: 1.5; }
  .platform-status { font-size: 0.65rem; margin-top: 8px; padding: 3px 8px; }

  /* CROSS-SELL */
  .cross-sell-inner { flex-direction: column; text-align: center; padding: 20px 20px; gap: 16px; }

  /* FAQ */
  .faq-illustration { display: none; }

  /* TRUST */
  .trust-row { flex-direction: column; gap: 14px; align-items: center; margin-bottom: 28px; padding: 20px 0; }
  .trust-icon { width: 36px; height: 36px; border-radius: 10px; }
  .trust-text { font-size: 0.84rem; }

  /* FAQ */
  .faq-q { font-size: 0.9rem; padding: 16px 0; gap: 12px; }
  .faq-arrow { width: 28px; height: 28px; font-size: 1rem; }
  .faq-a { font-size: 0.84rem; }

  /* PRICING BANNER */
  .pricing-banner { padding: 0 5%; }
  .pricing-banner-inner { flex-direction: column; text-align: center; padding: 28px 20px; gap: 20px; border-radius: 24px; }
  .pricing-banner-btn { width: 100%; text-align: center; display: block; padding: 14px; font-size: 0.95rem; }
  .pricing-banner-title { font-size: 1.35rem; }
  .pricing-banner-sub { font-size: 0.84rem; }
  .pricing-banner-label { font-size: 0.7rem; }

  /* FORM */
  .form-section { padding: 40px 5%; }
  .form-section-inner { gap: 32px; }
  .form-section-left h2 { font-size: 1.5rem; margin-bottom: 12px; }
  .form-section-left p { font-size: 0.9rem; margin-bottom: 20px; }
  .form-benefits li { font-size: 0.88rem; padding: 8px 0; }
  .hero-card { padding: 24px 20px; border-radius: 16px; }
  .hero-card-title { font-size: 1.15rem; }
  .hero-card-sub { font-size: 0.82rem; margin-bottom: 20px; }
  .form-input, .form-select { font-size: 16px; padding: 12px 14px; border-radius: 10px; }
  .form-label { font-size: 0.75rem; margin-bottom: 4px; }
  .form-group { margin-bottom: 12px; }
  .form-submit { padding: 14px; font-size: 0.92rem; border-radius: 14px; }
  .form-note { font-size: 0.7rem; }

  /* CTA */
  .cta-section { padding: 48px 5%; }
  .cta-title { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .cta-sub { font-size: 0.9rem; margin-bottom: 24px; }
  .cta-buttons { flex-direction: column; gap: 10px; }
  .cta-buttons a { width: 100%; justify-content: center; text-align: center; display: block; padding: 14px; }
  .cta-note { font-size: 0.72rem; margin-top: 16px; }

  /* FOOTER */
  .footer { padding: 28px 5%; }
  .footer-inner { flex-direction: column; text-align: center; gap: 14px; }
  .footer-logo { font-size: 1.2rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .footer-links a { font-size: 0.8rem; }
  .footer-copy { font-size: 0.7rem; }

  /* FAB */
  .fab-wrap { bottom: 16px; right: 14px; }
  .fab-trigger { width: 50px; height: 50px; }
  .fab-trigger svg { width: 24px; height: 24px; }
  .fab-opt { width: 44px; height: 44px; }
  .fab-opt svg { width: 20px; height: 20px; }
  .fab-opt::before { display: none; }
  .fab-trigger::after { display: none; }

  /* MOBILE MENU */
  .mobile-menu { top: 60px; padding: 24px 5%; }
  .mobile-menu a { font-size: 1.05rem; padding: 14px 0; }
}

@media (max-width: 480px) {
  .hero { padding: 47px 4% 24px; min-height: auto; }
  .hero h1 { font-size: clamp(1.5rem, 8vw, 2rem); margin-bottom: 14px; letter-spacing: -0.03em; }
  .hero-sub { font-size: 0.84rem; margin-bottom: 18px; }
  .hero-sub br { display: none; }
  .btn-lg { font-size: 0.88rem; padding: 13px 20px; }
  .btn-outline { padding: 12px 20px; font-size: 0.86rem; }

  .section { padding: 32px 4%; }
  .section-header { margin-bottom: 24px; }
  .section-title { font-size: clamp(1.3rem, 6vw, 1.8rem); }

  .service-card-body { padding: 18px 14px 16px; }
  .service-icon { width: 100px; height: 100px; }
  .service-icon img { width: 80px; height: 80px; }

  .risk-section { padding: 22px 14px; border-radius: 16px; gap: 20px; }
  .risk-title { font-size: 1.2rem; }
  .risk-numbers { grid-template-columns: 1fr 1fr; gap: 8px; }
  .risk-num-item { padding: 12px 10px; }
  .risk-num-val { font-size: 1.3rem; }
  .risk-num-label { font-size: 0.66rem; }

  .step { grid-template-columns: 32px 1fr; gap: 10px; }
  .step-num { font-size: 1.6rem; }
  .step-title { font-size: 0.9rem; }
  .step-desc { font-size: 0.8rem; }

  .platforms-grid { grid-template-columns: 1fr; gap: 10px; }
  .platform-card-body { padding: 14px 14px 16px; }

  .case-card { padding: 18px 14px; }
  .case-metric-val { font-size: 1rem; }

  .hero-card { padding: 20px 14px; }
  .hero-card-title { font-size: 1.05rem; }
  .form-section-left h2 { font-size: 1.3rem; }
  .form-section-left p { font-size: 0.84rem; }

  .pricing-banner-inner { padding: 22px 14px; border-radius: 18px; }
  .pricing-banner-title { font-size: 1.15rem; }
  .pricing-banner-sub { font-size: 0.8rem; }

  .cta-title { font-size: clamp(1.3rem, 6vw, 1.8rem); }
  .cta-sub { font-size: 0.84rem; }

  .urgency-bar { font-size: 0.68rem; padding: 8px 10px; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 1.4rem; }
  .hero-sub { font-size: 0.8rem; }
  .btn-lg { font-size: 0.84rem; padding: 12px 16px; }
  .btn-outline { padding: 11px 16px; font-size: 0.82rem; }
  .nav-cta { font-size: 0.68rem; padding: 6px 10px; }
  .risk-num-val { font-size: 1.2rem; }
  .section-title { font-size: 1.2rem; }
}
