/* ═══════════════════════════════════════════════════════════
   G-Smarto — Premium Landing CSS
═══════════════════════════════════════════════════════════ */

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

:root {
  --bg:         #060B18;
  --bg2:        #071327;
  --bg3:        #081a34;
  --white:      #FFFFFF;
  --ink:        #071123;
  --ink2:       #9FB0D5;
  --ink3:       #6780AD;
  --brand:      #18D462;
  --brand2:     #00E5FF;
  --brand-bg:   #0B1D34;
  --brand-dark: #0EAD4F;
  --gold:       #FACC15;
  --gold-bg:    #362E05;
  --red:        #DC2626;
  --green:      #059669;
  --blue:       #2563EB;
  --border:     #1A2B4B;
  --border2:    #28416D;
  --card:       #0D1A31;
  --shadow:     0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-md:  0 4px 24px rgba(0,0,0,.16);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.22);
  --shadow-glow: 0 0 40px rgba(24,212,98,.18);
  --radius:     16px;
  --radius-sm:  10px;
  --ease:       cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, #0d2040 0%, #040814 60%);
  color: #EAF1FF;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── SCROLL PROGRESS BAR ────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  z-index: 10000;
  width: 0%;
  transition: width .1s linear;
  border-radius: 0 2px 2px 0;
}

/* ─── FLOATING PARTICLES CANVAS ─────────────────────────── */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .35;
}

/* ─── NAV ─────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(5, 11, 24, .85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 0 6%; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
nav.scrolled {
  background: rgba(4, 8, 20, .95);
  box-shadow: 0 4px 32px rgba(0,0,0,.3);
  border-bottom-color: rgba(255,255,255,.08);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink2);
  text-decoration: none; transition: color .2s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--brand); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links a:hover { color: var(--brand); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-login {
  font-size: 14px; font-weight: 600; color: var(--ink2);
  text-decoration: none; padding: 8px 16px; border-radius: 8px;
  border: 1px solid var(--border2); transition: all .2s var(--ease);
}
.nav-login:hover { color: var(--brand); border-color: var(--brand); background: rgba(24,212,98,.06); }
.nav-cta {
  background: var(--brand); color: #fff;
  padding: 9px 22px; border-radius: 50px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: all .2s var(--ease);
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left .5s var(--ease);
}
.nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(24,212,98,.4); }
.nav-cta:hover::before { left: 150%; }

/* ─── HAMBURGER MENU ─────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  cursor: pointer; border: none;
  background: rgba(255,255,255,.06); border-radius: 8px;
  padding: 6px; transition: background .2s;
}
.hamburger:hover { background: rgba(255,255,255,.1); }
.hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--ink2); border-radius: 2px;
  transition: all .3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(4, 8, 20, .97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px 6% 32px;
  z-index: 998;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.mobile-nav.open { display: block; transform: translateY(0); opacity: 1; }
.mobile-nav a {
  display: block; color: var(--ink2); text-decoration: none;
  font-size: 17px; font-weight: 600; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--brand); }
.mobile-nav .mobile-cta {
  display: block; background: var(--brand); color: #fff;
  text-align: center; padding: 14px; border-radius: 12px;
  font-size: 16px; font-weight: 700; margin-top: 18px;
  text-decoration: none;
}

/* ─── HERO ─────────────────────────────────────────────────── */
#hero {
  background: linear-gradient(125deg, #020915 0%, #060e20 50%, #071830 100%);
  display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr);
  align-items: center;
  padding: 108px 6% 88px; gap: 56px;
  position: relative; overflow: hidden;
  min-height: 100vh;
}

/* Large green glow orb top-right */
#hero::before {
  content: ''; position: absolute;
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(24,212,98,.11) 0%, transparent 60%);
  top: -360px; right: -220px; pointer-events: none;
  animation: orbPulse1 11s ease-in-out infinite;
}
/* Cyan glow orb bottom-left */
#hero::after {
  content: ''; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,.07) 0%, transparent 60%);
  bottom: -160px; left: 5%; pointer-events: none;
  animation: orbPulse2 14s ease-in-out infinite;
}
@keyframes orbPulse1 {
  0%, 100% { transform: translate(0,0) scale(1); opacity: .8; }
  50%       { transform: translate(-28px, 18px) scale(1.1); opacity: 1; }
}
@keyframes orbPulse2 {
  0%, 100% { transform: translate(0,0) scale(1); opacity: .7; }
  50%       { transform: translate(22px, -26px) scale(1.08); opacity: 1; }
}
/* Keep heroGlow for #cta */
@keyframes heroGlow {
  0%, 100% { transform: scale(1) translate(0,0); opacity: .8; }
  50%       { transform: scale(1.15) translate(-20px, 20px); opacity: 1; }
}

/* Animated dot-grid background */
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(24,212,98,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,212,98,.055) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 62% 48%, black 20%, transparent 72%);
  mask-image: radial-gradient(ellipse 85% 80% at 62% 48%, black 20%, transparent 72%);
  animation: gridDrift 22s ease-in-out infinite;
}
@keyframes gridDrift {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(-7px, -5px); }
  66%       { transform: translate(5px, 4px); }
}

/* Hero left — clean content, no card */
.hero-left {
  position: relative; z-index: 2;
  animation: fadeSlideUp .9s var(--ease) both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Pill badge with rotating conic border */
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(24,212,98,.1);
  border: 1px solid rgba(24,212,98,.35);
  padding: 8px 20px; border-radius: 50px;
  font-size: 12px; font-weight: 700; color: var(--brand2);
  margin-bottom: 30px; letter-spacing: .5px;
  position: relative;
  animation: fadeSlideUp .9s .05s var(--ease) both;
}
.hero-pill::before {
  content: '';
  position: absolute; inset: -1px; border-radius: 50px;
  background: conic-gradient(from 0deg, rgba(24,212,98,.6), rgba(0,229,255,.4), transparent 60%, rgba(24,212,98,.6));
  z-index: -1; opacity: .55;
  animation: pillRotate 5s linear infinite;
}
@keyframes pillRotate { to { transform: rotate(360deg); } }

.hero-pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand2); animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(0,229,255,.5); }
  50%       { opacity: .7; transform: scale(1.3); box-shadow: 0 0 0 6px rgba(0,229,255,0); }
}

h1 {
  font-size: clamp(40px, 5.2vw, 66px); font-weight: 800;
  line-height: 1.03; letter-spacing: -2.5px;
  margin-bottom: 22px;
  background: linear-gradient(150deg, #ffffff 0%, #c8d8ff 55%, #a8c4ff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeSlideUp .9s .15s var(--ease) both;
}
h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px; color: #AFC1E5; max-width: 520px; line-height: 1.75; margin-bottom: 34px;
  animation: fadeSlideUp .9s .25s var(--ease) both;
}
.hero-sub strong { color: #F4F9FF; }

.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; align-items: center;
  animation: fadeSlideUp .9s .35s var(--ease) both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  padding: 15px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .28s var(--ease);
  position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(24,212,98,.35);
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left .65s var(--ease);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(24,212,98,.52); }
.btn-primary:hover::after { left: 150%; }

.btn-outline-white {
  padding: 15px 26px; border-radius: 50px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  border: 1px solid rgba(255,255,255,.2); color: #bbb;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .28s var(--ease);
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,.03);
}
.btn-outline-white:hover { border-color: var(--brand2); color: var(--brand2); background: rgba(0,229,255,.06); transform: translateY(-2px); }

.hero-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: #6E88B4; flex-wrap: wrap;
  animation: fadeSlideUp .9s .42s var(--ease) both;
}
.hero-meta span { color: #8FA7D2; }
.hero-meta-sep { color: #2D4A7A; }

/* Trust bar: avatar stack + star rating */
.hero-trust-bar {
  display: flex; align-items: center; gap: 14px;
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
  animation: fadeSlideUp .9s .5s var(--ease) both;
}
.trust-avatars { display: flex; }
.ta {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
  border: 2px solid #060b18;
  margin-left: -10px; flex-shrink: 0;
  transition: transform .2s var(--ease);
}
.trust-avatars:hover .ta { margin-left: -6px; }
.ta:first-child { margin-left: 0; }
.ta-1 { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); }
.ta-2 { background: linear-gradient(135deg, #059669, #047857); }
.ta-3 { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.ta-more { background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.15); color: var(--ink2); font-size: 10px; }
.trust-text-group { margin-left: 6px; }
.trust-stars { color: #f59e0b; font-size: 13px; letter-spacing: 2px; line-height: 1; }
.trust-caption { font-size: 12px; color: var(--ink3); margin-top: 3px; }

/* Proof stats row */
.hero-proof {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px; margin-top: 20px;
  animation: fadeSlideUp .9s .58s var(--ease) both;
}
.proof {
  background: linear-gradient(160deg, rgba(10,26,52,.8), rgba(8,20,40,.7));
  border: 1px solid rgba(72,111,169,.3);
  border-radius: 12px; padding: 14px 16px;
  transition: all .28s var(--ease); cursor: default;
  position: relative; overflow: hidden;
}
.proof::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  opacity: 0; transition: opacity .28s;
}
.proof:hover { border-color: rgba(24,212,98,.25); transform: translateY(-2px); }
.proof:hover::before { opacity: 1; }
.proof strong { display: block; font-size: 22px; font-weight: 800; color: var(--brand); line-height: 1; margin-bottom: 3px; }
.proof span   { font-size: 11px; color: #BBD0F2; }

/* Hero right — device with floating cards */
.hero-right {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: center;
  padding: 20px 32px;
  animation: fadeSlideUp .9s .2s var(--ease) both;
}
.hero-device-wrap { position: relative; display: inline-block; }

/* Ambient glow behind device */
.hero-device-glow {
  position: absolute; inset: -70px;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(24,212,98,.2) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: .65; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}

.hero-device-image {
  width: min(100%, 500px); height: auto; object-fit: contain;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,.65));
  animation: floatUp 7s ease-in-out infinite;
  border-radius: 24px;
  border: 1px solid rgba(116,142,189,.16);
  display: block; position: relative; z-index: 1;
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0) rotate(-.25deg); }
  50%       { transform: translateY(-12px) rotate(.25deg); }
}

/* Live-data floating notification cards */
.hero-float {
  position: absolute;
  background: rgba(5,12,28,.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(72,111,169,.3);
  border-radius: 14px;
  padding: 11px 15px;
  display: flex; align-items: center; gap: 11px;
  min-width: 200px;
  box-shadow: 0 20px 50px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
  z-index: 3; opacity: 0;
}
.hero-float-1 {
  top: 10%; right: -6%;
  border-color: rgba(24,212,98,.3);
  animation: hfEnter .6s var(--ease) .9s forwards, floatCard 5.5s ease-in-out 1.5s infinite;
}
.hero-float-2 {
  bottom: 26%; right: -8%;
  animation: hfEnter .6s var(--ease) 1.15s forwards, floatCard 5.5s ease-in-out 1.75s infinite;
}
.hero-float-3 {
  bottom: 5%; left: -4%;
  animation: hfEnter .6s var(--ease) 1.4s forwards, floatCard 5.5s ease-in-out 2s infinite;
}
@keyframes hfEnter {
  from { opacity: 0; transform: translateY(10px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
.hf-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.hf-green { background: rgba(24,212,98,.18);  border: 1px solid rgba(24,212,98,.3); }
.hf-gold  { background: rgba(250,204,21,.14);  border: 1px solid rgba(250,204,21,.3); }
.hf-cyan  { background: rgba(0,229,255,.13);   border: 1px solid rgba(0,229,255,.3); }
.hf-title { font-size: 12px; font-weight: 700; color: #fff; line-height: 1.3; }
.hf-sub   { font-size: 11px; color: var(--ink3); margin-top: 2px; }

/* ─── PHONE MOCKUP (app section) ─────────────────────────── */
.phone-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(ellipse, rgba(24,212,98,.2) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
  animation: glow 4s ease-in-out infinite;
}
@keyframes glow { 0%,100%{opacity:.5;transform:scale(1)}50%{opacity:.95;transform:scale(1.06)} }
.phone-mockup {
  width: 282px;
  background: #1A1A1A; border-radius: 46px;
  border: 8px solid #2A2A2A; padding: 20px 14px 26px;
  box-shadow: 0 40px 90px rgba(0,0,0,.65), 0 0 0 1px #333;
  position: relative;
}
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 88px; height: 26px; background: #1A1A1A;
  border-radius: 0 0 16px 16px; z-index: 2;
}
.phone-screen { background: #F5F5F5; border-radius: 32px; overflow: hidden; height: 530px; }
.ps-header { background: var(--ink); padding: 16px; border-bottom: 1px solid rgba(255,255,255,.06); }
.ps-logo { font-size: 11px; font-weight: 800; color: var(--brand2); letter-spacing: 1px; margin-bottom: 10px; }
.ps-live { display: flex; align-items: center; gap: 5px; font-size: 9px; color: #555; margin-bottom: 10px; font-weight: 600; }
.ps-live .ld { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 1.5s infinite; }
.ps-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.ps-kpi { background: rgba(255,255,255,.05); border-radius: 8px; padding: 8px 6px; text-align: center; }
.ps-kpi-v { font-size: 18px; font-weight: 800; line-height: 1; }
.ps-kpi-l { font-size: 8px; color: #555; margin-top: 2px; font-weight: 600; }
.ps-ai { background: rgba(217,119,6,.08); border: 1px solid rgba(217,119,6,.2); border-radius: 8px; margin: 10px; padding: 10px; }
.ps-ai-tag { font-size: 8px; font-weight: 800; color: var(--gold); margin-bottom: 3px; letter-spacing: .3px; }
.ps-ai-txt { font-size: 10px; color: #888; line-height: 1.5; }
.ps-feed { padding: 0 10px; }
.ps-feed-title { font-size: 8px; color: #bbb; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; padding: 6px 0 4px; }
.ps-row { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,.05); }
.ps-row:last-child { border-bottom: none; }
.ps-av { width: 26px; height: 26px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 800; flex-shrink: 0; }
.ps-emp { flex: 1; }
.ps-emp-name { font-size: 10px; font-weight: 700; color: var(--ink); }
.ps-emp-time { font-size: 8px; color: #bbb; font-weight: 500; font-family: monospace; }
.ps-badge { font-size: 8px; font-weight: 700; padding: 2px 7px; border-radius: 20px; }
.b-ok { background: #DCFCE7; color: #166534; }
.b-late { background: #FEF9C3; color: #854D0E; }
.b-geo { background: #E6FAF8; color: #007A6E; }

/* ─── TICKER ─────────────────────────────────────────────── */
#ticker-bar {
  background: #08152B;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0; display: flex; align-items: center; overflow: hidden;
}
.ticker-label-wrap {
  flex-shrink: 0; padding: 0 24px 0 6%;
  font-size: 11px; font-weight: 700; color: var(--ink3);
  letter-spacing: 1px; text-transform: uppercase; white-space: nowrap;
  border-right: 1px solid var(--border); margin-right: 0;
}
.ticker-scroll-area { flex: 1; overflow: hidden; position: relative; }
.ticker-scroll-area::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 60px;
  background: linear-gradient(90deg, #08152B, transparent); pointer-events: none; z-index: 2;
}
.ticker-scroll-area::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 80px;
  background: linear-gradient(-90deg, #08152B, transparent); pointer-events: none; z-index: 2;
}
.ticker-track { display: flex; width: max-content; animation: scroll 22s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.ticker-item {
  display: flex; align-items: center; gap: 9px;
  padding: 0 28px; font-size: 14px; font-weight: 600;
  color: var(--ink2); white-space: nowrap;
  border-right: 1px solid var(--border);
  transition: color .2s;
}
.ticker-item:hover { color: var(--brand); }
.ticker-item span { font-size: 18px; }

/* ─── STATS ─────────────────────────────────────────────── */
#stats {
  background: #071327; border-bottom: 1px solid var(--border);
  padding: 60px 6%;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-cell {
  text-align: center; padding: 24px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-size: 54px; font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px; line-height: 1;
}
.stat-lbl { font-size: 14px; color: #8AA2CC; margin-top: 8px; font-weight: 500; }

/* ─── GENERIC SECTION ───────────────────────────────────── */
section { padding: 96px 6%; position: relative; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(24,212,98,.1); color: var(--brand);
  font-size: 11px; font-weight: 700; padding: 5px 14px;
  border-radius: 50px; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 16px; border: 1px solid rgba(24,212,98,.2);
}
h2 {
  font-size: clamp(28px, 3.8vw, 48px); font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.08; margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 0%, #c8d8ff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub { font-size: 17px; color: #B7C8E8; max-width: 520px; margin-bottom: 56px; line-height: 1.75; }

/* ─── PROBLEM ───────────────────────────────────────────── */
#problem { background: var(--bg); }
.problem-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.problem-card {
  background: linear-gradient(160deg, rgba(10,24,48,.92), rgba(7,18,36,.92));
  border: 1px solid #203A63; border-radius: var(--radius); padding: 30px;
  backdrop-filter: blur(8px);
  transition: all .3s var(--ease);
  position: relative; overflow: hidden;
}
.problem-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(24,212,98,.04), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.problem-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  opacity: 0; transition: opacity .3s;
}
.problem-card:hover { transform: translateY(-4px); border-color: rgba(24,212,98,.3); box-shadow: 0 20px 48px rgba(3,10,24,.5), 0 0 0 1px rgba(0,229,255,.1); }
.problem-card:hover::before, .problem-card:hover::after { opacity: 1; }
.problem-stat {
  font-size: 54px; font-weight: 800; letter-spacing: -2px; line-height: 1; margin-bottom: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.problem-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.problem-card p  { font-size: 14px; color: #A8BDDF; line-height: 1.75; }

/* ─── HOW IT WORKS ──────────────────────────────────────── */
#how { background: linear-gradient(180deg, #071327, #081a34); }
.steps-wrap { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.steps-line {
  position: absolute; top: 36px;
  left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
  z-index: 0;
}
.step { position: relative; z-index: 1; padding: 0 16px; text-align: center; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 6px 24px rgba(24,212,98,.35), 0 0 0 4px rgba(24,212,98,.1);
  transition: all .3s var(--ease);
}
.step:hover .step-num {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 36px rgba(24,212,98,.5);
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.step p  { font-size: 14px; color: var(--ink2); line-height: 1.7; }

/* ─── PILLARS ───────────────────────────────────────────── */
#pillars { background: var(--bg); }
.pillars-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.pillar-card {
  background: linear-gradient(160deg, rgba(10,24,48,.92), rgba(7,18,36,.92));
  border: 1px solid #203A63; border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all .3s var(--ease); position: relative; overflow: hidden;
}
.pillar-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(24,212,98,.04), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.pillar-card:hover { transform: translateY(-4px); border-color: rgba(24,212,98,.3); box-shadow: 0 20px 48px rgba(3,10,24,.5), 0 0 0 1px rgba(0,229,255,.1); }
.pillar-card:hover::before { opacity: 1; }
.pillar-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(24,212,98,.15), rgba(0,229,255,.08));
  border: 1px solid rgba(24,212,98,.2);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  transition: transform .3s var(--ease);
}
.pillar-card:hover .pillar-icon { transform: scale(1.1) rotate(-3deg); }
.pillar-card h3 { font-size: 20px; font-weight: 700; color: #fff; }
.pillar-card p  { font-size: 14px; color: #A8BDDF; line-height: 1.75; flex: 1; }
.pillar-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.ptag {
  font-size: 12px; font-weight: 600; padding: 4px 12px;
  border-radius: 20px; background: rgba(24,212,98,.1); color: var(--brand);
  border: 1px solid rgba(24,212,98,.2);
}

/* ─── INDUSTRIES ────────────────────────────────────────── */
#industries { background: linear-gradient(180deg, #071327, #08152B); }
.industries-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.ind-card {
  background: linear-gradient(160deg, rgba(10,24,48,.92), rgba(7,18,36,.92));
  border: 1px solid #203A63; border-radius: var(--radius); padding: 26px 20px;
  text-align: center; transition: all .3s var(--ease); cursor: default;
}
.ind-card:hover {
  background: rgba(24,212,98,.07); border-color: rgba(24,212,98,.25);
  transform: translateY(-5px); box-shadow: 0 20px 40px rgba(3,10,24,.4);
}
.ind-icon { font-size: 38px; margin-bottom: 14px; display: block; transition: transform .3s var(--ease); }
.ind-card:hover .ind-icon { transform: scale(1.15) rotate(-5deg); }
.ind-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: #fff; }
.ind-card p  { font-size: 13px; color: var(--ink2); line-height: 1.65; margin-bottom: 12px; }
.ind-mode {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  background: rgba(24,212,98,.1); color: var(--brand);
  border: 1px solid rgba(24,212,98,.2);
}

/* ─── MODES ─────────────────────────────────────────────── */
#modes { background: var(--bg); }
.modes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.mode-card {
  background: linear-gradient(160deg, rgba(10,24,48,.92), rgba(7,18,36,.92));
  border: 1px solid #203A63; border-radius: var(--radius); padding: 28px;
  transition: all .3s var(--ease); position: relative;
}
.mode-card:hover { transform: translateY(-4px); border-color: rgba(24,212,98,.3); box-shadow: 0 20px 48px rgba(3,10,24,.5); }
.mode-card.featured {
  border-color: rgba(24,212,98,.5);
  box-shadow: 0 0 0 2px rgba(24,212,98,.12), 0 8px 32px rgba(24,212,98,.1);
  background: linear-gradient(160deg, rgba(14,32,60,.95), rgba(10,24,48,.92));
}
.mode-badge-top {
  position: absolute; top: -1px; right: 22px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .3px;
  padding: 5px 14px; border-radius: 0 0 10px 10px;
}
.mode-icon { font-size: 30px; margin-bottom: 16px; display: block; transition: transform .3s var(--ease); }
.mode-card:hover .mode-icon { transform: scale(1.15); }
.mode-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.mode-card p  { font-size: 13px; color: var(--ink2); line-height: 1.65; margin-bottom: 14px; }
.mode-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.mode-tag {
  font-size: 11px; font-weight: 600; padding: 4px 10px;
  border-radius: 20px; border: 1px solid var(--border); color: var(--ink3);
}
.mode-card.featured .mode-tag { border-color: rgba(24,212,98,.3); color: var(--brand); background: rgba(24,212,98,.06); }

/* ─── APP SECTION ───────────────────────────────────────── */
#app {
  background: linear-gradient(180deg, #061224, #0A1B34);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px; padding: 96px 6%;
}
.app-features { display: flex; flex-direction: column; gap: 14px; margin-top: 38px; }
.app-feat {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 22px;
  background: linear-gradient(160deg, rgba(10,24,48,.92), rgba(7,18,36,.92));
  border: 1px solid #203A63; border-radius: var(--radius);
  transition: all .3s var(--ease);
}
.app-feat:hover { border-color: rgba(24,212,98,.25); background: rgba(24,212,98,.05); transform: translateX(6px); }
.app-feat-icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(24,212,98,.15), rgba(0,229,255,.08));
  border: 1px solid rgba(24,212,98,.2);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px;
  transition: transform .3s var(--ease);
}
.app-feat:hover .app-feat-icon { transform: scale(1.1) rotate(-5deg); }
.app-feat h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; color: #fff; }
.app-feat p  { font-size: 13px; color: var(--ink2); line-height: 1.65; }
.store-btns { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #1a1a1a, #111);
  color: #fff; padding: 12px 22px; border-radius: 14px;
  text-decoration: none; font-weight: 700; font-size: 14px;
  border: 1px solid #333;
  transition: all .25s var(--ease);
}
.store-btn:hover { background: #222; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.4); border-color: rgba(24,212,98,.3); }
.app-right { display: flex; justify-content: center; }

/* ─── TESTIMONIALS ──────────────────────────────────────── */
#testimonials { background: var(--bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card {
  background: linear-gradient(160deg, rgba(10,24,48,.92), rgba(7,18,36,.92));
  border: 1px solid #203A63; border-radius: var(--radius); padding: 30px;
  backdrop-filter: blur(8px); transition: all .3s var(--ease);
  position: relative; overflow: hidden;
}
.review-card::before {
  content: '"'; position: absolute; top: -16px; right: 18px;
  font-size: 110px; font-weight: 800; color: rgba(24,212,98,.06); line-height: 1;
  font-family: Georgia, serif;
}
.review-card:hover { transform: translateY(-4px); border-color: rgba(24,212,98,.3); box-shadow: 0 20px 48px rgba(3,10,24,.5); }
.review-stars { color: var(--gold); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--ink2); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 700; color: #fff; }
.review-role { font-size: 12px; color: var(--ink3); }

/* ─── PRICING ───────────────────────────────────────────── */
#pricing { background: linear-gradient(180deg, #071327, #081a34); }

.pricing-controls {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 48px; flex-wrap: wrap;
}
.pricing-toggle-group {
  display: flex; background: rgba(255,255,255,.06); border-radius: 50px;
  padding: 4px; gap: 2px; border: 1px solid var(--border);
}
.bill-opt, .curr-opt {
  padding: 7px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600; color: var(--ink3);
  cursor: pointer; transition: all .2s var(--ease);
  border: none; background: none;
}
.bill-opt.on, .curr-opt.on {
  background: var(--brand); color: #fff;
  box-shadow: 0 2px 12px rgba(24,212,98,.3);
}
.pricing-sep { color: var(--border2); font-size: 18px; }
.save-badge {
  background: rgba(24,212,98,.12); color: var(--brand);
  border: 1px solid rgba(24,212,98,.25);
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 50px;
}

.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; align-items: start; }
.pricing-card {
  background: linear-gradient(160deg, rgba(10,24,48,.92), rgba(7,18,36,.92));
  border: 1px solid #203A63; border-radius: 18px; padding: 28px;
  transition: all .3s var(--ease); position: relative;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 24px 56px rgba(3,10,24,.5); border-color: rgba(24,212,98,.25); }
.pricing-card.featured {
  background: linear-gradient(160deg, #0b2040, #0d2848);
  border: 1.5px solid rgba(24,212,98,.5);
  box-shadow: 0 8px 40px rgba(24,212,98,.12), 0 0 0 1px rgba(24,212,98,.08);
  transform: translateY(-8px);
}
.pricing-card.featured:hover { transform: translateY(-12px); box-shadow: 0 28px 64px rgba(24,212,98,.18); }
.pricing-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; font-size: 11px; font-weight: 800;
  padding: 5px 18px; border-radius: 20px; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(24,212,98,.4);
}
.pricing-name { font-size: 17px; font-weight: 700; margin-bottom: 4px; color: #fff; }
.pricing-tagline { font-size: 13px; color: var(--ink3); margin-bottom: 0; }
.pricing-price {
  font-size: 48px; font-weight: 800;
  letter-spacing: -2px; line-height: 1; margin: 20px 0 4px;
  background: linear-gradient(135deg, #fff, #c8d8ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-card.featured .pricing-price {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-price-sym { font-size: 28px; vertical-align: super; }
.pricing-per { font-size: 12px; color: var(--ink3); margin-bottom: 20px; }
.pricing-divider { height: 1px; background: rgba(255,255,255,.06); margin: 18px 0; }
.pricing-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pricing-feat {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--ink2);
}
.pricing-feat::before { content: '✓'; color: var(--brand); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.pricing-feat.no::before { content: '·'; color: var(--ink3); }
.pricing-feat.no { color: var(--ink3); }
.pricing-btn {
  display: block; text-align: center;
  padding: 13px; border-radius: 12px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: all .25s var(--ease); position: relative; overflow: hidden;
}
.pb-brand {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; box-shadow: 0 4px 20px rgba(24,212,98,.3);
}
.pb-brand:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(24,212,98,.5); }
.pb-ghost { border: 1px solid var(--border2); color: var(--ink2); }
.pb-ghost:hover { border-color: var(--brand); color: var(--brand); background: rgba(24,212,98,.06); transform: translateY(-2px); }
.pricing-note { text-align: center; font-size: 13px; color: var(--ink3); margin-top: 24px; }

/* ─── FAQ ───────────────────────────────────────────────── */
#faq { background: var(--bg); }
.faq-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-left h2 { margin-bottom: 14px; }
.faq-left p  { font-size: 15px; color: var(--ink2); line-height: 1.75; margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: linear-gradient(160deg, rgba(10,24,48,.92), rgba(7,18,36,.92));
  border: 1px solid #203A63; border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq-item.open { border-color: rgba(24,212,98,.35); }
.faq-q {
  padding: 20px 24px; font-size: 15px; font-weight: 700;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  user-select: none; transition: color .2s var(--ease);
}
.faq-q:hover { color: var(--brand); }
.faq-item.open .faq-q { color: var(--brand); }
.faq-chevron {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--ink3);
  transition: all .3s var(--ease); flex-shrink: 0;
}
.faq-item.open .faq-chevron { background: rgba(24,212,98,.12); border-color: rgba(24,212,98,.3); color: var(--brand); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
  font-size: 14px; color: var(--ink2); line-height: 1.8; padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 260px; padding: 0 24px 20px; }

/* ─── DEMO / CONTACT ────────────────────────────────────── */
#demo {
  background: linear-gradient(130deg, #040B17, #071731, #051022);
  padding: 96px 6%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.demo-left h2 { margin-bottom: 14px; }
.demo-left p  { font-size: 16px; color: #8AA2CC; line-height: 1.75; margin-bottom: 36px; }
.demo-perks { display: flex; flex-direction: column; gap: 18px; }
.demo-perk { display: flex; align-items: flex-start; gap: 14px; }
.demo-perk-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(24,212,98,.1); border: 1px solid rgba(24,212,98,.2);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.demo-perk h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.demo-perk p  { font-size: 13px; color: #6A88B4; }
.demo-form {
  background: linear-gradient(160deg, rgba(14,28,54,.9), rgba(10,20,40,.9));
  border-radius: 20px; padding: 36px;
  border: 1px solid rgba(72,111,169,.3);
  backdrop-filter: blur(12px);
}
.demo-form h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.demo-form > p { font-size: 14px; color: var(--ink2); margin-bottom: 28px; }
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block; font-size: 11px; font-weight: 700; color: var(--ink3);
  margin-bottom: 6px; letter-spacing: .5px; text-transform: uppercase;
}
.form-row input, .form-row select {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(72,111,169,.25);
  color: #fff; padding: 12px 16px; border-radius: 10px;
  font-size: 14px; font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none; transition: border-color .2s var(--ease), background .2s;
}
.form-row input::placeholder { color: var(--ink3); }
.form-row input:focus, .form-row select:focus {
  border-color: var(--brand); background: rgba(24,212,98,.04);
}
.form-row select option { background: #0d1a31; }
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; padding: 14px; border-radius: 12px; border: none;
  font-size: 15px; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer; transition: all .25s var(--ease);
  box-shadow: 0 4px 20px rgba(24,212,98,.3);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(24,212,98,.5); }
.form-note { font-size: 11px; color: var(--ink3); text-align: center; margin-top: 10px; }
.contact-strip {
  margin-top: 18px; background: rgba(24,212,98,.06);
  border: 1px solid rgba(24,212,98,.15); border-radius: 12px;
  padding: 14px; color: #9FC0FF; font-size: 13px;
}
.contact-strip a { color: var(--brand); text-decoration: none; font-weight: 700; }

/* ─── FINAL CTA ─────────────────────────────────────────── */
#cta {
  background: linear-gradient(135deg, #051830 0%, #092444 40%, #051a30 100%);
  padding: 96px 6%; text-align: center;
  position: relative; overflow: hidden;
}
#cta::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(24,212,98,.08) 0%, transparent 70%);
  top: -200px; right: -100px; pointer-events: none;
  animation: heroGlow 10s ease-in-out infinite;
}
#cta::after {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,.06) 0%, transparent 70%);
  bottom: -100px; left: 5%; pointer-events: none;
}
#cta h2 { font-size: clamp(30px, 4vw, 54px); margin-bottom: 16px; position: relative; z-index: 1; }
#cta p  { color: rgba(255,255,255,.75); font-size: 18px; margin-bottom: 42px; position: relative; z-index: 1; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-cta-white {
  background: #fff; color: #0a1628;
  padding: 15px 34px; border-radius: 50px;
  font-size: 16px; font-weight: 800; text-decoration: none;
  transition: all .25s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 24px rgba(255,255,255,.2);
}
.btn-cta-white:hover { background: rgba(255,255,255,.9); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(255,255,255,.3); }
.btn-cta-outline {
  background: rgba(255,255,255,.08); backdrop-filter: blur(8px);
  color: #fff; padding: 15px 30px; border-radius: 50px;
  font-size: 16px; font-weight: 600; text-decoration: none;
  border: 1px solid rgba(255,255,255,.25);
  transition: all .25s var(--ease); display: inline-flex; align-items: center; gap: 8px;
}
.btn-cta-outline:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); border-color: rgba(255,255,255,.4); }
.subscribe-form {
  margin: 28px auto 0; max-width: 540px;
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  position: relative; z-index: 1;
}
.subscribe-form input {
  flex: 1; min-width: 240px; padding: 14px 20px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08); color: #fff; font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: border-color .2s; outline: none;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,.5); }
.subscribe-form input:focus { border-color: var(--brand); }
.subscribe-form button {
  border: none; background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; font-weight: 800; padding: 14px 26px;
  border-radius: 50px; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .25s var(--ease); box-shadow: 0 4px 16px rgba(24,212,98,.3);
}
.subscribe-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(24,212,98,.5); }
.cta-note { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 18px; position: relative; z-index: 1; }

/* ─── FOOTER ────────────────────────────────────────────── */
footer { background: #040810; color: #888; padding: 60px 6% 32px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { display: flex; align-items: center; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: #4a6080; line-height: 1.75; max-width: 280px; margin-bottom: 18px; }
.footer-markets { display: flex; gap: 8px; flex-wrap: wrap; }
.mkt {
  font-size: 12px; font-weight: 600; padding: 4px 12px;
  border-radius: 6px; background: rgba(255,255,255,.04); border: 1px solid var(--border); color: #4a6080;
}
.footer-col h5 { font-size: 11px; font-weight: 700; color: #3a5070; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: #4a6080; text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  border-top: 1px solid #101824; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; font-size: 13px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.04); border: 1px solid #1a2840;
  display: flex; align-items: center; justify-content: center;
  color: #4a6080; text-decoration: none; font-size: 14px; font-weight: 700;
  transition: all .25s var(--ease);
}
.social-btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-2px); }

/* ─── ANIMATIONS ────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Staggered children */
.problem-grid .problem-card,
.pillars-grid .pillar-card,
.industries-grid .ind-card,
.modes-grid .mode-card,
.reviews-grid .review-card,
.pricing-grid .pricing-card {
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), border-color .3s, box-shadow .3s;
}
.problem-grid.anim .problem-card,
.pillars-grid.anim .pillar-card,
.industries-grid.anim .ind-card,
.modes-grid.anim .mode-card,
.reviews-grid.anim .review-card,
.pricing-grid.anim .pricing-card {
  opacity: 1; transform: translateY(0);
}
/* stagger delays */
.problem-grid .problem-card:nth-child(1), .pillars-grid .pillar-card:nth-child(1),
.industries-grid .ind-card:nth-child(1), .modes-grid .mode-card:nth-child(1),
.reviews-grid .review-card:nth-child(1), .pricing-grid .pricing-card:nth-child(1) { transition-delay: .05s; }
.problem-grid .problem-card:nth-child(2), .pillars-grid .pillar-card:nth-child(2),
.industries-grid .ind-card:nth-child(2), .modes-grid .mode-card:nth-child(2),
.reviews-grid .review-card:nth-child(2), .pricing-grid .pricing-card:nth-child(2) { transition-delay: .12s; }
.problem-grid .problem-card:nth-child(3), .pillars-grid .pillar-card:nth-child(3),
.industries-grid .ind-card:nth-child(3), .modes-grid .mode-card:nth-child(3),
.reviews-grid .review-card:nth-child(3), .pricing-grid .pricing-card:nth-child(3) { transition-delay: .19s; }
.problem-grid .problem-card:nth-child(4), .pillars-grid .pillar-card:nth-child(4),
.industries-grid .ind-card:nth-child(4), .pricing-grid .pricing-card:nth-child(4) { transition-delay: .26s; }
.industries-grid .ind-card:nth-child(5), .modes-grid .mode-card:nth-child(4) { transition-delay: .26s; }
.industries-grid .ind-card:nth-child(6), .modes-grid .mode-card:nth-child(5) { transition-delay: .33s; }
.industries-grid .ind-card:nth-child(7), .modes-grid .mode-card:nth-child(6) { transition-delay: .40s; }
.industries-grid .ind-card:nth-child(8) { transition-delay: .47s; }

/* Steps stagger */
.steps-wrap .step {
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.steps-wrap.anim .step { opacity: 1; transform: translateY(0); }
.steps-wrap .step:nth-child(2) { transition-delay: .1s; }
.steps-wrap .step:nth-child(3) { transition-delay: .2s; }
.steps-wrap .step:nth-child(4) { transition-delay: .3s; }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-card.featured { transform: translateY(-4px); }
}

@media (max-width: 900px) {
  nav .nav-links { display: none; }
  .hamburger { display: flex; }
  #hero, #app, #demo { grid-template-columns: 1fr; padding: 64px 5%; gap: 36px; }
  .hero-left { max-width: 100%; }
  .hero-right { padding: 0; }
  #hero .hero-right { order: -1; }
  .hero-float { display: none; }
  .hero-device-glow { display: none; }
  .phone-mockup { width: 240px; }
  .hero-sub { max-width: 100%; }
  .hero-proof { grid-template-columns: 1fr 1fr 1fr; }
  #stats { grid-template-columns: repeat(2,1fr); }
  .stat-cell { border-bottom: 1px solid var(--border); }
  .stat-cell:nth-child(odd)  { border-right: 1px solid var(--border); }
  .stat-cell:nth-child(even) { border-right: none; }
  .problem-grid, .pillars-grid, .reviews-grid { grid-template-columns: 1fr; }
  .modes-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .faq-wrap { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-wrap { grid-template-columns: repeat(2,1fr); }
  .steps-line { display: none; }
  section { padding: 64px 5%; }
  #app, #demo { padding: 64px 5%; }
}

@media (max-width: 600px) {
  .hero-proof { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .pricing-controls { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-wrap { grid-template-columns: 1fr; }
}
