/* ═══════════════════════════════════════
   VOTTY — main.css
   ═══════════════════════════════════════ */

:root {
  --bg:        #0a1628;
  --bg2:       #0d1d35;
  --card:      #112240;
  --card2:     #152847;
  --border:    rgba(48,151,226,0.18);
  --blue:      #3097E2;
  --blue2:     #4fb3ff;
  --blue-dim:  rgba(48,151,226,0.12);
  --gold:      #F0B429;
  --gold2:     #ffd166;
  --gold-dim:  rgba(240,180,41,0.12);
  --text:      #e8f0fc;
  --muted:     #6b8aad;
  --muted2:    #4a6280;
  --white:     #ffffff;
  --green:     #4ade80;
  --r:         14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 40px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { width: 36px; height: 36px; }
.nav-name { font-size: 20px; font-weight: 900; letter-spacing: 1px; color: var(--white); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 600; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.btn-nav {
  background: var(--blue); color: #fff !important;
  padding: 9px 22px; border-radius: 10px;
  font-weight: 700 !important; font-size: 14px !important;
  transition: background .2s, transform .2s !important;
}
.btn-nav:hover { background: var(--blue2) !important; transform: translateY(-1px); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--blue); color: #fff; text-decoration: none;
  padding: 15px 28px; border-radius: 12px;
  font-size: 16px; font-weight: 700;
  transition: all .25s; box-shadow: 0 0 30px rgba(48,151,226,.3);
}
.btn-primary:hover { background: var(--blue2); transform: translateY(-2px); box-shadow: 0 0 50px rgba(48,151,226,.45); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold); color: #0a1628; text-decoration: none;
  padding: 15px 28px; border-radius: 12px;
  font-size: 16px; font-weight: 800;
  transition: all .25s; box-shadow: 0 0 30px rgba(240,180,41,.25);
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 0 50px rgba(240,180,41,.4); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: var(--text); text-decoration: none;
  padding: 15px 28px; border-radius: 12px;
  font-size: 16px; font-weight: 600;
  border: 1.5px solid var(--border); transition: all .25s;
}
.btn-outline:hover { border-color: var(--blue); background: var(--blue-dim); transform: translateY(-2px); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 40px 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(48,151,226,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48,151,226,.07) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
}
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(48,151,226,.18) 0%, rgba(240,180,41,.05) 50%, transparent 70%);
  pointer-events: none; animation: heroGlow 7s ease-in-out infinite;
}
@keyframes heroGlow {
  0%,100% { opacity:.8; transform:translateX(-50%) scale(1); }
  50%     { opacity:1;  transform:translateX(-50%) scale(1.07); }
}
.hero-inner {
  max-width: 1140px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px; position: relative; z-index: 2;
}
.hero-left { display: flex; flex-direction: column; gap: 26px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-dim); border: 1px solid rgba(48,151,226,.3);
  border-radius: 100px; padding: 7px 16px;
  font-size: 13px; font-weight: 700; color: var(--blue2);
  width: fit-content; animation: fadeUp .6s ease both;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); animation: dotBlink 2s ease infinite;
}
@keyframes dotBlink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 {
  font-size: clamp(34px,4.5vw,56px); font-weight: 900;
  line-height: 1.1; letter-spacing: -.5px;
  animation: fadeUp .6s .1s ease both;
}
.hero h1 .hl-blue { color: var(--blue2); }
.hero h1 .hl-gold { color: var(--gold); }

.hero-sub {
  font-size: 17px; color: var(--muted); line-height: 1.7; font-weight: 500;
  max-width: 480px; animation: fadeUp .6s .2s ease both;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .6s .3s ease both; }

/* integration chips under CTA */
.hero-integrations {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  animation: fadeUp .6s .4s ease both;
}
.hero-int-label { font-size: 12px; color: var(--muted2); font-weight: 600; }
.int-chip {
  display: flex; align-items: center; gap: 6px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 5px 12px;
  font-size: 12px; font-weight: 700; color: var(--text);
}
.int-chip svg { width: 16px; height: 16px; flex-shrink: 0; }

/* hero right — phone */
.hero-right { display: flex; justify-content: center; animation: fadeUp .8s .4s ease both; }
.phone-wrap { position: relative; width: 280px; }
.phone-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 360px; height: 360px;
  background: radial-gradient(ellipse, rgba(48,151,226,.2), transparent 70%);
  pointer-events: none; z-index: -1;
}
.phone-frame {
  width: 280px; background: var(--card); border-radius: 28px;
  border: 1.5px solid var(--border); overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(48,151,226,.08);
}
.phone-topbar {
  background: var(--card2); padding: 14px 18px 12px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.phone-topbar-title { font-size: 14px; font-weight: 800; color: var(--white); }
.phone-topbar-sub   { font-size: 11px; color: var(--muted); }
.phone-header {
  padding: 14px 16px 10px; display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border);
}
.phone-logo-sm { width: 32px; height: 32px; }
.phone-brand-name { font-size: 15px; font-weight: 900; color: var(--white); }
.phone-tabs { display: flex; border-bottom: 1px solid var(--border); }
.phone-tab {
  flex: 1; padding: 10px 4px; text-align: center;
  font-size: 10px; font-weight: 700; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.phone-tab.active { color: var(--blue); border-bottom: 2px solid var(--blue); }
.phone-tab-icon { font-size: 14px; }
.phone-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.phone-h1 { font-size: 18px; font-weight: 900; line-height: 1.2; }
.phone-h1 .gold { color: var(--gold); }
.phone-sub-sm { font-size: 11px; color: var(--muted); font-weight: 500; line-height: 1.4; }
.phone-input-box { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; }
.phone-input-label { font-size: 9px; font-weight: 800; color: var(--muted); letter-spacing: 1px; margin-bottom: 6px; }
.phone-input-text  { font-size: 11px; color: var(--muted2); line-height: 1.4; }
.phone-variants-row { display: flex; align-items: center; gap: 6px; }
.phone-variants-label { font-size: 11px; color: var(--muted); font-weight: 600; }
.phone-var-chip {
  width: 26px; height: 26px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  background: var(--card2); color: var(--muted); border: 1px solid var(--border);
}
.phone-var-chip.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.phone-btn-blue { background: var(--blue); color: #fff; border-radius: 10px; padding: 11px; text-align: center; font-size: 13px; font-weight: 800; }
.phone-btn-gold  { background: var(--gold); color: #0a1628; border-radius: 10px; padding: 11px; text-align: center; font-size: 13px; font-weight: 800; }

/* ── STATS ── */
.stats {
  max-width: 1100px; margin: 0 auto; padding: 56px 40px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-num { font-size: 42px; font-weight: 900; display: block; color: var(--blue2); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: var(--muted); font-weight: 600; }

/* ── SECTIONS ── */
section { padding: 90px 40px; }
.s-inner { max-width: 1100px; margin: 0 auto; }
.s-tag  { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--blue2); margin-bottom: 14px; }
.s-title { font-size: clamp(28px,4vw,46px); font-weight: 900; line-height: 1.15; letter-spacing: -.5px; margin-bottom: 16px; }
.s-title .gold { color: var(--gold); }
.s-desc  { font-size: 17px; color: var(--muted); font-weight: 500; max-width: 580px; line-height: 1.7; margin-bottom: 48px; }

/* ── INTEGRATIONS STRIP ── */
.int-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap; margin-bottom: 56px;
}
.int-card {
  display: flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 22px;
  font-size: 15px; font-weight: 700; color: var(--text);
  transition: all .25s;
}
.int-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.int-card svg { width: 26px; height: 26px; flex-shrink: 0; }
.int-card .soon-tag {
  font-size: 10px; font-weight: 800; color: var(--gold);
  background: var(--gold-dim); border-radius: 4px; padding: 2px 7px;
  margin-left: 2px;
}

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.fcard {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 32px 28px;
  transition: all .3s; opacity: 0; transform: translateY(28px);
}
.fcard.visible { opacity:1; transform:translateY(0); }
.fcard:hover { border-color: rgba(48,151,226,.4); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.3); }
.fcard:nth-child(2){transition-delay:.08s} .fcard:nth-child(3){transition-delay:.16s}
.fcard:nth-child(4){transition-delay:.24s} .fcard:nth-child(5){transition-delay:.32s} .fcard:nth-child(6){transition-delay:.4s}
.fcard-icon { width:50px; height:50px; border-radius:12px; background:var(--blue-dim); border:1px solid rgba(48,151,226,.25); display:flex; align-items:center; justify-content:center; font-size:22px; margin-bottom:20px; }
.fcard-title { font-size:17px; font-weight:800; margin-bottom:10px; }
.fcard-desc  { font-size:14px; color:var(--muted); line-height:1.65; font-weight:500; }

/* ── HOW ── */
.how-bg { background: var(--bg2); }
.steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
.steps::after { content:''; position:absolute; top:35px; left:12.5%; right:12.5%; height:2px; background:linear-gradient(90deg,transparent,var(--blue),var(--blue),transparent); opacity:.4; }
.step { text-align:center; padding:0 20px; opacity:0; transform:translateY(20px); transition:all .5s; }
.step.visible { opacity:1; transform:translateY(0); }
.step:nth-child(2){transition-delay:.1s} .step:nth-child(3){transition-delay:.2s} .step:nth-child(4){transition-delay:.3s}
.step-num { width:70px; height:70px; border-radius:50%; background:var(--card); border:2px solid var(--blue); display:flex; align-items:center; justify-content:center; font-size:26px; font-weight:900; color:var(--blue2); margin:0 auto 24px; position:relative; z-index:1; box-shadow:0 0 24px rgba(48,151,226,.25); }
.step h3 { font-size:16px; font-weight:800; margin-bottom:10px; }
.step p  { font-size:13px; color:var(--muted); line-height:1.6; font-weight:500; }

/* ── AUDIENCE ── */
.audience-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:18px; }
.acard { background:var(--card); border:1px solid var(--border); border-radius:var(--r); padding:26px; transition:all .3s; opacity:0; transform:translateY(20px); }
.acard.visible { opacity:1; transform:translateY(0); }
.acard:hover { border-color:rgba(48,151,226,.4); transform:translateY(-3px); }
.acard:nth-child(2){transition-delay:.08s} .acard:nth-child(3){transition-delay:.16s}
.acard:nth-child(4){transition-delay:.24s} .acard:nth-child(5){transition-delay:.32s}
.acard-emoji   { font-size:30px; margin-bottom:12px; display:block; }
.acard-role    { font-size:15px; font-weight:800; margin-bottom:8px; }
.acard-pain    { font-size:13px; color:var(--muted); line-height:1.6; margin-bottom:14px; font-weight:500; }
.acard-benefit { display:flex; align-items:flex-start; gap:7px; font-size:13px; color:var(--green); font-weight:700; }
.acard-benefit::before { content:'✓'; flex-shrink:0; }

/* ── WINNER DEMO ── */
.winner-section { background: var(--bg2); }
.winner-demo-wrap { max-width:740px; margin:0 auto; }
.winner-card { background:var(--card); border-radius:var(--r); border:1px solid var(--border); overflow:hidden; margin-bottom:12px; opacity:0; transform:translateX(-16px); transition:all .4s; }
.winner-card.visible { opacity:1; transform:translateX(0); }
.winner-card:nth-child(2){transition-delay:.15s}
.winner-card.win { border-color:var(--gold); box-shadow:0 0 30px rgba(240,180,41,.2); transition-delay:.3s; }
.wc-header { padding:12px 18px; display:flex; align-items:center; gap:10px; border-bottom:1px solid var(--border); background:var(--card2); }
.wc-num { width:28px; height:28px; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:800; flex-shrink:0; }
.wc-num.blue   { background:rgba(48,151,226,.2); color:var(--blue2); }
.wc-num.purple { background:rgba(168,85,247,.2); color:#c084fc; }
.wc-num.gold   { background:rgba(240,180,41,.2);  color:var(--gold); }
.wc-title  { font-size:14px; font-weight:800; }
.wc-badge  { margin-left:auto; background:rgba(240,180,41,.15); color:var(--gold); border:1px solid rgba(240,180,41,.3); padding:3px 10px; border-radius:100px; font-size:12px; font-weight:800; }
.wc-body   { padding:14px 18px; }
.wc-row    { display:flex; gap:10px; margin-bottom:6px; align-items:flex-start; }
.wc-label  { font-size:11px; font-weight:800; color:var(--muted); letter-spacing:.8px; min-width:90px; }
.wc-val    { font-size:13px; font-weight:600; }
.wc-metrics { display:flex; gap:8px; margin-top:12px; }
.wc-chip   { padding:3px 10px; border-radius:8px; font-size:12px; font-weight:700; }
.wc-chip.ctr   { background:rgba(74,222,128,.1);  color:var(--green); }
.wc-chip.cpc   { background:rgba(48,151,226,.1);  color:var(--blue2); }
.wc-chip.score { background:rgba(240,180,41,.1);  color:var(--gold);  }
.winner-improve-btn { background:var(--gold); color:#0a1628; border-radius:12px; padding:14px; text-align:center; font-size:15px; font-weight:800; margin-top:16px; cursor:default; opacity:0; transform:translateY(10px); transition:all .4s .5s; }
.winner-improve-btn.visible { opacity:1; transform:translateY(0); }

/* ── COMPARE ── */
.compare-wrap { border:1px solid var(--border); border-radius:18px; overflow:hidden; }
.cmp-row { display:grid; grid-template-columns:2fr 1.1fr 1fr 1fr; border-bottom:1px solid var(--border); }
.cmp-row:last-child { border-bottom:none; }
.cmp-row.hdr { background:var(--card2); }
.cmp-cell { padding:16px 20px; font-size:14px; font-weight:600; border-right:1px solid var(--border); display:flex; align-items:center; }
.cmp-cell:last-child { border-right:none; }
.cmp-row.hdr .cmp-cell { font-size:13px; font-weight:800; color:var(--muted); letter-spacing:.5px; }
.cmp-row.hdr .cmp-cell.v { color:var(--blue2); background:rgba(48,151,226,.06); }
.cmp-cell.v { background:rgba(48,151,226,.04); font-weight:700; }
.yes { color:var(--green); font-size:18px; }
.no  { color:var(--muted2); font-size:18px; }

/* ── PRICING ── */
.pricing-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; align-items:stretch; }
.pcard { background:var(--card); border:1px solid var(--border); border-radius:var(--r); padding:30px 24px; display:flex; flex-direction:column; position:relative; transition:all .3s; opacity:0; transform:translateY(20px); }
.pcard.visible { opacity:1; transform:translateY(0); }
.pcard:hover { border-color:rgba(48,151,226,.4); transform:translateY(-4px); }
.pcard:nth-child(2){transition-delay:.08s} .pcard:nth-child(3){transition-delay:.16s} .pcard:nth-child(4){transition-delay:.24s}
.pcard.featured { border-color:var(--gold); background:linear-gradient(160deg,rgba(240,180,41,.07),rgba(240,180,41,.02)); box-shadow:0 0 50px rgba(240,180,41,.15); }
.pcard.featured:hover { box-shadow:0 0 70px rgba(240,180,41,.25); transform:translateY(-6px) scale(1.01); }
.pbadge { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--gold); color:#0a1628; padding:4px 14px; border-radius:100px; font-size:11px; font-weight:900; white-space:nowrap; }
.p-tier   { font-size:12px; font-weight:800; color:var(--muted); text-transform:uppercase; letter-spacing:1.5px; margin-bottom:14px; }
.p-price  { font-size:40px; font-weight:900; line-height:1; margin-bottom:4px; }
.p-period { font-size:13px; color:var(--muted); margin-bottom:22px; font-weight:600; }
.p-divider { height:1px; background:var(--border); margin-bottom:20px; }
.p-features { list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:28px; flex:1; }
.p-features li { display:flex; align-items:flex-start; gap:8px; font-size:13px; color:var(--muted); font-weight:600; }
.p-features li .ck { color:var(--green); font-weight:800; flex-shrink:0; margin-top:1px; }
.p-features li strong { color:var(--text); }
.p-cta { display:block; text-align:center; padding:13px; border-radius:11px; font-size:14px; font-weight:800; text-decoration:none; transition:all .25s; margin-top:auto; }
.p-cta-blue { background:var(--blue); color:#fff; }
.p-cta-blue:hover { background:var(--blue2); }
.p-cta-gold { background:var(--gold); color:#0a1628; }
.p-cta-gold:hover { background:var(--gold2); }
.p-cta-outline { border:1.5px solid var(--border); color:var(--text); }
.p-cta-outline:hover { border-color:var(--blue); background:var(--blue-dim); }

/* ── TRIAL BANNER — compact horizontal ── */
.trial-box {
  margin-top:36px; background:var(--card);
  border:1.5px solid rgba(240,180,41,.4); border-radius:18px;
  padding:24px 32px; position:relative; overflow:hidden;
}
.trial-box::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 50% 120% at 15% 50%, rgba(240,180,41,.08), transparent 70%);
  pointer-events:none;
}
.trial-inner {
  display:flex; align-items:center; gap:32px;
  position:relative; z-index:1;
}
.trial-left { flex:1; display:flex; flex-direction:column; gap:5px; }
.trial-tag  {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(74,222,128,.1); color:var(--green);
  border-radius:100px; padding:3px 12px; font-size:12px; font-weight:800;
  width:fit-content; margin-bottom:2px;
}
.trial-title { font-size:19px; font-weight:900; letter-spacing:-.3px; }
.trial-desc  { font-size:13px; color:var(--muted); font-weight:500; }
.trial-center {
  display:flex; flex-direction:column; align-items:center; gap:2px;
  padding:0 32px; border-left:1px solid var(--border); border-right:1px solid var(--border);
}
.trial-price-big  { font-size:52px; font-weight:900; color:var(--gold); line-height:1; }
.trial-price-sub  { font-size:12px; color:var(--muted); font-weight:600; white-space:nowrap; }
.trial-right { display:flex; flex-direction:column; gap:8px; align-items:center; }
.trial-note  { font-size:11px; color:var(--muted2); text-align:center; max-width:160px; }

/* ── REVIEWS ── */
.reviews-bg { background:var(--bg2); }
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:48px; }
.rcard { background:var(--card); border:1px solid var(--border); border-radius:var(--r); padding:26px; transition:all .3s; opacity:0; transform:translateY(20px); }
.rcard.visible { opacity:1; transform:translateY(0); }
.rcard:hover { border-color:rgba(48,151,226,.4); transform:translateY(-3px); }
.rcard:nth-child(2){transition-delay:.1s} .rcard:nth-child(3){transition-delay:.2s}
.r-stars  { color:var(--gold); font-size:15px; letter-spacing:2px; margin-bottom:12px; }
.r-text   { font-size:14px; line-height:1.7; color:var(--text); font-style:italic; margin-bottom:18px; font-weight:500; }
.r-author { display:flex; align-items:center; gap:11px; }
.r-ava    { width:38px; height:38px; border-radius:50%; background:var(--card2); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:18px; }
.r-name   { font-size:13px; font-weight:800; }
.r-role   { font-size:12px; color:var(--muted); font-weight:500; }

/* ── CTA ── */
.cta-section { padding:120px 40px; text-align:center; position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:700px; height:500px; background:radial-gradient(ellipse,rgba(48,151,226,.16),rgba(240,180,41,.06) 50%,transparent 70%); pointer-events:none; }
.cta-section .s-inner { position:relative; z-index:1; }
.cta-title { font-size:clamp(32px,5vw,58px); font-weight:900; letter-spacing:-1px; line-height:1.1; margin-bottom:20px; }
.cta-desc  { font-size:18px; color:var(--muted); font-weight:500; margin-bottom:44px; max-width:500px; margin-left:auto; margin-right:auto; }

/* ── FOOTER ── */
footer { background:var(--bg2); border-top:1px solid var(--border); padding:56px 40px 32px; }
.footer-top {
  max-width:1100px; margin:0 auto;
  display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:40px;
  padding-bottom:40px; border-bottom:1px solid var(--border);
}
.footer-brand { display:flex; align-items:center; gap:8px; margin-bottom:12px; }
.footer-logo  { width:30px; height:30px; }
.footer-name  { font-size:17px; font-weight:900; color:var(--white); }
.footer-tagline { font-size:13px; color:var(--muted2); font-weight:500; line-height:1.6; margin-bottom:16px; }
.footer-badges { display:flex; flex-direction:column; gap:8px; }
.badge-ru {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(48,151,226,.08); border:1px solid rgba(48,151,226,.2);
  border-radius:8px; padding:5px 10px;
  font-size:11px; font-weight:800; color:var(--blue2); width:fit-content;
}
.footer-col h4 { font-size:12px; font-weight:800; color:var(--text); margin-bottom:16px; text-transform:uppercase; letter-spacing:1px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul a { color:var(--muted); text-decoration:none; font-size:14px; font-weight:500; transition:color .2s; }
.footer-col ul a:hover { color:var(--text); }
.footer-bottom {
  max-width:1100px; margin:0 auto; padding-top:24px;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px;
}
.footer-copy { font-size:13px; color:var(--muted2); }
.footer-legal { display:flex; gap:20px; }
.footer-legal a { font-size:12px; color:var(--muted2); text-decoration:none; transition:color .2s; }
.footer-legal a:hover { color:var(--muted); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .footer-top { grid-template-columns:1fr 1fr; }
}
@media(max-width:960px) {
  .hero-inner { grid-template-columns:1fr; }
  .hero-right  { display:none; }
  .features-grid { grid-template-columns:1fr 1fr; }
  .pricing-grid  { grid-template-columns:1fr 1fr; }
  .steps { grid-template-columns:1fr 1fr; }
  .steps::after { display:none; }
  .stats { grid-template-columns:repeat(2,1fr); }
  .reviews-grid { grid-template-columns:1fr 1fr; }
  .cmp-row { grid-template-columns:1.5fr 1fr 1fr; }
  .cmp-row .cmp-cell:nth-child(4) { display:none; }
  .trial-inner { flex-direction:column; text-align:center; }
  .trial-center { border-left:none; border-right:none; border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:20px 0; width:100%; }
}
@media(max-width:640px) {
  nav { padding:0 20px; }
  nav .nav-links li:not(:last-child) { display:none; }
  section { padding:60px 20px; }
  .hero  { padding:90px 20px 60px; }
  .stats { padding:36px 20px; grid-template-columns:1fr 1fr; }
  .features-grid { grid-template-columns:1fr; }
  .pricing-grid  { grid-template-columns:1fr; }
  .reviews-grid  { grid-template-columns:1fr; }
  .steps { grid-template-columns:1fr 1fr; }
  .trial-box { padding:20px 18px; }
  footer { padding:40px 20px 24px; }
  .footer-top { grid-template-columns:1fr; gap:28px; }
  .footer-bottom { flex-direction:column; align-items:flex-start; }
}
