/* ==========================================================================
   WPzip Landing — style.css  (mobile-first)
   ========================================================================== */

/* ── Variables ──────────────────────────────────────────────────────────── */
:root {
  --brand:        #6c5ce7;
  --brand-dark:   #5849c2;
  --brand-light:  #a29bfe;
  --brand-glow:   rgba(108,92,231,.25);
  --accent:       #00cec9;
  --success:      #00b894;
  --warning:      #fdcb6e;
  --danger:       #e17055;
  --bg:           #07060f;
  --bg2:          #0d0b1e;
  --bg3:          #131126;
  --border:       rgba(255,255,255,.08);
  --border-hover: rgba(255,255,255,.16);
  --text:         #e8e6f0;
  --muted:        #8a82a8;
  --radius:       12px;
  --radius-lg:    20px;
  --nav-h:        64px;
  --container:    1160px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }
code { font-family: 'JetBrains Mono', monospace; }

/* ── Skip link ──────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--brand);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius);
  z-index: 9999;
}
.skip-link:focus { top: 16px; }

/* ── Container ──────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Gradient text ──────────────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--brand-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 10px;
  transition: all .2s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 4px 24px var(--brand-glow);
  padding: 12px 24px;
  font-size: 15px;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--brand-glow);
  filter: brightness(1.1);
}

.btn--ghost {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 12px 24px;
  font-size: 15px;
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--border-hover);
}

.btn--lg  { padding: 14px 28px; font-size: 16px; }
.btn--xl  { padding: 18px 36px; font-size: 17px; border-radius: 12px; }

/* ── Scroll reveal ──────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── Section headers ────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
}

.nav {
  height: 100%;
  background: rgba(7,6,15,.8);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.nav--scrolled { background: rgba(7,6,15,.96); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.nav__logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 16px var(--brand-glow);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
  padding: 4px 0;
}
.nav__links a:hover { color: var(--text); }
.nav__links a.active { color: var(--text); }

.nav__cta {
  background: var(--brand) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 14px !important;
  box-shadow: 0 2px 12px var(--brand-glow);
  transition: background .2s, transform .2s !important;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
}
.nav__cta:hover {
  background: var(--brand-dark) !important;
  transform: translateY(-1px);
  color: #fff !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════════ */
.hero {
  padding: calc(var(--nav-h) + 72px) 0 0;
  position: relative;
  overflow: hidden;
}

.hero__bg-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(108,92,231,.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,92,231,.12);
  border: 1px solid rgba(108,92,231,.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-light);
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(36px, 7vw, 68px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero__sub {
  font-size: clamp(16px, 2.5vw, 19px);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero__fine {
  font-size: 13px;
  color: var(--muted);
}

/* Mockup */
.hero__mockup { width: 100%; }

.mockup {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
}

.mockup__bar {
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mockup__dot--r { background: #ff5f57; }
.mockup__dot--y { background: #ffbd2e; }
.mockup__dot--g { background: #28c840; }
.mockup__url {
  margin-left: 8px;
  font-size: 12px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}

.mockup__body {
  display: flex;
  min-height: 280px;
}

.mockup__sidebar {
  width: 130px;
  flex-shrink: 0;
  background: rgba(0,0,0,.2);
  border-right: 1px solid var(--border);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mockup__menu-item {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 6px;
  margin: 0 6px;
  cursor: default;
}
.mockup__menu-item--active {
  background: rgba(108,92,231,.2);
  color: var(--brand-light);
}

.mockup__content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mockup__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.mockup__field-label {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 5px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.mockup__input {
  background: rgba(0,0,0,.3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
}
.mockup__input-text {
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
}
.mockup__row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mockup__select {
  background: rgba(0,0,0,.3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
}
.mockup__toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--muted);
}
.toggle-track {
  width: 34px; height: 18px;
  border-radius: 100px;
  background: rgba(255,255,255,.1);
  position: relative;
}
.toggle-track--on {
  background: var(--success);
}
.toggle-track::after {
  content: '';
  position: absolute;
  top: 2px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left .2s;
}
.toggle-track--on::after { left: 18px; }
.toggle-track:not(.toggle-track--on)::after { left: 2px; }

.mockup__install-btn {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 16px var(--brand-glow);
  cursor: default;
}

.mockup__success {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,184,148,.12);
  border: 1px solid rgba(0,184,148,.25);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--success);
  font-weight: 600;
}
.mockup__check {
  font-size: 16px;
  flex-shrink: 0;
}

/* Stats bar */
.hero__stats {
  margin-top: 56px;
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.hero__stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  padding: 0 16px;
}
.stat strong {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #fff, var(--brand-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   PROBLEM
   ══════════════════════════════════════════════════════════════════════════ */
.problem {
  padding: 96px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.problem__card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color .2s, background .2s;
}
.problem__card:hover {
  background: rgba(255,255,255,.05);
  border-color: var(--border-hover);
}
.problem__icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.problem__card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.problem__card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════════════════
   SOLUTION
   ══════════════════════════════════════════════════════════════════════════ */
.solution {
  padding: 96px 0;
}

.solution__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.solution__desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.solution__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.solution__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
}
.check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.flow-step {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  min-width: 100px;
}
.flow-step--brand {
  background: rgba(108,92,231,.15);
  border-color: rgba(108,92,231,.4);
}
.flow-icon { font-size: 28px; margin-bottom: 8px; }
.flow-label { font-size: 13px; font-weight: 600; color: var(--muted); }
.flow-arrow {
  font-size: 24px;
  color: var(--brand-light);
  font-weight: 700;
}

.compat-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.compat {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════════════════════════════════ */
.features {
  padding: 96px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: border-color .2s, background .2s, transform .2s;
}
.feature-card:hover {
  background: rgba(255,255,255,.05);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.fi-purple { background: rgba(108,92,231,.18); }
.fi-cyan   { background: rgba(0,206,201,.15); }
.fi-green  { background: rgba(0,184,148,.15); }
.fi-orange { background: rgba(253,130,50,.15); }
.fi-pink   { background: rgba(253,121,168,.15); }
.fi-yellow { background: rgba(253,203,110,.15); }

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════════════════════ */
.how {
  padding: 96px 0;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: none;
  position: relative;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .2s;
}
.step:hover { border-color: rgba(108,92,231,.4); }

.step__num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--brand-glow);
}

.step__body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step__body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════════════════
   BENEFITS
   ══════════════════════════════════════════════════════════════════════════ */
.benefits {
  padding: 96px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.benefits__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 28px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.benefit-item__icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-item strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.benefit-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Time save card */
.time-save-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.time-save-card__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.time-bar-group {
  margin-bottom: 16px;
}
.time-bar-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}
.time-bar {
  height: 36px;
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  overflow: hidden;
}
.time-bar__fill {
  height: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  min-width: 70px;
  transition: width 1s ease;
}
.time-bar__fill--slow {
  background: rgba(225,112,85,.25);
  color: var(--danger);
  border: 1px solid rgba(225,112,85,.3);
}
.time-bar__fill--fast {
  background: rgba(0,184,148,.25);
  color: var(--success);
  border: 1px solid rgba(0,184,148,.3);
}
.time-save-card__badge {
  margin-top: 20px;
  display: inline-block;
  background: rgba(0,184,148,.15);
  border: 1px solid rgba(0,184,148,.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--success);
}

/* ══════════════════════════════════════════════════════════════════════════
   SECURITY
   ══════════════════════════════════════════════════════════════════════════ */
.security {
  padding: 96px 0;
}

.security__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.security-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .2s;
}
.security-card:hover { border-color: rgba(0,206,201,.3); }

.security-card__icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.security-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.security-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.security-card code {
  background: rgba(255,255,255,.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--accent);
}

.security__note {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  background: rgba(253,203,110,.07);
  border: 1px solid rgba(253,203,110,.2);
  border-radius: var(--radius);
  padding: 16px 24px;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}
.security__note strong { color: var(--warning); }

/* ══════════════════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════════════════ */
.faq {
  padding: 96px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq__item {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq__item:hover { border-color: var(--border-hover); }
.faq__item[open] { border-color: rgba(108,92,231,.4); }

.faq__item summary {
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--brand-light);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq__item[open] summary::after {
  content: '−';
}

.faq__item p {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .faq__grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════════════════ */
.testimonials {
  padding: 96px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.tcard {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.tcard:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.tcard__stars {
  color: var(--warning);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.tcard p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}
.tcard__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tcard__avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.tcard__author strong { display: block; font-size: 14px; }
.tcard__author span { font-size: 12px; color: var(--muted); }

/* ══════════════════════════════════════════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════════════════════════════════════════ */
.cta-band {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-band__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(108,92,231,.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-band__title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-band__sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 36px;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}

.cta-band__fine {
  font-size: 12px;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer__inner {
  display: flex;
  justify-content: center;
  padding-bottom: 48px;
}
.footer__brand { max-width: 400px; text-align: center; align-items: center; display: flex; flex-direction: column; }

.footer__brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 260px;
}
.footer__license {
  font-size: 12px !important;
  margin-top: 8px !important;
  color: var(--brand-light) !important;
}

.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col ul a {
  font-size: 14px;
  color: var(--muted);
  transition: color .2s;
}
.footer__col ul a:hover { color: var(--text); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

/* ── Floating button ─────────────────────────────────────────────────────── */
.float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px; height: 52px;
  background: #29a8e8;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(41,168,232,.4);
  z-index: 100;
  transition: transform .2s, box-shadow .2s;
}
.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 28px rgba(41,168,232,.5);
}

/* ══════════════════════════════════════════════════════════════════════════
   HAMBURGER
   ══════════════════════════════════════════════════════════════════════════ */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  flex-shrink: 0;
  transition: background .2s;
  -webkit-tap-highlight-color: transparent;
}
.nav__hamburger:hover { background: rgba(255,255,255,.1); }
.nav__hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
  pointer-events: none;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */

/* 480px */
@media (min-width: 480px) {
  .hero__stats-inner { gap: 0; }
  .stat { padding: 0 24px; }
  .problem__grid { grid-template-columns: 1fr 1fr; }
  .security__grid { grid-template-columns: 1fr 1fr; }
  .features__grid { grid-template-columns: 1fr 1fr; }
}

/* 768px — tablets */
@media (min-width: 768px) {
  .hero__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero__title { font-size: clamp(40px, 5vw, 68px); }
  .hero__sub { font-size: 18px; }
  .problem__grid { grid-template-columns: repeat(3, 1fr); }
  .solution__inner { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .benefits__inner { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
  .features__grid { grid-template-columns: repeat(3, 1fr); }
}

/* 1024px — desktop */
@media (min-width: 1024px) {
  .hero__inner { gap: 64px; }
  .security__grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
}

/* ── Mobile nav (≤767px) ─────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .nav__hamburger { display: flex; }

  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(7,6,15,.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 12px 16px 20px;
    gap: 4px;
    z-index: 199;
  }
  .nav__links.is-open { display: flex; }

  .nav__links a {
    display: block;
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--muted);
  }
  .nav__links a:hover,
  .nav__links a:focus { background: rgba(255,255,255,.06); color: var(--text); }

  .nav__cta { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .badge-dot { animation: none; }
  html { scroll-behavior: auto; }
}
