@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

:root {
  --blue:    #2563EB;
  --blue-d:  #1D4ED8;
  --blue-l:  #EFF6FF;
  --blue-m:  #DBEAFE;
  --purple:  #7C3AED;
  --green:   #059669;
  --green-l: #D1FAE5;
  --red:     #DC2626;
  --orange:  #EA580C;

  --ink:     #0F172A;
  --ink-2:   #1E293B;
  --ink-3:   #334155;
  --muted:   #64748B;
  --border:  #E2E8F0;
  --bg:      #F8FAFF;
  --white:   #FFFFFF;

  --r:    12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --sh:    0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --sh-md: 0 4px 24px rgba(0,0,0,.10), 0 1px 4px rgba(0,0,0,.06);
  --sh-lg: 0 12px 48px rgba(0,0,0,.14), 0 2px 8px rgba(0,0,0,.06);
  --sh-xl: 0 24px 80px rgba(0,0,0,.18);

  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body { background: var(--white); color: var(--ink); line-height: 1.6; font-size: 16px; overflow-x: hidden; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── HEADER ─────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.logo-box {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex; align-items: center; justify-content: center;
}
.logo-box svg { width: 18px; height: 18px; fill: white; }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu a { padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--muted); transition: all .2s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--ink); background: var(--bg); }
.nav-btn {
  background: var(--blue); color: white; padding: 10px 22px;
  border-radius: 10px; font-size: 14px; font-weight: 700;
  box-shadow: 0 2px 12px rgba(37,99,235,.35);
  transition: all .2s; white-space: nowrap;
}
.nav-btn:hover { background: var(--blue-d); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(37,99,235,.45); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 14px 28px; border-radius: var(--r); font-weight: 700; font-size: 15px; cursor: pointer; border: none; transition: all .22s; white-space: nowrap; }
.btn-blue { background: var(--blue); color: white; box-shadow: 0 4px 20px rgba(37,99,235,.35); }
.btn-blue:hover { background: var(--blue-d); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,99,235,.45); }
.btn-outline { background: white; color: var(--ink); border: 1.5px solid var(--border); box-shadow: var(--sh); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); box-shadow: var(--sh-md); }
.btn-lg { padding: 17px 36px; font-size: 17px; border-radius: 14px; }
.btn-xl { padding: 20px 44px; font-size: 18px; border-radius: 16px; }

/* ── HERO ─────────────────────────────────────── */
.hero {
  padding: 88px 0 72px;
  background: linear-gradient(180deg, #F0F5FF 0%, #FFFFFF 60%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-l); border: 1px solid var(--blue-m);
  border-radius: 100px; padding: 6px 16px;
  font-size: 13px; font-weight: 600; color: var(--blue); margin-bottom: 22px;
}
.hero-label .dot { width: 7px; height: 7px; background: #22C55E; border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 { font-size: clamp(36px, 4.5vw, 58px); font-weight: 900; line-height: 1.08; letter-spacing: -.03em; margin-bottom: 20px; }
.hero h1 em { font-style: normal; background: linear-gradient(135deg, var(--blue), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 17px; color: var(--muted); line-height: 1.75; margin-bottom: 36px; max-width: 460px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 44px; }
.hero-trust { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.hero-trust-item svg { width: 16px; height: 16px; }
.trust-sep { width: 4px; height: 4px; background: var(--border); border-radius: 50%; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-screen {
  background: #0F172A; border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--sh-xl), 0 0 0 1px rgba(0,0,0,.04);
  overflow: hidden;
}
.hs-bar { background: #1E293B; padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.hs-dots { display: flex; gap: 6px; }
.hs-dot { width: 11px; height: 11px; border-radius: 50%; }
.hs-dot:nth-child(1){background:#FF5F57;} .hs-dot:nth-child(2){background:#FEBC2E;} .hs-dot:nth-child(3){background:#28C840;}
.hs-url { flex:1; background:#334155; border-radius:5px; padding:5px 12px; font-size:12px; color:#94A3B8; font-family:monospace; }
.hs-body { padding: 20px; }

/* App UI mockup */
.app-ui { background: #1E293B; border-radius: 12px; overflow: hidden; }
.app-topbar { background: #0F172A; padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; }
.app-title { font-size: 13px; font-weight: 700; color: white; }
.app-rec { display: flex; align-items: center; gap: 6px; background: rgba(239,68,68,.15); border: 1px solid rgba(239,68,68,.3); border-radius: 100px; padding: 4px 12px; font-size: 12px; color: #FCA5A5; font-weight: 600; }
.rec-dot { width: 8px; height: 8px; background: #EF4444; border-radius: 50%; box-shadow: 0 0 8px #EF4444; animation: blink 1.2s infinite; }
.app-screen { aspect-ratio: 16/9; background: linear-gradient(135deg, #1a1a3e, #0f172a); display: flex; align-items: center; justify-content: center; position: relative; }
.play-ring { width: 60px; height: 60px; border-radius: 50%; border: 2.5px solid rgba(99,102,241,.5); background: rgba(99,102,241,.15); display: flex; align-items: center; justify-content: center; }
.play-ring svg { width: 24px; height: 24px; fill: #818CF8; margin-left: 3px; }
.wave-row { position: absolute; bottom: 14px; left: 16px; display: flex; align-items: flex-end; gap: 3px; }
.wb { width: 3px; border-radius: 2px; background: rgba(99,102,241,.7); animation: wa 1s ease-in-out infinite; }
.wb:nth-child(1){height:8px;animation-delay:0s}.wb:nth-child(2){height:16px;animation-delay:.1s}.wb:nth-child(3){height:11px;animation-delay:.2s}.wb:nth-child(4){height:20px;animation-delay:.3s}.wb:nth-child(5){height:9px;animation-delay:.4s}.wb:nth-child(6){height:15px;animation-delay:.05s}.wb:nth-child(7){height:13px;animation-delay:.15s}.wb:nth-child(8){height:7px;animation-delay:.25s}
@keyframes wa{0%,100%{transform:scaleY(1)}50%{transform:scaleY(.25)}}
.app-toolbar { background: #0F172A; padding: 12px 16px; display: flex; align-items: center; gap: 8px; }
.tb-btn { background: #1E293B; border-radius: 6px; padding: 6px 12px; font-size: 11px; color: #94A3B8; cursor: default; }
.tb-btn.active { background: var(--blue); color: white; }
.tb-time { margin-left: auto; font-size: 12px; font-family: monospace; color: #94A3B8; }

/* Floating cards */
.f-card {
  position: absolute; background: white; border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 11px; border: 1px solid var(--border);
  animation: fc-float 4s ease-in-out infinite;
}
.f-card.fc1 { bottom: -18px; left: -24px; }
.f-card.fc2 { top: 16px; right: -28px; animation-delay: 1.8s; }
@keyframes fc-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.fc-icon { font-size: 26px; }
.fc-t strong { display: block; font-size: 13px; font-weight: 700; color: var(--ink); }
.fc-t span { font-size: 11px; color: var(--muted); }

/* ── LOGOS STRIP ─────────────────────────────────── */
.logos-strip { padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ls-label { text-align: center; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: #94A3B8; margin-bottom: 20px; }
.ls-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.ls-item { font-size: 16px; font-weight: 800; letter-spacing: -.03em; color: #CBD5E1; transition: color .2s; cursor: default; }
.ls-item:hover { color: #94A3B8; }

/* ── STATS ─────────────────────────────────────── */
.stats { padding: 72px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.stat { background: white; padding: 36px 28px; text-align: center; transition: background .2s; }
.stat:hover { background: var(--bg); }
.stat-n { font-size: 42px; font-weight: 900; letter-spacing: -.04em; color: var(--blue); line-height: 1; margin-bottom: 8px; }
.stat-l { font-size: 13px; color: var(--muted); }

/* ── SECTION ─────────────────────────────────────── */
.section { padding: 96px 0; }
.section-gray { background: var(--bg); }

.sh { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.sh-tag { display: inline-flex; align-items: center; gap: 7px; background: var(--blue-l); border: 1px solid var(--blue-m); border-radius: 100px; padding: 5px 14px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); margin-bottom: 18px; }
.sh h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 900; letter-spacing: -.03em; line-height: 1.12; margin-bottom: 16px; }
.sh p { font-size: 17px; color: var(--muted); line-height: 1.75; }

/* ── FEATURE CARDS ─────────────────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feat {
  background: white; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px 28px; transition: all .28s cubic-bezier(.4,0,.2,1);
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--blue-m); }
.feat-ico { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.ic-blue   { background: var(--blue-l); }
.ic-purple { background: #F3E8FF; }
.ic-green  { background: #D1FAE5; }
.ic-orange { background: #FFF7ED; }
.ic-pink   { background: #FCE7F3; }
.ic-cyan   { background: #E0F7FA; }
.feat h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
.feat p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── STEPS ─────────────────────────────────────── */
.steps-col { max-width: 720px; margin: 0 auto; }
.step-item { display: grid; grid-template-columns: 56px 1fr; gap: 20px; margin-bottom: 0; position: relative; }
.step-item:not(:last-child) .step-line { position: absolute; left: 27px; top: 56px; bottom: -16px; width: 2px; background: linear-gradient(180deg, var(--blue-m), transparent); }
.step-left { padding-top: 2px; display: flex; flex-direction: column; align-items: center; }
.step-badge { width: 44px; height: 44px; background: var(--blue); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; flex-shrink: 0; box-shadow: 0 4px 16px rgba(37,99,235,.3); }
.step-body { padding-bottom: 40px; }
.step-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
.step-body p { font-size: 15px; color: var(--muted); line-height: 1.75; }
.step-hint { margin-top: 12px; background: var(--blue-l); border-left: 3px solid var(--blue); border-radius: 0 8px 8px 0; padding: 12px 16px; font-size: 13px; color: #1D4ED8; }

/* ── REVIEWS ─────────────────────────────────────── */
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.rev { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; transition: all .25s; }
.rev:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); border-color: var(--blue-m); }
.rev-stars { color: #F59E0B; font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.rev-text { font-size: 14px; color: var(--ink-3); line-height: 1.8; margin-bottom: 20px; }
.rev-author { display: flex; align-items: center; gap: 12px; }
.rev-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: white; flex-shrink: 0; }
.rev-name { font-size: 14px; font-weight: 700; }
.rev-role { font-size: 12px; color: var(--muted); }
.rev-verified { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: var(--green); font-weight: 600; margin-top: 12px; }

/* ── TABLE ─────────────────────────────────────── */
.tbl-wrap { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); }
table { width: 100%; border-collapse: collapse; }
thead tr { background: var(--bg); }
th { padding: 16px 22px; font-size: 13px; font-weight: 700; color: var(--muted); text-align: left; border-bottom: 1px solid var(--border); text-transform: uppercase; letter-spacing: .05em; }
th.hl { color: var(--blue); }
td { padding: 15px 22px; font-size: 14px; color: var(--muted); border-bottom: 1px solid var(--border); }
tbody tr:last-child td { border: none; }
tbody tr:hover { background: var(--bg); }
.y { color: #059669; font-weight: 700; font-size: 16px; }
.n { color: #CBD5E1; font-size: 16px; }
.hl-cell { color: var(--ink); font-weight: 600; }

/* ── FAQ ─────────────────────────────────────── */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-bottom: 10px; background: white; transition: border-color .2s; }
.faq-item.open { border-color: var(--blue); }
.faq-q { padding: 18px 22px; font-weight: 600; font-size: 15px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; color: var(--ink); gap: 12px; }
.faq-q:hover { background: var(--bg); }
.faq-plus { width: 26px; height: 26px; background: var(--blue-l); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--blue); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a { padding: 0 22px; max-height: 0; overflow: hidden; font-size: 14px; color: var(--muted); line-height: 1.8; transition: all .3s ease; }
.faq-item.open .faq-a { padding: 0 22px 20px; max-height: 300px; }

/* ── CTA BOX ─────────────────────────────────────── */
.cta-box {
  background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 50%, #7C3AED 100%);
  border-radius: var(--r-xl); padding: 80px 60px; text-align: center;
  color: white; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -120px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.07); pointer-events: none;
}
.cta-box::after {
  content: ''; position: absolute; bottom: -100px; left: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,.05); pointer-events: none;
}
.cta-box h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 900; letter-spacing: -.03em; margin-bottom: 16px; }
.cta-box p { font-size: 17px; opacity: .8; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white { background: white; color: var(--blue); font-weight: 800; box-shadow: 0 4px 24px rgba(0,0,0,.25); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(0,0,0,.3); }
.btn-ghost-w { background: rgba(255,255,255,.12); color: white; border: 1.5px solid rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.btn-ghost-w:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); transform: translateY(-1px); }

/* ── DOWNLOAD PAGE ─────────────────────────────── */
.dl-top { padding: 100px 0 60px; background: linear-gradient(180deg, #EFF6FF 0%, #F8FAFF 100%); text-align: center; }
.dl-top h1 { font-size: clamp(32px, 5vw, 58px); font-weight: 900; letter-spacing: -.03em; margin-bottom: 14px; }
.dl-top p { font-size: 17px; color: var(--muted); }
.os-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.os-card {
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 40px 32px; text-align: center;
  transition: all .3s cubic-bezier(.4,0,.2,1); position: relative;
}
.os-card.os-featured { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,.08); }
.os-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--blue); }
.os-popular { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--blue); color: white; font-size: 12px; font-weight: 700; padding: 5px 18px; border-radius: 100px; white-space: nowrap; }
.os-emoji { font-size: 52px; margin-bottom: 14px; }
.os-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; letter-spacing: -.02em; }
.os-ver { font-size: 13px; color: var(--muted); margin-bottom: 3px; }
.os-size { font-size: 12px; color: #94A3B8; margin-bottom: 24px; }
.os-feats { text-align: left; margin-bottom: 28px; display: flex; flex-direction: column; gap: 9px; }
.os-feat { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-3); }
.os-feat::before { content: ''; width: 18px; height: 18px; min-width: 18px; background: var(--green-l); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='%23059669' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: contain; }
.safe-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.safe-pill { display: flex; align-items: center; gap: 7px; background: var(--bg); border: 1px solid var(--border); border-radius: 100px; padding: 8px 18px; font-size: 13px; color: var(--muted); }

/* ── PRICING ─────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.price-card { background: white; border: 1.5px solid var(--border); border-radius: var(--r-xl); padding: 36px 30px; position: relative; transition: all .3s; }
.price-card.pc-feat { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,.08); }
.price-card:hover { box-shadow: var(--sh-lg); border-color: var(--blue); transform: translateY(-3px); }
.pc-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--blue); color: white; font-size: 12px; font-weight: 700; padding: 5px 18px; border-radius: 100px; }
.pc-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 14px; }
.pc-price { font-size: 48px; font-weight: 900; letter-spacing: -.04em; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.pc-price sup { font-size: 22px; font-weight: 600; color: var(--muted); vertical-align: super; }
.pc-price sub { font-size: 16px; color: var(--muted); font-weight: 500; }
.pc-period { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.pc-div { height: 1px; background: var(--border); margin-bottom: 24px; }
.pc-feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.pc-feat { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink-3); }
.pc-feat::before { content: '✓'; color: var(--green); font-weight: 700; min-width: 16px; }
.pc-feat.no { color: #CBD5E1; }
.pc-feat.no::before { content: '—'; color: #E2E8F0; }

/* ── GUARANTEE ─────────────────────────────────── */
.guarantee { background: #F0FDF4; border: 1.5px solid #A7F3D0; border-radius: var(--r-lg); padding: 28px 36px; display: flex; align-items: center; gap: 20px; max-width: 680px; margin: 0 auto; }
.guar-icon { font-size: 44px; flex-shrink: 0; }
.guar-text h3 { font-size: 16px; font-weight: 700; color: #065F46; margin-bottom: 5px; }
.guar-text p { font-size: 14px; color: #047857; line-height: 1.6; }

/* ── RATING ─────────────────────────────────────── */
.rating-block { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; background: white; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 40px 48px; max-width: 660px; margin: 0 auto 60px; box-shadow: var(--sh); }
.rb-num { text-align: center; }
.rb-big { font-size: 72px; font-weight: 900; line-height: 1; color: var(--blue); letter-spacing: -.04em; }
.rb-stars { font-size: 22px; color: #F59E0B; margin: 4px 0; }
.rb-count { font-size: 12px; color: var(--muted); }
.rb-bars { display: flex; flex-direction: column; gap: 9px; }
.rb-row { display: flex; align-items: center; gap: 11px; font-size: 13px; }
.rb-lbl { min-width: 26px; color: var(--muted); }
.rb-track { flex: 1; height: 7px; background: #F1F5F9; border-radius: 4px; overflow: hidden; }
.rb-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--purple)); border-radius: 4px; }
.rb-pct { min-width: 34px; text-align: right; color: var(--muted); }

/* ── LEGAL ─────────────────────────────────────── */
.legal-box { max-width: 820px; margin: 0 auto; background: white; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 52px 60px; box-shadow: var(--sh); }
.legal-box h2 { font-size: 20px; font-weight: 800; color: var(--blue); margin: 32px 0 12px; }
.legal-box h3 { font-size: 15px; font-weight: 700; margin: 22px 0 8px; }
.legal-box p { font-size: 14px; color: var(--muted); margin-bottom: 12px; line-height: 1.8; }
.legal-box ul { margin: 10px 0 14px 18px; list-style: disc; }
.legal-box ul li { font-size: 14px; color: var(--muted); margin-bottom: 7px; line-height: 1.7; }
.legal-box a { color: var(--blue); }
.legal-meta { background: var(--blue-l); border: 1px solid var(--blue-m); border-radius: 8px; padding: 14px 18px; font-size: 13px; color: #1E40AF; margin-bottom: 28px; }
.tab-nav { display: flex; gap: 6px; margin-bottom: 32px; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 5px; width: fit-content; }
.tab-btn { padding: 9px 20px; border-radius: 7px; font-size: 14px; font-weight: 600; color: var(--muted); cursor: pointer; border: none; background: none; font-family: inherit; transition: all .2s; }
.tab-btn.active { background: var(--blue); color: white; box-shadow: 0 2px 10px rgba(37,99,235,.3); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── PAGE HERO ─────────────────────────────────── */
.page-hero { padding: 120px 0 64px; background: linear-gradient(180deg, #EFF6FF 0%, #F8FAFF 100%); text-align: center; }
.page-hero h1 { font-size: clamp(30px, 4.5vw, 52px); font-weight: 900; letter-spacing: -.03em; margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ── USE CASES ─────────────────────────────────── */
.uc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.uc-card { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px 24px; text-align: center; transition: all .25s; }
.uc-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--blue-m); }
.uc-emoji { font-size: 40px; margin-bottom: 16px; }
.uc-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.uc-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── FOOTER ─────────────────────────────────────── */
.footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { color: white; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 14px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.7); }

/* ── DIVIDER ─────────────────────────────────────── */
.div { height: 1px; background: var(--border); }

/* ── ANIMATIONS ─────────────────────────────────── */
.anim { opacity: 0; transform: translateY(24px); transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1); }
.anim.in { opacity: 1; transform: none; }
.stag > * { opacity: 0; transform: translateY(18px); transition: opacity .45s ease, transform .45s ease; }
.stag.in > *:nth-child(1){opacity:1;transform:none;transition-delay:.04s}
.stag.in > *:nth-child(2){opacity:1;transform:none;transition-delay:.1s}
.stag.in > *:nth-child(3){opacity:1;transform:none;transition-delay:.16s}
.stag.in > *:nth-child(4){opacity:1;transform:none;transition-delay:.22s}
.stag.in > *:nth-child(5){opacity:1;transform:none;transition-delay:.28s}
.stag.in > *:nth-child(6){opacity:1;transform:none;transition-delay:.34s}
.stag.in > *:nth-child(7){opacity:1;transform:none;transition-delay:.40s}
.stag.in > *:nth-child(8){opacity:1;transform:none;transition-delay:.46s}

/* ── RESPONSIVE ─────────────────────────────────── */
@media(max-width:1024px){
  .feat-grid,.rev-grid,.uc-grid{grid-template-columns:repeat(2,1fr)}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .os-grid{grid-template-columns:1fr;max-width:440px;margin:0 auto}
  .price-grid{grid-template-columns:1fr;max-width:420px;margin:0 auto}
  .footer-grid{grid-template-columns:1fr 1fr}
  .rating-block{grid-template-columns:1fr;text-align:center;padding:28px}
}
@media(max-width:768px){
  .hero-inner{grid-template-columns:1fr;text-align:center;gap:52px}
  .hero-sub,.hero-btns{margin-left:auto;margin-right:auto}
  .hero-btns{justify-content:center}
  .hero-trust{justify-content:center}
  .hero-visual{order:-1}
  .f-card{display:none}
  .feat-grid,.rev-grid,.uc-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .cta-box{padding:48px 24px}
  .legal-box{padding:28px 20px}
  .guarantee{flex-direction:column;text-align:center;padding:24px}
  .nav-menu a:not(.nav-btn){display:none}
}
