/* ================================================
   LIXIUSD — Landing Page Styles
   ================================================ */

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

/* ---- Design Tokens ---- */
:root {
  --teal:        #00d4b8;
  --teal-light:  #00ffe0;
  --teal-dim:    rgba(0, 212, 184, 0.12);
  --teal-border: rgba(0, 212, 184, 0.28);
  --red:         #e63946;
  --red-dim:     rgba(230, 57, 70, 0.12);
  --yellow:      #f4c430;
  --yellow-dim:  rgba(244, 196, 48, 0.12);
  --purple:      #7c6ff7;
  --purple-dim:  rgba(124, 111, 247, 0.12);

  --bg:    #050d1a;
  --bg2:   #081525;
  --bg3:   #0d1f38;
  --bg4:   #091220;

  --text:     #ddeaf8;
  --text-dim: #5d7a96;

  --border: rgba(255, 255, 255, 0.07);

  --font:      'Inter', system-ui, -apple-system, sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font); }
ul { list-style: none; }

/* ---- Utilities ---- */
.teal        { color: var(--teal); }
.text-yellow { color: var(--yellow); }
.text-purple { color: var(--purple); }
.container   { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s;
}
.navbar.scrolled {
  background: rgba(5, 13, 26, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #fff;
}
.nav-logo span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.btn-nav {
  background: var(--teal) !important;
  color: #050d1a !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.83rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-nav:hover {
  background: var(--teal-light) !important;
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  z-index: 199;
  background: rgba(5, 13, 26, 0.97);
  backdrop-filter: blur(14px);
  padding: 20px 24px;
  flex-direction: column;
  gap: 18px;
  border-bottom: 1px solid var(--border);
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-nav a { font-size: 1rem; color: var(--text-dim); }
.mobile-nav .btn-nav { text-align: center; margin-top: 4px; }

/* ================================================
   BADGES
   ================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}
.badge-red  { background: var(--red-dim);  color: var(--red);  border: 1px solid rgba(230,57,70,0.35); }
.badge-teal { background: var(--teal-dim); color: var(--teal); border: 1px solid var(--teal-border); }

.badge-sm {
  display: inline-flex;
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--teal-dim);
  color: var(--teal);
  border: 1px solid var(--teal-border);
  margin-bottom: 14px;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 70px;
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,184,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,184,0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}
.bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.10;
}
.bg-glow-left  { background: var(--teal); left: -250px; top: 40%; transform: translateY(-50%); }
.bg-glow-right { background: var(--teal); right: -250px; top: 45%; transform: translateY(-50%); }

/* Hero 3-col grid */
.hero-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  gap: 48px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 56px 40px 40px;
  align-items: center;
}

/* ---- Left Column ---- */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.headline-block { display: flex; flex-direction: column; gap: 6px; }
.headline-stat {
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
}
.headline-block h1 {
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.45;
}
.headline-block h1 strong { color: #fff; font-weight: 700; }

.hero-desc {
  font-size: 0.92rem;
  color: var(--text-dim);
  margin-top: -10px;
}

/* Hero stats */
.stats-row { display: flex; gap: 10px; }
.stat-card {
  flex: 1;
  padding: 14px 10px;
  border-radius: var(--radius);
  border: 1px solid;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-red    { background: var(--red-dim);    border-color: rgba(230,57,70,0.4); }
.stat-yellow { background: var(--yellow-dim); border-color: rgba(244,196,48,0.4); }
.stat-purple { background: var(--purple-dim); border-color: rgba(124,111,247,0.4); }

.stat-val {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}
.stat-red    .stat-val { color: var(--red); }
.stat-yellow .stat-val { color: var(--yellow); }
.stat-purple .stat-val { color: var(--purple); }
.stat-lbl {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* Solution line */
.solution-line { display: flex; flex-direction: column; gap: 6px; }
.changes-heading {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.solution-line p { font-size: 0.88rem; color: var(--text-dim); }

/* ---- Phone Mockup ---- */
.hero-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-scene {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-glow-ring {
  position: absolute;
  width: 310px;
  height: 600px;
  border-radius: 48px;
  background: radial-gradient(ellipse at center, rgba(0,212,184,0.18) 0%, transparent 70%);
  filter: blur(24px);
  z-index: 0;
  animation: glow-breathe 4s ease-in-out infinite;
}
@keyframes glow-breathe {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.04); }
}

.phone-device {
  position: relative;
  z-index: 1;
  width: 264px;
  height: 540px;
  background: linear-gradient(160deg, #0d1a2e 0%, #060d1c 100%);
  border-radius: 42px;
  border: 2px solid var(--teal);
  box-shadow:
    0 0 0 1px rgba(0,212,184,0.08),
    0 0 28px rgba(0,212,184,0.28),
    0 0 70px rgba(0,212,184,0.07),
    inset 0 0 24px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-speaker {
  width: 56px;
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  margin: 12px auto 0;
  flex-shrink: 0;
}

.phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-home-bar {
  width: 72px;
  height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 4px;
  margin: 8px auto;
  flex-shrink: 0;
}

/* Status bar */
.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 16px;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.status-icons { display: flex; align-items: center; color: rgba(255,255,255,0.7); }

/* App header */
.app-header {
  background: var(--teal);
  color: #050d1a;
  font-weight: 900;
  font-size: 0.95rem;
  text-align: center;
  padding: 10px;
  letter-spacing: 0.12em;
  flex-shrink: 0;
}

/* App content */
.app-content {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  overflow: hidden;
}

.route-pill {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.68rem;
  color: var(--text);
  white-space: nowrap;
}
.pin-svg {
  width: 10px;
  height: 14px;
  color: var(--red);
  fill: var(--red);
  flex-shrink: 0;
}
.arrow-icon { color: var(--teal); font-weight: 700; font-size: 0.8rem; }

.amount-block {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
}
.amount-label { font-size: 0.66rem; color: var(--text-dim); margin-bottom: 3px; }
.amount-value {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.02em;
}

.conversion-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 7px;
}

.pills-row { display: flex; gap: 7px; }
.info-pill {
  flex: 1;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 7px 5px;
  text-align: center;
  font-size: 0.65rem;
  color: var(--text-dim);
}

.send-button {
  background: var(--teal);
  color: #050d1a;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 10px;
  padding: 13px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0,212,184,0.32);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, color 0.2s;
  letter-spacing: 0.01em;
}
.send-button:hover {
  background: var(--teal-light);
  transform: scale(1.02);
  box-shadow: 0 6px 28px rgba(0,212,184,0.45);
}
.send-button.processing {
  background: rgba(0,212,184,0.2);
  color: var(--teal);
}

.delivery-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.68rem;
  color: var(--text-dim);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s;
}
.delivery-status.visible { opacity: 1; transform: translateY(0); }
.check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal);
  color: #050d1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon svg { width: 13px; height: 13px; }

/* Decorative dots */
.deco-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 14px var(--teal), 0 0 28px rgba(0,212,184,0.4);
}
.deco-dot-top    { top: -18px;    left: 50%; transform: translateX(-50%); }
.deco-dot-bottom { bottom: -18px; left: 50%; transform: translateX(-50%); }

/* ---- Right Column ---- */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.brand-block { display: flex; flex-direction: column; gap: 8px; }
.brand-name-lg {
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.03em;
}
.brand-tagline {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* Feature cards */
.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 15px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-item:hover { transform: translateX(4px); border-color: rgba(255,255,255,0.14); }
.feature-item-yellow:hover { border-color: rgba(244,196,48,0.45); }
.feature-item-purple:hover { border-color: rgba(124,111,247,0.45); }

.feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feat-icon svg { width: 20px; height: 20px; }
.feat-icon-teal  { background: var(--teal-dim);   color: var(--teal);   border: 1px solid var(--teal-border); }
.feat-icon-yellow{ background: var(--yellow-dim); color: var(--yellow); border: 1px solid rgba(244,196,48,0.3); }
.feat-icon-purple{ background: var(--purple-dim); color: var(--purple); border: 1px solid rgba(124,111,247,0.3); }

.feat-text h3 { font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; }
.feat-text p  { font-size: 0.75rem; color: var(--text-dim); }

/* Launch strip */
.launch-strip {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
}

/* Ticker bar */
.ticker-bar {
  background: rgba(0, 0, 0, 0.55);
  border-top: 1px solid rgba(0,212,184,0.18);
  flex-shrink: 0;
}
.ticker-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 11px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.ticker-date { opacity: 0.55; white-space: nowrap; margin-left: 24px; }

/* ================================================
   SECTION COMMONS
   ================================================ */
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-title {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  color: #fff;
}
.section-subtitle {
  font-size: 0.97rem;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto;
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.how-it-works {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.step-card {
  flex: 1;
  text-align: center;
  padding: 28px 22px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  border-color: var(--teal-border);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,212,184,0.08);
}
.step-num {
  font-size: 0.67rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  opacity: 0.65;
}
.step-icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--teal);
}
.step-icon-wrap svg { width: 100%; height: 100%; }
.step-card h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.step-card p  { font-size: 0.83rem; color: var(--text-dim); line-height: 1.65; }

.step-arrow {
  width: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  opacity: 0.35;
  padding: 0 2px;
}
.step-arrow svg { width: 28px; height: 28px; }

/* ================================================
   WHY / COMPARE
   ================================================ */
.why-section { background: var(--bg); }

.compare-grid {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 56px;
}
.compare-card {
  flex: 1;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid;
}
.compare-bad  { background: rgba(230,57,70,0.04);  border-color: rgba(230,57,70,0.2); }
.compare-good { background: var(--teal-dim);        border-color: var(--teal-border); }

.compare-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.compare-label.teal { color: var(--teal); }
.compare-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #fff;
}
.compare-card h3.teal { color: var(--teal); }

.compare-list { display: flex; flex-direction: column; gap: 13px; }
.compare-list li {
  font-size: 0.88rem;
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}
.compare-list li::before {
  position: absolute;
  left: 0;
  font-weight: 800;
  font-size: 0.8rem;
}
.item-bad  { color: var(--text-dim); }
.item-bad::before  { content: '✕'; color: var(--red); }
.item-good { color: var(--text); }
.item-good::before { content: '✓'; color: var(--teal); }

.compare-vs {
  padding: 0 28px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
.vs-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* Tech strip */
.tech-strip {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
}
.tech-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}
.tech-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--teal);
}
.tech-icon svg { width: 100%; height: 100%; }
.tech-text { display: flex; flex-direction: column; gap: 2px; }
.tech-text strong { font-size: 0.88rem; color: #fff; font-weight: 700; }
.tech-text span   { font-size: 0.76rem; color: var(--text-dim); }
.tech-divider {
  width: 1px;
  height: 38px;
  background: var(--border);
  margin: 0 24px;
  flex-shrink: 0;
}

/* ================================================
   STATS SECTION
   ================================================ */
.stats-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.stats-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stat-big-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-big-num {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -0.03em;
  display: block;
}
.stat-big-lbl {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.stat-divider {
  width: 1px;
  height: 52px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 16px;
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section { background: var(--bg); }
.cta-card {
  background: var(--bg3);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-lg);
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 280px;
  background: radial-gradient(ellipse, rgba(0,212,184,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 14px 0 12px;
}
.cta-inner p { font-size: 0.97rem; color: var(--text-dim); margin-bottom: 34px; }

.cta-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 18px;
}
.cta-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 18px;
  color: #fff;
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.cta-input::placeholder { color: var(--text-dim); }
.cta-input:focus { border-color: var(--teal); }
.cta-input.error { border-color: var(--red); }

.cta-btn {
  background: var(--teal);
  color: #050d1a;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 13px 26px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.cta-btn:hover { background: var(--teal-light); transform: translateY(-1px); }
.cta-subtext { font-size: 0.8rem; color: var(--text-dim); }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #fff;
}
.footer-logo span { color: var(--teal); }
.footer-brand p   { font-size: 0.86rem; color: var(--text-dim); line-height: 1.65; }
.footer-powered   { font-size: 0.76rem; color: var(--teal); opacity: 0.7; }

.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col h4 {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.footer-col a { font-size: 0.86rem; color: var(--text-dim); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-bottom p { font-size: 0.76rem; color: var(--text-dim); }
.footer-tagline  { color: var(--teal) !important; opacity: 0.6; }

/* ================================================
   SCROLL ANIMATION HELPERS
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1060px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "phone phone"
      "left  right";
    padding: 36px 24px;
    gap: 32px;
  }
  .hero-center { grid-area: phone; }
  .hero-left   { grid-area: left; }
  .hero-right  { grid-area: right; }

  .steps-grid { flex-direction: column; align-items: center; max-width: 400px; margin: 0 auto; }
  .step-card  { width: 100%; }
  .step-arrow { transform: rotate(90deg); }
  .step-arrow svg { width: 22px; height: 22px; }

  .compare-grid { flex-direction: column; gap: 20px; }
  .compare-vs   { padding: 0; }

  .tech-strip { flex-wrap: wrap; gap: 24px; padding: 24px; }
  .tech-item  { width: calc(50% - 12px); }
  .tech-divider { display: none; }

  .stats-banner { flex-wrap: wrap; gap: 32px; }
  .stat-big-item { width: 44%; }
  .stat-divider  { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "phone"
      "left"
      "right";
    gap: 40px;
    padding: 24px 16px;
  }

  .stats-row { flex-wrap: wrap; }
  .stat-card { flex: 0 0 calc(50% - 5px); }
  .stat-purple { flex: 0 0 100%; flex-direction: row; align-items: center; justify-content: space-between; }

  .ticker-inner { flex-direction: column; gap: 4px; text-align: center; padding: 12px 16px; }
  .ticker-date  { margin-left: 0; }

  .section { padding: 64px 0; }

  .compare-card { padding: 24px 20px; }

  .tech-item { width: 100%; }

  .cta-form { flex-direction: column; }
  .cta-input, .cta-btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 480px) {
  .headline-stat { font-size: 2.6rem; }
  .stat-card { flex: 0 0 100%; flex-direction: row; align-items: center; justify-content: space-between; padding: 12px 16px; }
  .stat-purple { flex: 0 0 100%; }
  .phone-device { width: 240px; height: 490px; }
  .amount-value { font-size: 1.65rem; }
  .route-pill { font-size: 0.6rem; }
}
