/*
Theme Name: LoopCall
Theme URI: https://loopcall.app
Author: LoopCall
Description: Official LoopCall website theme.
Version: 2.0.0
Text Domain: loopcall
*/

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

:root {
  --bg:        #040c18;
  --surface:   #071428;
  --card:      rgba(255,255,255,0.042);
  --border:    rgba(255,255,255,0.07);
  --border-hi: rgba(255,255,255,0.15);
  --primary:   #0ea5e9;
  --pri-dark:  #0284c7;
  --pri-glow:  rgba(14,165,233,0.42);
  --accent:    #22d3ee;
  --acc-glow:  rgba(34,211,238,0.32);
  --gradient:  linear-gradient(135deg, #0ea5e9 0%, #22d3ee 100%);
  --green:     #22C55E;
  --amber:     #F59E0B;
  --red:       #EF4444;
  --text:      #F1F5F9;
  --sub:       #8892a4;
  --dim:       #4a5568;
  --radius:    20px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }
html.nav-open { overflow: hidden; }

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; letter-spacing: -2px; line-height: 1.08; }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); font-weight: 800; letter-spacing: -1px; line-height: 1.12; }
h3 { font-size: 1.05rem; font-weight: 700; }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes banner-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}
@keyframes notif-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes phone-float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-16px); }
}
@keyframes phone-shake {
  0%,100% { transform: rotate(0); }
  20%     { transform: rotate(-2.5deg); }
  40%     { transform: rotate(2.5deg); }
  60%     { transform: rotate(-1.5deg); }
  80%     { transform: rotate(1.5deg); }
}
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 0 30px rgba(14,165,233,.15), inset 0 1px 0 rgba(14,165,233,.1); }
  50%     { box-shadow: 0 0 60px rgba(14,165,233,.3), inset 0 1px 0 rgba(14,165,233,.18); }
}
@keyframes grid-drift {
  from { background-position: 0 0; }
  to   { background-position: 70px 70px; }
}
@keyframes orb-float-1 {
  0%,100% { transform: translate(0, 0) scale(1); }
  33%     { transform: translate(40px, -30px) scale(1.06); }
  66%     { transform: translate(-20px, 20px) scale(0.96); }
}
@keyframes orb-float-2 {
  0%,100% { transform: translate(0, 0) scale(1); }
  33%     { transform: translate(-50px, 30px) scale(1.08); }
  66%     { transform: translate(30px, -20px) scale(0.94); }
}

/* ── NAV ────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(4,12,24,0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.nav-logo img { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--sub); font-size: 0.9rem; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-cta {
  background: var(--gradient) !important;
  color: #fff !important;
  border-radius: 10px;
  padding: 8px 20px;
  font-size: 0.875rem; font-weight: 700;
  box-shadow: 0 0 24px var(--pri-glow);
  transition: box-shadow .2s, transform .15s;
}
.nav-cta:hover { box-shadow: 0 0 40px var(--pri-glow); transform: translateY(-1px); text-decoration: none; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* Mobile overlay nav */
.nav-mobile {
  display: none; position: fixed; inset: 0;
  background: rgba(4,12,24,.97); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--text); font-size: 1.6rem; font-weight: 700;
  text-decoration: none; transition: color .15s;
}
.nav-mobile a:hover { color: var(--primary); }
.nav-mobile .nav-mobile-cta {
  background: var(--gradient);
  color: #fff !important;
  padding: 14px 40px; border-radius: 14px; font-size: 1.1rem;
  box-shadow: 0 0 30px var(--pri-glow);
}
.nav-mobile-close {
  position: absolute; top: 22px; right: 24px;
  background: none; border: none; color: var(--text);
  font-size: 2rem; cursor: pointer; line-height: 1;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  padding: 100px 0 90px;
  position: relative; overflow: hidden;
  min-height: 92vh;
  display: flex; align-items: center;
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.07) 1px, transparent 1px);
  background-size: 70px 70px;
  animation: grid-drift 8s linear infinite;
  pointer-events: none;
}

.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(90px);
}
.hero-orb-1 {
  top: -180px; left: -120px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(14,165,233,0.24) 0%, transparent 68%);
  animation: orb-float-1 18s ease-in-out infinite;
}
.hero-orb-2 {
  bottom: -120px; right: -80px;
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(6,182,212,0.2) 0%, transparent 68%);
  animation: orb-float-2 22s ease-in-out infinite;
}

.hero > .container { position: relative; z-index: 1; width: 100%; }

.hero-inner { display: flex; align-items: center; gap: 64px; }
.hero-text { flex: 1; min-width: 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.28);
  border-radius: 999px; padding: 7px 18px;
  font-size: .78rem; font-weight: 600;
  color: #bae6fd;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}

.hero-tagline { display: none; }

.hero-free-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 999px; padding: 8px 20px;
  font-size: .82rem; font-weight: 600;
  color: #86efac;
  margin-top: 6px; margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.hero h1 { margin-bottom: 16px; }
.hero h1 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  color: var(--sub); font-size: 1.1rem; line-height: 1.78;
  max-width: 480px; margin-bottom: 38px;
}

.store-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card);
  border: 1px solid var(--border-hi);
  border-radius: 14px; padding: 12px 22px;
  color: var(--text); font-weight: 600;
  backdrop-filter: blur(10px);
  transition: border-color .2s, background .2s, transform .2s;
}
.store-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--primary);
  transform: translateY(-2px);
  text-decoration: none; color: var(--text);
}
.store-btn svg { width: 22px; height: 22px; flex-shrink: 0; fill: currentColor; }
.store-btn-text small { font-size: .68rem; font-weight: 400; color: var(--sub); display: block; line-height: 1; }
.store-btn-text strong { font-size: .95rem; display: block; margin-top: 2px; }

.carrier-strip {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  margin-top: 26px;
}
.carrier-strip-label { font-size: .7rem; color: var(--dim); }
.carrier-tag {
  font-size: .7rem; font-weight: 600; color: var(--sub);
  background: var(--card); border: 1px solid var(--border);
  border-radius: 6px; padding: 3px 10px;
}

@media (max-width: 860px) {
  .hero { min-height: auto; text-align: center; }
  .hero-inner { flex-direction: column; gap: 48px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .store-btns { justify-content: center; }
  .carrier-strip { justify-content: center; }
}
@media (max-width: 520px) { .hero-visual { display: none; } }

/* ── PHONE MOCKUP ───────────────────────────────────────────── */
.hero-visual { flex-shrink: 0; position: relative; }

.phone-wrap {
  position: relative; display: inline-block; z-index: 1;
  animation: phone-float 6s ease-in-out infinite, phone-shake .65s ease-in-out 2.5s 3;
}

.phone-vol-up, .phone-vol-dn, .phone-pwr {
  position: absolute; border-radius: 2px;
  background: linear-gradient(180deg,#3a3a3c,#2c2c2e);
}
.phone-vol-up { left: -3px; top: 92px;  width: 3px; height: 26px; }
.phone-vol-dn { left: -3px; top: 124px; width: 3px; height: 26px; }
.phone-pwr    { right: -3px; top: 108px; width: 3px; height: 38px; }

.phone-outer {
  width: 240px;
  height: 504px;
  background: linear-gradient(160deg, #1e1b2e 0%, #0d0b1a 45%, #1a1728 100%);
  border-radius: 50px;
  padding: 10px 9px;
  box-shadow:
    0 0 0 1px rgba(14,165,233,.25),
    0 0 0 2px rgba(0,0,0,.9),
    0 60px 120px rgba(0,0,0,.9),
    0 0 80px rgba(14,165,233,.18);
}

.phone-screen {
  background: #07060f;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.phole {
  width: 11px; height: 11px; border-radius: 50%;
  background: #000; border: 1.5px solid #1a1728;
  margin: 10px auto 0;
}

.sb {
  display: flex; justify-content: space-between; align-items: center;
  padding: 5px 16px 4px;
}
.sb-time { font-size: .6rem; font-weight: 700; color: rgba(255,255,255,.85); }
.sb-icons { display: flex; align-items: center; gap: 5px; }

.call-banner {
  margin: 6px 8px 0;
  background: linear-gradient(135deg, #1e0a0a 0%, #180606 100%);
  border: 1px solid rgba(239,68,68,.3);
  border-radius: 16px;
  padding: 10px 10px 8px;
  position: relative;
  animation: banner-pulse 1.5s ease-in-out infinite;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 6px;
}
.call-banner-pulse { position: absolute; inset: 0; border-radius: 16px; background: rgba(239,68,68,.04); }
.cb-left { flex: 1; min-width: 0; }
.cb-app-row { display: flex; align-items: center; gap: 5px; margin-bottom: 5px; }
.cb-app-dot { width: 14px; height: 14px; border-radius: 6px; background: #EF4444; display: flex; align-items: center; justify-content: center; }
.cb-app-dot::after { content: '📞'; font-size: .5rem; }
.cb-app-name { font-size: .55rem; font-weight: 700; color: rgba(255,255,255,.5); }
.cb-time { font-size: .5rem; color: rgba(255,255,255,.3); margin-left: auto; }
.cb-title { font-size: .65rem; font-weight: 800; color: rgba(255,255,255,.9); margin-bottom: 1px; }
.cb-number { font-size: .6rem; font-weight: 700; color: rgba(255,255,255,.7); margin-bottom: 1px; }
.cb-sub { font-size: .5rem; color: #F59E0B; }
.cb-btns { display: flex; flex-direction: column; gap: 5px; flex-shrink: 0; }
.cb-decline, .cb-answer { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cb-decline { background: #EF4444; }
.cb-answer  { background: #22C55E; transform: rotate(135deg); }

.notifs { padding: 6px 8px 12px; display: flex; flex-direction: column; gap: 5px; }
.notif-card {
  background: rgba(14,165,233,0.05);
  border: 1px solid rgba(14,165,233,0.1);
  border-radius: 14px;
  padding: 8px 10px;
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
  animation: notif-in .4s ease both;
}
.notif-1 { animation-delay: .15s; }
.notif-2 { animation-delay: .28s; }
.notif-3 { animation-delay: .41s; }
.notif-4 { animation-delay: .54s; }
.notif-5 { animation-delay: .67s; }
.notif-6 { animation-delay: .80s; }

.nc-left { display: flex; align-items: flex-start; gap: 7px; flex: 1; min-width: 0; }
.nc-icon { width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: .65rem; }
.red-icon   { background: rgba(239,68,68,.15); }
.amber-icon { background: rgba(245,158,11,.15); }
.nc-body { flex: 1; min-width: 0; }
.nc-row { display: flex; align-items: center; gap: 4px; margin-bottom: 1px; }
.nc-app  { font-size: .5rem; font-weight: 700; color: rgba(255,255,255,.4); }
.nc-time { font-size: .48rem; color: rgba(255,255,255,.25); margin-left: auto; }
.nc-title { font-size: .58rem; font-weight: 700; color: rgba(255,255,255,.8); margin-bottom: 1px; }
.nc-num   { font-size: .54rem; color: rgba(255,255,255,.45); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nc-tag { font-size: .42rem; font-weight: 800; letter-spacing: .6px; padding: 2px 6px; border-radius: 5px; flex-shrink: 0; align-self: center; }
.spam-tag { background: rgba(239,68,68,.18); color: #EF4444; }
.risk-tag { background: rgba(245,158,11,.18); color: #F59E0B; }

.phone-glow-red {
  position: absolute; bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 80px;
  background: rgba(14,165,233,.55);
  filter: blur(44px);
  border-radius: 50%;
  pointer-events: none;
}

@media (max-width: 860px) { .phone-outer { width: 210px; height: 441px; } }
@media (max-width: 520px) { .hero-visual { display: none !important; } }

/* ── LIVE COUNTER ───────────────────────────────────────────── */
@keyframes live-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .4; transform: scale(.75); }
}
.live-counter {
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(14,165,233,.06) 0%, transparent 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.22);
  border-radius: 999px; padding: 6px 16px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: #22C55E; margin-bottom: 24px;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22C55E;
  animation: live-pulse 1.5s ease-in-out infinite;
}
.live-count-num {
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 800; letter-spacing: -3px; line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.live-count-label {
  font-size: 1.05rem; color: var(--sub); max-width: 400px; margin: 0 auto;
}

/* ── PROBLEM SECTION ────────────────────────────────────────── */
.problem-section { padding: 110px 0; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 48px;
}
.problem-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  backdrop-filter: blur(8px);
  transition: border-color .25s, transform .2s;
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity .25s;
}
.problem-card:hover { border-color: rgba(14,165,233,.35); transform: translateY(-4px); }
.problem-card:hover::before { opacity: 1; }
.problem-num {
  font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 12px;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.problem-num span { font-size: 2rem; }
.problem-label { font-size: .95rem; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 10px; }
.problem-source { font-size: .72rem; color: var(--dim); font-style: italic; }
.problem-cta-note {
  text-align: center; color: var(--sub);
  font-size: 1rem; font-weight: 500;
  border-top: 1px solid var(--border); padding-top: 32px;
}

/* ── STATS STRIP ────────────────────────────────────────────── */
.stats-strip {
  background: rgba(14,165,233,0.04);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid { display: flex; flex-wrap: wrap; justify-content: center; }
.stat-item {
  flex: 1 1 180px; max-width: 260px;
  text-align: center; padding: 44px 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.6rem; font-weight: 800; line-height: 1; margin-bottom: 7px;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: .82rem; color: var(--sub); }
@media (max-width: 600px) {
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); flex-basis: 50%; }
  .stat-item:last-child { border-bottom: none; }
}

/* ── SECTION COMMON ─────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 14px;
}
.section-header { text-align: center; margin-bottom: 68px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--sub); max-width: 500px; margin: 0 auto; font-size: 1.02rem; }

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.how { padding: 120px 0; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  backdrop-filter: blur(8px);
  transition: border-color .25s, transform .2s, box-shadow .25s;
}
.step-card:hover {
  border-color: rgba(14,165,233,.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,.3), 0 0 20px rgba(14,165,233,.08);
}
.step-num {
  font-size: .68rem; font-weight: 700; letter-spacing: 1px;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px;
}
.step-icon {
  width: 52px; height: 52px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.step-card h3 { margin-bottom: 9px; }
.step-card p { color: var(--sub); font-size: .9rem; line-height: 1.68; }

/* ── FEATURES ───────────────────────────────────────────────── */
.features { padding: 80px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(8px);
  transition: border-color .25s, box-shadow .25s, transform .2s;
}
.feature-card:hover {
  border-color: rgba(14,165,233,.3);
  box-shadow: 0 20px 40px rgba(0,0,0,.3), 0 0 30px rgba(14,165,233,.08);
  transform: translateY(-5px);
}
.feature-icon { font-size: 2.1rem; margin-bottom: 18px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--sub); font-size: .92rem; line-height: 1.68; }
.feature-highlight {
  border-color: rgba(14,165,233,.4);
  background: linear-gradient(135deg, rgba(14,165,233,.07) 0%, rgba(6,182,212,.04) 100%);
  animation: glow-pulse 3.5s ease-in-out infinite;
}
.feature-highlight:hover {
  border-color: rgba(14,165,233,.65);
  animation: none;
  box-shadow: 0 0 80px rgba(14,165,233,.28), 0 20px 40px rgba(0,0,0,.3);
}
.feature-tag {
  display: inline-block; margin-top: 16px;
  font-size: .65rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  border: 1px solid rgba(14,165,233,.3); border-radius: 999px;
  padding: 3px 12px;
}

/* ── VOICEMAIL FREEDOM ──────────────────────────────────────── */
.vm-section { padding: 110px 0; }

.vm-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px; align-items: center;
  max-width: 920px; margin: 0 auto;
}
@media (max-width: 760px) {
  .vm-split { grid-template-columns: 1fr; }
  .vm-arrow { flex-direction: row; justify-content: center; padding: 0; }
}

.vm-panel {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.vm-before {
  background: linear-gradient(160deg, rgba(239,68,68,.07) 0%, rgba(239,68,68,.03) 100%);
  border-color: rgba(239,68,68,.22);
}
.vm-after {
  background: linear-gradient(160deg, rgba(34,197,94,.06) 0%, rgba(14,165,233,.04) 100%);
  border-color: rgba(34,197,94,.22);
}

.vm-panel-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.22);
}
.vm-panel-label { font-size: .72rem; font-weight: 700; color: var(--sub); }
.vm-badge-red {
  font-size: .62rem; font-weight: 700; border-radius: 999px; padding: 2px 10px;
  background: rgba(239,68,68,.14); color: #EF4444; border: 1px solid rgba(239,68,68,.28);
}
.vm-badge-green {
  font-size: .62rem; font-weight: 700; border-radius: 999px; padding: 2px 10px;
  background: rgba(34,197,94,.14); color: #22C55E; border: 1px solid rgba(34,197,94,.28);
}

.vm-entries { padding: 4px 0; }
.vm-entry {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 18px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.vm-entry:last-child { border-bottom: none; }

.vm-entry-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.vm-entry-dot.red   { background: #EF4444; }
.vm-entry-dot.green { background: #22C55E; }
.vm-entry-dot.blue  { background: var(--primary); }

.vm-entry-body { flex: 1; min-width: 0; }
.vm-num {
  font-size: .74rem; font-weight: 700; color: var(--text);
  margin-bottom: 3px;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.vm-preview {
  font-size: .68rem; color: var(--sub);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vm-dur { font-size: .64rem; color: var(--dim); flex-shrink: 0; }
.vm-dur-rec {
  font-size: .6rem; font-weight: 800; color: #EF4444; flex-shrink: 0;
  animation: live-pulse 1.5s ease-in-out infinite;
}
.vm-tag-spam {
  font-size: .54rem; font-weight: 800; letter-spacing: .5px;
  background: rgba(239,68,68,.14); color: #EF4444; border-radius: 4px; padding: 1px 5px;
}
.vm-tag-real {
  font-size: .54rem; font-weight: 800; letter-spacing: .5px;
  background: rgba(34,197,94,.14); color: #22C55E; border-radius: 4px; padding: 1px 5px;
}
.vm-entry-carrier {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 18px;
  background: rgba(34,197,94,.05);
  border-top: 1px solid rgba(34,197,94,.15);
  font-size: .72rem; color: var(--sub);
}

.vm-arrow {
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 0 4px;
}
.vm-arrow-icon { font-size: 2rem; }
.vm-arrow-label {
  font-size: .58rem; font-weight: 700; text-align: center;
  color: var(--sub); text-transform: uppercase; letter-spacing: .6px; line-height: 1.5;
}

.vm-note {
  max-width: 620px; margin: 40px auto 0;
  text-align: center; color: var(--sub); font-size: .92rem; line-height: 1.78;
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials { padding: 120px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(8px);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.testi-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.testi-stars {
  font-size: .9rem; letter-spacing: 2px; margin-bottom: 18px;
  background: linear-gradient(135deg, #F59E0B, #FCD34D);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.testi-text { color: rgba(255,255,255,.78); font-size: .93rem; line-height: 1.78; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient);
  color: #fff; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800;
}
.testi-name { font-size: .88rem; font-weight: 700; line-height: 1.3; }
.testi-meta { font-size: .75rem; color: var(--sub); }

/* ── PRICING ────────────────────────────────────────────────── */
.pricing { padding: 120px 0; }
.pricing-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; max-width: 1120px; margin: 0 auto; }
.pricing-card {
  flex: 1 1 280px; max-width: 320px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px; padding: 36px 30px; position: relative;
  backdrop-filter: blur(10px);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.pricing-card:hover { border-color: var(--border-hi); transform: translateY(-5px); }
.pricing-card.featured {
  border-color: rgba(14,165,233,.5);
  background: linear-gradient(135deg, rgba(14,165,233,.08) 0%, rgba(6,182,212,.05) 100%);
  box-shadow: 0 0 50px rgba(14,165,233,.15);
  animation: glow-pulse 4s ease-in-out infinite;
}
.pricing-card.featured:hover {
  animation: none;
  box-shadow: 0 0 80px rgba(14,165,233,.3), 0 20px 40px rgba(0,0,0,.3);
}
.pricing-card.power-card {
  border-color: rgba(245,158,11,.35);
  background: linear-gradient(135deg, rgba(245,158,11,.06) 0%, rgba(245,158,11,.02) 100%);
}
.pricing-card.power-card:hover { box-shadow: 0 0 50px rgba(245,158,11,.12); }

.featured-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gradient);
  color: #fff; font-size: .72rem; font-weight: 700;
  padding: 4px 16px; border-radius: 999px; white-space: nowrap;
}
.power-badge { background: linear-gradient(135deg,#D97706,#F59E0B) !important; }
.plan-name { font-size: .78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--sub); }
.price { font-size: 2.7rem; font-weight: 800; line-height: 1; margin: 12px 0 5px; }
.price span { font-size: .9rem; font-weight: 400; color: var(--sub); }
.price-period { color: var(--sub); font-size: .85rem; margin-bottom: 8px; }
.plan-discount {
  display: inline-block;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
  font-size: .78rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0; font-size: .9rem;
  border-bottom: 1px solid var(--border);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.btn { display: block; width: 100%; text-align: center; border-radius: var(--radius-sm); padding: 14px; font-weight: 700; font-size: .95rem; transition: opacity .2s, transform .15s, box-shadow .2s; }
.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 0 28px var(--pri-glow);
}
.btn-primary:hover { opacity: .92; transform: translateY(-2px); box-shadow: 0 0 44px var(--pri-glow); text-decoration: none; color: #fff; }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border-hi); }
.btn-outline:hover { border-color: var(--primary); text-decoration: none; color: var(--text); }
.btn-power { background: rgba(245,158,11,.1); color: #F59E0B; border: 1.5px solid rgba(245,158,11,.35); }
.btn-power:hover { background: rgba(245,158,11,.2); text-decoration: none; color: #F59E0B; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq { padding: 120px 0; }
.faq-list { max-width: 740px; margin: 0 auto; }
details.faq-item { border-bottom: 1px solid var(--border); }
details.faq-item:first-child { border-top: 1px solid var(--border); }
summary.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 4px; cursor: pointer;
  font-weight: 600; font-size: .97rem; list-style: none;
  user-select: none; gap: 16px; transition: color .15s;
}
summary.faq-q:hover { color: var(--primary); }
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q::after {
  content: '+'; font-size: 1.5rem; font-weight: 300;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  flex-shrink: 0; line-height: 1;
}
details.faq-item[open] summary.faq-q::after { content: '−'; }
.faq-a { padding: 0 4px 22px; color: var(--sub); font-size: .92rem; line-height: 1.82; }

/* ── PRIVACY STRIP ──────────────────────────────────────────── */
.privacy-strip { padding: 100px 0; }
.privacy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.privacy-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; gap: 16px; align-items: flex-start;
  backdrop-filter: blur(8px);
  transition: border-color .2s, transform .2s;
}
.privacy-card:hover { border-color: rgba(6,182,212,.3); transform: translateY(-3px); }
.privacy-card-icon { font-size: 1.6rem; flex-shrink: 0; }
.privacy-card h3 { font-size: .95rem; margin-bottom: 6px; }
.privacy-card p { color: var(--sub); font-size: .85rem; line-height: 1.62; }

/* ── DOWNLOAD CTA ───────────────────────────────────────────── */
.download-cta {
  padding: 130px 0; text-align: center;
  position: relative; overflow: hidden;
}
.download-cta::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(14,165,233,.13) 0%, rgba(6,182,212,.06) 50%, transparent 70%);
  pointer-events: none;
}
.download-cta > .container { position: relative; z-index: 1; }
.download-cta h2 { max-width: 600px; margin: 0 auto 18px; }
.download-cta h2 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.download-cta p { color: var(--sub); max-width: 440px; margin: 0 auto 48px; font-size: 1.05rem; }

.cta-highlights { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 0 auto 48px; }
.cta-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(6,182,212,.08));
  border: 1px solid rgba(14,165,233,.35);
  border-radius: 999px; padding: 10px 22px;
  font-size: .95rem; font-weight: 700; color: #e0f2fe;
  backdrop-filter: blur(8px);
  animation: pill-pulse 6s ease-in-out infinite;
}
.cta-highlights .cta-pill:nth-child(1) { animation-delay: 0s; }
.cta-highlights .cta-pill:nth-child(2) { animation-delay: 2s; }
.cta-highlights .cta-pill:nth-child(3) { animation-delay: 4s; }
@keyframes pill-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(14,165,233,0); border-color: rgba(14,165,233,.35); }
  8%   { box-shadow: 0 0 0 14px rgba(14,165,233,.5); border-color: rgba(14,165,233,.85); }
  20%  { box-shadow: 0 0 0 0 rgba(14,165,233,0); border-color: rgba(14,165,233,.35); }
  100% { box-shadow: 0 0 0 0 rgba(14,165,233,0); border-color: rgba(14,165,233,.35); }
}
.cta-tagline {
  font-size: .72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 18px;
}
.download-cta .store-btns { justify-content: center; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  position: relative;
  padding: 62px 0 30px;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--gradient); opacity: .4;
}
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 40px; margin-bottom: 48px; }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand p { color: var(--sub); font-size: .88rem; margin-top: 12px; line-height: 1.65; max-width: 230px; }
.footer-col h4 { font-size: .75rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--dim); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col li a { color: var(--sub); font-size: .88rem; transition: color .15s; }
.footer-col li a:hover { color: var(--text); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { color: var(--dim); font-size: .8rem; }

/* ── DEMO SECTION ───────────────────────────────────────────── */
.demo-section { padding: 110px 0; background: linear-gradient(180deg, transparent 0%, rgba(14,165,233,.04) 50%, transparent 100%); }

.mode-badge { display: inline-flex; align-items: center; gap: 7px; font-size: .72rem; font-weight: 700; letter-spacing: .5px; border-radius: 999px; padding: 5px 14px; width: fit-content; }
.mode-badge-loop { background: rgba(14,165,233,.12); border: 1px solid rgba(14,165,233,.3); color: #bae6fd; }
.mode-badge-vm   { background: rgba(6,182,212,.1);   border: 1px solid rgba(6,182,212,.28); color: #67e8f9; }

.demo-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; }
.dtab { background: var(--card); border: 1px solid var(--border); border-radius: 999px; padding: 10px 26px; font-size: .9rem; font-weight: 600; color: var(--sub); cursor: pointer; transition: all .2s; }
.dtab-active { background: linear-gradient(135deg, rgba(14,165,233,.15), rgba(34,211,238,.1)); border-color: rgba(14,165,233,.4); color: var(--text); }

.demo-arena { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 760px) { .demo-arena { grid-template-columns: 1fr; } }

.demo-phone-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; }
.demo-call-header { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: linear-gradient(135deg, rgba(239,68,68,.08), rgba(239,68,68,.03)); border-bottom: 1px solid rgba(239,68,68,.15); }
.demo-call-dot { width: 10px; height: 10px; border-radius: 50%; background: #EF4444; flex-shrink: 0; animation: live-pulse 1.2s ease-in-out infinite; }
.demo-call-num { font-size: .88rem; font-weight: 700; }
.demo-call-lbl { font-size: .68rem; color: var(--sub); margin-top: 2px; }
.demo-rec { margin-left: auto; font-size: .65rem; font-weight: 700; color: #EF4444; letter-spacing: .5px; animation: live-pulse 1.2s ease-in-out infinite; }

.demo-msgs { padding: 16px 20px; min-height: 260px; display: flex; flex-direction: column; gap: 10px; overflow-y: auto; }

@keyframes bubble-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.demo-bubble { display: flex; gap: 10px; align-items: flex-end; animation: bubble-in .3s ease forwards; }
.bubble-ai     { flex-direction: row; }
.bubble-caller { flex-direction: row-reverse; }

.demo-av { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: .85rem; }
.av-ai     { background: rgba(14,165,233,.18); }
.av-caller { background: rgba(239,68,68,.15); }

.bubble-txt { max-width: 76%; padding: 10px 14px; border-radius: 16px; font-size: .85rem; line-height: 1.5; }
.bubble-ai .bubble-txt { background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(34,211,238,.07)); border: 1px solid rgba(14,165,233,.2); border-bottom-left-radius: 4px; color: var(--text); }
.bubble-caller .bubble-txt { background: rgba(255,255,255,.05); border: 1px solid var(--border); border-bottom-right-radius: 4px; color: rgba(255,255,255,.75); }

.demo-status-pill { text-align: center; font-size: .72rem; color: var(--sub); background: var(--card); border: 1px solid var(--border); border-radius: 999px; padding: 5px 16px; margin: 0 auto; animation: bubble-in .3s ease forwards; }
.demo-end-pill { text-align: center; font-size: .78rem; font-weight: 700; background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.22); color: #EF4444; border-radius: 999px; padding: 8px 20px; margin: 4px auto 0; animation: bubble-in .3s ease forwards; }
.demo-end-green { background: rgba(34,197,94,.08); border-color: rgba(34,197,94,.22); color: #22C55E; }

.demo-phone-footer { display: flex; align-items: center; gap: 14px; padding: 14px 20px; border-top: 1px solid var(--border); background: rgba(0,0,0,.18); }
.demo-wave { display: flex; align-items: center; gap: 3px; flex: 1; }
.demo-wave span { flex: 1; border-radius: 2px; height: 4px; background: linear-gradient(to top, #0ea5e9, #22d3ee); animation: wave-bar 1s ease-in-out infinite; }
.demo-wave span:nth-child(1){animation-delay:0s}.demo-wave span:nth-child(2){animation-delay:.08s}.demo-wave span:nth-child(3){animation-delay:.16s}.demo-wave span:nth-child(4){animation-delay:.24s}.demo-wave span:nth-child(5){animation-delay:.32s}.demo-wave span:nth-child(6){animation-delay:.40s}.demo-wave span:nth-child(7){animation-delay:.48s}.demo-wave span:nth-child(8){animation-delay:.56s}.demo-wave span:nth-child(9){animation-delay:.64s}.demo-wave span:nth-child(10){animation-delay:.72s}.demo-wave span:nth-child(11){animation-delay:.80s}.demo-wave span:nth-child(12){animation-delay:.88s}
@keyframes wave-bar { 0%,100% { height: 4px; } 50% { height: 22px; } }
.demo-timer { font-size: .8rem; font-weight: 700; color: var(--sub); font-variant-numeric: tabular-nums; }

.demo-info-panel { display: flex; flex-direction: column; gap: 28px; padding: 8px 0; }
.demo-info-panel h3 { font-size: 1.25rem; margin-bottom: 12px; }
.demo-info-panel p  { color: var(--sub); font-size: .92rem; line-height: 1.72; margin-bottom: 20px; }
.demo-ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.demo-ul li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--sub); }
.demo-ul li::before { content: '✓'; color: var(--green); font-weight: 700; }
.demo-replay-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--card); border: 1px solid var(--border-hi); border-radius: 999px; padding: 10px 24px; font-size: .88rem; font-weight: 600; color: var(--text); cursor: pointer; transition: border-color .2s, background .2s; width: fit-content; }
.demo-replay-btn:hover { border-color: var(--primary); background: rgba(14,165,233,.07); }

/* ── COMPARE SECTION ────────────────────────────────────────── */
.compare-section { padding: 110px 0; }
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%; border-collapse: collapse;
  max-width: 820px; margin: 0 auto;
  font-size: .92rem;
}
.compare-table th, .compare-table td {
  padding: 15px 20px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.compare-table th:first-child, .compare-table td:first-child { text-align: left; color: var(--sub); font-weight: 500; }
.compare-table thead tr { border-bottom: 2px solid var(--border); }
.compare-table thead th { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--sub); padding-bottom: 18px; }
.compare-col-us {
  background: rgba(14,165,233,.06);
  border-left: 1px solid rgba(14,165,233,.2);
  border-right: 1px solid rgba(14,165,233,.2);
  color: var(--text) !important; font-weight: 700 !important;
}
.compare-table thead .compare-col-us {
  background: linear-gradient(135deg,rgba(14,165,233,.15),rgba(6,182,212,.1));
  color: var(--text) !important;
  border-radius: 12px 12px 0 0;
  font-size: .82rem;
}
.chk { color: #22C55E; font-size: 1.1rem; font-weight: 700; }
.crs { color: rgba(255,255,255,.2); font-size: 1.1rem; }
.prt { color: var(--amber); font-size: .8rem; font-weight: 600; }

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
.about-hero {
  padding: 110px 0 90px; position: relative; overflow: hidden;
  text-align: center;
}
.about-hero h1 { margin-bottom: 22px; }
.about-hero h1 em { font-style: normal; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-hero-sub { color: var(--sub); font-size: 1.15rem; line-height: 1.75; max-width: 540px; margin: 0 auto; }

.about-section { padding: 100px 0; }

.about-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 860px) { .about-two-col { grid-template-columns: 1fr; gap: 48px; } }

.about-col-text h2 { margin: 14px 0 20px; }
.about-col-text p  { color: var(--sub); font-size: .97rem; line-height: 1.82; margin-bottom: 16px; }

.about-col-stats { display: flex; flex-direction: column; gap: 16px; }
.about-stat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 30px;
  position: relative; overflow: hidden;
}
.about-stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient); }
.about-stat-num { font-size: 2.6rem; font-weight: 800; line-height: 1; margin-bottom: 8px; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-stat-num span { font-size: 1.8rem; }
.about-stat-lbl { font-size: .88rem; color: var(--sub); line-height: 1.5; }

.about-values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.about-value-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: border-color .2s, transform .2s; }
.about-value-card:hover { border-color: rgba(14,165,233,.35); transform: translateY(-4px); }
.about-value-icon { font-size: 2rem; margin-bottom: 16px; }
.about-value-card h3 { margin-bottom: 10px; }
.about-value-card p { color: var(--sub); font-size: .9rem; line-height: 1.72; }

.about-diff-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.about-diff-row { display: grid; grid-template-columns: 1fr 80px 80px; align-items: center; padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: .9rem; color: var(--sub); }
.about-diff-row:last-child { border-bottom: none; }
.about-diff-row.header-row { background: rgba(14,165,233,.06); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; }
.diff-us, .diff-them { text-align: center; font-weight: 700; }
.diff-us { color: var(--text); }

.about-cta { padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.about-cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 500px; background: radial-gradient(ellipse, rgba(14,165,233,.12) 0%, rgba(34,211,238,.05) 50%, transparent 70%); pointer-events: none; }
.about-cta > .container { position: relative; z-index: 1; }
.about-cta h2 { margin-bottom: 16px; }
.about-cta h2 em { font-style: normal; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-cta p { color: var(--sub); max-width: 480px; margin: 0 auto 40px; font-size: 1.02rem; line-height: 1.72; }

/* mission / vision */
.about-mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 860px) { .about-mv-grid { grid-template-columns: 1fr; } }
.about-mv-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 44px 40px; position: relative; overflow: hidden; }
.about-mv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient); }
.about-mv-mission { background: linear-gradient(135deg, rgba(14,165,233,.07), rgba(34,211,238,.03)); border-color: rgba(14,165,233,.25); }
.about-mv-vision  { background: linear-gradient(135deg, rgba(34,211,238,.07), rgba(14,165,233,.03)); border-color: rgba(34,211,238,.25); }
.about-mv-label { font-size: .78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.about-mv-card h2 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); margin-bottom: 20px; line-height: 1.25; }
.about-mv-card p  { color: var(--sub); font-size: .95rem; line-height: 1.82; margin-bottom: 14px; }
.about-mv-card p:last-child { margin-bottom: 0; }

/* tech cards */
.about-tech-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 760px) { .about-tech-grid { grid-template-columns: 1fr; } }
.about-tech-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; transition: border-color .2s, transform .2s; }
.about-tech-card:hover { border-color: rgba(14,165,233,.35); transform: translateY(-4px); }
.about-tech-featured { background: linear-gradient(135deg, rgba(14,165,233,.1), rgba(34,211,238,.06)); border-color: rgba(14,165,233,.35); }
.about-tech-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; }
.about-tech-card h3 { margin-bottom: 10px; }
.about-tech-card p  { color: var(--sub); font-size: .9rem; line-height: 1.72; }
.about-tech-card strong { color: var(--text); }

/* stats row */
.about-stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.about-stat-src { font-size: .68rem; color: var(--dim); font-style: italic; margin-top: 8px; }

/* ── PRICING PAGE ───────────────────────────────────────────── */
.pricing-hero-banner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  background: linear-gradient(135deg, rgba(14,165,233,.08), rgba(34,211,238,.04));
  border: 1px solid rgba(14,165,233,.25); border-radius: 28px;
  padding: 52px 48px; margin-bottom: 32px; position: relative; overflow: hidden;
}
.pricing-hero-banner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient); }
@media (max-width: 760px) { .pricing-hero-banner { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; } }
.phb-right { display: flex; flex-direction: column; gap: 0; }
.phb-divider { height: 1px; background: var(--border); margin: 24px 0; }
.phb-stat-num { font-size: 3rem; font-weight: 800; line-height: 1; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 6px; }
.phb-stat-lbl { font-size: .88rem; color: var(--sub); }

.pricing-callout {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(34,197,94,.06); border: 1px solid rgba(34,197,94,.2);
  border-radius: var(--radius-sm); padding: 18px 22px;
  font-size: .9rem; color: var(--sub); line-height: 1.65;
}
.pricing-callout-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.pricing-callout strong { color: var(--text); }

.pricing-compare-table th:not(:first-child):not(.compare-col-us) { font-size: .72rem; }

/* ── LEGAL PAGES ────────────────────────────────────────────── */
.legal-page { padding: 80px 0 120px; }
.legal-header { margin-bottom: 52px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.legal-header h1 { margin-bottom: 10px; }
.legal-header .updated { color: var(--sub); font-size: .88rem; }
.legal-content { max-width: 740px; }
.legal-content h2 { font-size: 1.3rem; margin: 44px 0 14px; padding-top: 8px; border-top: 1px solid var(--border); }
.legal-content h3 { font-size: 1rem; font-weight: 600; margin: 24px 0 8px; }
.legal-content p { color: var(--sub); line-height: 1.78; margin-bottom: 14px; }
.legal-content ul, .legal-content ol { color: var(--sub); padding-left: 22px; margin-bottom: 14px; }
.legal-content li { margin-bottom: 7px; line-height: 1.72; }
.legal-content a { color: var(--accent); }
.legal-content strong { color: var(--text); font-weight: 600; }
.contact-box { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 28px; margin-top: 36px; }


/* ── SECTION ALTERNATING BG ─────────────────────────────────── */
.section-surface {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── HERO TRUST BAR ─────────────────────────────────────────── */
.hero-trust {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 20px;
  font-size: .82rem; color: var(--sub);
}
.hero-trust-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22C55E; flex-shrink: 0;
  animation: live-pulse 1.5s ease-in-out infinite;
}
.hero-trust strong {
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

/* ── PROBLEM NUMBERS (bigger) ────────────────────────────────── */
.problem-num {
  font-size: clamp(2.8rem, 5vw, 3.8rem) !important;
  letter-spacing: -1px;
}
.problem-num span { font-size: 60% !important; }

/* ── CURSOR GLOW ─────────────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 520px; height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(14,165,233,0.09) 0%, rgba(34,211,238,0.04) 40%, transparent 70%);
  filter: blur(50px);
  will-change: transform;
  transition: transform 0.18s ease;
}
@media (pointer: coarse) { .cursor-glow { display: none; } }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SLOGAN GLOBAL ──────────────────────────────────────────── */
.slogan-strike {
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
  color: var(--dim);
  -webkit-text-fill-color: var(--dim);
}

/* ── HERO SLOGAN ────────────────────────────────────────────── */
.hero-slogan {
  font-size: clamp(1.3rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 14px 0 22px;
  color: var(--text);
}
.hero-slogan em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── MANIFESTO SECTION ──────────────────────────────────────── */
.manifesto-section {
  padding: 110px 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(14,165,233,.05) 0%, transparent 50%, rgba(14,165,233,.05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.manifesto-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(14,165,233,.1) 0%, transparent 68%);
  pointer-events: none;
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.manifesto-lead {
  font-size: 1.05rem;
  color: var(--sub);
  line-height: 1.85;
  margin-bottom: 44px;
}
.manifesto-slogan {
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 38px;
  color: var(--text);
}
.manifesto-slogan em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.manifesto-sub {
  font-size: 1.05rem;
  color: var(--sub);
  line-height: 1.78;
  max-width: 540px;
  margin: 0 auto;
}

/* ── NAV LOGO TAGLINE ───────────────────────────────────────── */
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none !important;
}
.nav-logo-tagline {
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}

/* ── CTA SLOGAN ─────────────────────────────────────────────── */
.cta-slogan {
  margin-top: 28px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--sub);
  letter-spacing: -0.2px;
}
.cta-slogan em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 3-STEP SUMMARY ─────────────────────────────────────────── */
.steps3-section { padding: 20px 0 100px; }
.steps3-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
@media (max-width: 720px) { .steps3-grid { grid-template-columns: 1fr; } }

.step3-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .2s, box-shadow .25s;
}
.step3-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient); opacity: .7;
}
.step3-card:hover {
  border-color: rgba(14,165,233,.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,.3), 0 0 24px rgba(14,165,233,.1);
}
.step3-featured {
  background: linear-gradient(135deg, rgba(14,165,233,.1), rgba(34,211,238,.06));
  border-color: rgba(14,165,233,.4);
  box-shadow: 0 0 40px rgba(14,165,233,.12);
}
.step3-num {
  font-size: .68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.step3-icon-wrap {
  width: 68px; height: 68px; border-radius: 20px; margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(14,165,233,.15), rgba(34,211,238,.08));
  border: 1px solid rgba(14,165,233,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.step3-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step3-card p { color: var(--sub); font-size: .9rem; line-height: 1.7; }
