/* =============================================================
   NEXO IMOB — Landing Page Styles
   Design system: light premium, Inter font
   ============================================================= */

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

:root {
  /* Backgrounds */
  --bg-0:        #F7F9FF;
  --bg-1:        #EEF2FF;
  --bg-2:        #FFFFFF;
  --surface:     rgba(255, 255, 255, 0.92);
  --surface-hov: #FFFFFF;

  /* Borders */
  --border:      rgba(99, 102, 241, 0.14);
  --border-hov:  rgba(79, 103, 240, 0.38);

  /* Brand */
  --primary:   #4F67F0;
  --secondary: #7C3AED;
  --accent:    #06B6D4;
  --green:     #16A34A;

  /* Gradients */
  --grad:      linear-gradient(135deg, #4F67F0 0%, #7C3AED 100%);
  --grad-glow: linear-gradient(135deg, rgba(79,103,240,.12), rgba(124,58,237,.12));

  /* Text */
  --t0: #0F172A;
  --t1: #334155;
  --t2: #64748B;
  --t3: #94A3B8;

  /* Misc */
  --font:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --tr:     all 0.25s var(--ease);
  --tr-s:   all 0.45s var(--ease);

  --shadow-card:      0 2px 16px rgba(15,23,42,.07), 0 0 0 1px rgba(99,102,241,.07);
  --shadow-card-hov:  0 8px 36px rgba(15,23,42,.13), 0 0 0 1px rgba(79,103,240,.18);
  --shadow-glow:      0 0 60px rgba(79,103,240,.18);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg-2);
  color: var(--t1);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1,h2,h3,h4 { color: var(--t0); line-height: 1.15; letter-spacing: -0.025em; }
a { color: inherit; }

.text-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 6px 16px;
  background: rgba(79,103,240,.08);
  border: 1px solid rgba(79,103,240,.2);
  border-radius: 100px;
  margin-bottom: 22px;
}
.badge-label .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}

.section-title {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 900;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--t2);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section    { padding: 100px 0; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: var(--tr);
  white-space: nowrap;
  letter-spacing: -.01em;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 22px rgba(79,103,240,.38);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(79,103,240,.55); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-hov);
  color: var(--t1);
}
.btn-outline:hover { border-color: var(--primary); color: var(--t0); background: rgba(79,103,240,.07); }

.btn-ghost { background: none; color: var(--t1); }
.btn-ghost:hover { color: var(--t0); background: rgba(15,23,42,.06); }

.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: var(--r-md); }

/* ─── NAVIGATION ─────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--tr-s);
}
#nav.scrolled {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(99,102,241,.1);
  box-shadow: 0 1px 20px rgba(15,23,42,.08);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--grad);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text {
  font-size: 19px; font-weight: 900;
  color: var(--t0); letter-spacing: -.04em;
}
.logo-text em { color: var(--primary); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  color: var(--t2); text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 7px 14px; border-radius: var(--r-sm);
  transition: var(--tr);
}
.nav-links a:hover { color: var(--t0); background: rgba(15,23,42,.05); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-mobile-btn {
  display: none; background: none; border: none;
  color: var(--t1); cursor: pointer; padding: 6px;
}

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

/* Soft aurora on light bg */
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.aurora-1 {
  position: absolute;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(79,103,240,.1) 0%, transparent 65%);
  top: -200px; left: -250px;
  animation: aurora-float-1 9s ease-in-out infinite;
}
.aurora-2 {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,.08) 0%, transparent 65%);
  bottom: -150px; right: 5%;
  animation: aurora-float-2 11s ease-in-out infinite;
}
.aurora-3 {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,.06) 0%, transparent 65%);
  top: 40%; right: 25%;
  animation: aurora-float-3 13s ease-in-out infinite;
}
.hero-cityscape {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  width: 100%; height: auto;
  display: block;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--primary);
  padding: 6px 14px;
  background: rgba(79,103,240,.08);
  border: 1px solid rgba(79,103,240,.2);
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fade-up .6s ease-out both;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-headline {
  font-size: clamp(36px, 4.8vw, 62px);
  font-weight: 900; letter-spacing: -.035em;
  line-height: 1.08; margin-bottom: 24px;
  color: var(--t0);
  animation: fade-up .6s .1s ease-out both;
}
.hero-sub {
  font-size: 18px; color: var(--t2); line-height: 1.75;
  margin-bottom: 40px; max-width: 500px;
  animation: fade-up .6s .2s ease-out both;
}
.hero-ctas {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 16px;
  animation: fade-up .6s .3s ease-out both;
}
.hero-trial {
  font-size: 12px; color: var(--t2);
  margin-bottom: 40px;
  animation: fade-up .6s .35s ease-out both;
}

.hero-stores-row {
  display: flex; align-items: center; gap: 10px;
  animation: fade-up .6s .45s ease-out both;
}
.stores-label { font-size: 12px; color: var(--t2); }

.store-btn {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 15px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  text-decoration: none;
  box-shadow: 0 1px 8px rgba(15,23,42,.07);
  transition: var(--tr);
}
.store-btn:hover { border-color: var(--border-hov); box-shadow: 0 4px 16px rgba(79,103,240,.12); }
.store-btn svg { flex-shrink: 0; }
.store-btn-text small {
  display: block; font-size: 9px;
  color: var(--t2); text-transform: uppercase; letter-spacing: .05em;
}
.store-btn-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--t0); }

/* ─── HERO VISUAL (browser mockup) ──────────────────────────── */
.hero-visual {
  position: relative;
  animation: fade-up .8s .2s ease-out both;
}
.browser-wrap { position: relative; display: inline-block; width: 100%; }

/* Browser mockup — light theme */
.hero-visual .browser {
  background: #FFFFFF !important;
  border: 1px solid rgba(99,102,241,.14);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15,23,42,.14), 0 0 0 1px rgba(99,102,241,.08);
}
.hero-visual .browser-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 20px;
  background: #F1F4FD !important;
  border-bottom: 1px solid rgba(99,102,241,.1);
}
/* Keep non-scoped rules for specificity fallback */
.browser {
  background: #FFFFFF;
  border: 1px solid rgba(99,102,241,.14);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15,23,42,.14), 0 0 0 1px rgba(99,102,241,.08);
}
.browser-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 20px;
  background: #F1F4FD;
  border-bottom: 1px solid rgba(99,102,241,.1);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FEBC2E; }
.browser-dots span:nth-child(3) { background: #28C840; }
.browser-url {
  flex: 1; background: rgba(99,102,241,.07);
  border-radius: 6px; padding: 5px 12px;
  font-size: 11px; color: #64748B;
}
.browser-body { padding: 20px; }

/* Dashboard inside browser — light theme */
.dash-greet {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.dash-greet-name { font-size: 15px; font-weight: 700; color: #0F172A; }
.dash-greet-date { font-size: 11px; color: #94A3B8; }

.dash-kpis {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-bottom: 14px;
}
.dash-kpi {
  background: #F1F4FD;
  border: 1px solid rgba(99,102,241,.12);
  border-radius: 10px; padding: 12px;
}
.dash-kpi-n { font-size: 22px; font-weight: 900; color: #0F172A; line-height: 1; }
.dash-kpi-n.green { color: #16A34A; }
.dash-kpi-l { font-size: 10px; color: #94A3B8; margin-top: 3px; }

.dash-map-preview {
  height: 90px;
  background: linear-gradient(135deg, #EEF2FF, #F5F3FF);
  border: 1px solid rgba(99,102,241,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; color: #64748B; font-size: 11px;
  margin-bottom: 14px;
}

.dash-visits-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: #94A3B8; margin-bottom: 8px;
}
.visit-row {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; border-bottom: 1px solid rgba(99,102,241,.07);
}
.visit-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.visit-name { font-size: 11px; font-weight: 600; color: #0F172A; }
.visit-prop { font-size: 10px; color: #94A3B8; }
.visit-time {
  margin-left: auto;
  font-size: 10px; padding: 2px 8px;
  background: rgba(6,182,212,.1); color: #0891B2;
  border-radius: 100px;
}

/* Floating cards — white on light landing */
.float-card {
  position: absolute;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(99,102,241,.14);
  border-radius: var(--r-md);
  padding: 12px 16px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 8px 32px rgba(15,23,42,.12);
  pointer-events: none;
}
.fc-1 { top: 18%; left: -110px; animation: fc-float-1 6s ease-in-out infinite; }
.fc-2 { bottom: 22%; right: -100px; animation: fc-float-2 7.5s ease-in-out infinite; }
.fc-lbl { font-size: 10px; color: #94A3B8; margin-bottom: 4px; white-space: nowrap; }
.fc-val { font-size: 20px; font-weight: 800; color: #0F172A; line-height: 1.1; }
.fc-sub { font-size: 10px; color: #16A34A; margin-top: 3px; }

/* ─── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  padding: 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-cell {
  padding: 28px 16px;
  border-right: 1px solid var(--border);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  display: block;
  font-size: 38px; font-weight: 900; color: var(--t0);
  letter-spacing: -.04em; line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl { font-size: 13px; color: var(--t2); }

/* ─── FEATURES ───────────────────────────────────────────────── */
.features-header { text-align: center; margin-bottom: 64px; }
.features-header .section-sub { margin: 0 auto; }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feat-card {
  background: var(--bg-2);
  border: 1px solid rgba(99,102,241,.1);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative; overflow: hidden;
  box-shadow: 0 2px 12px rgba(15,23,42,.06);
  transition: var(--tr);
}
.feat-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad);
  opacity: 0;
  transition: var(--tr);
}
.feat-card:hover { border-color: var(--border-hov); transform: translateY(-4px); box-shadow: var(--shadow-card-hov); }
.feat-card:hover::after { opacity: 1; }

.feat-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.ic-blue   { background: rgba(79,103,240,.13); }
.ic-purple { background: rgba(124,58,237,.13); }
.ic-teal   { background: rgba(6,182,212,.13); }
.ic-green  { background: rgba(34,197,94,.13); }
.ic-orange { background: rgba(249,115,22,.13); }
.ic-pink   { background: rgba(236,72,153,.13); }

.feat-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feat-desc  { font-size: 14px; color: var(--t2); line-height: 1.7; }

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.hiw { background: var(--bg-1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hiw-header { text-align: center; margin-bottom: 64px; }
.hiw-header .section-sub { margin: 0 auto; }

.hiw-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; position: relative;
}
.hiw-steps::before {
  content: '';
  position: absolute;
  top: 31px;
  left: calc(16.666% + 24px);
  right: calc(16.666% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: .25;
}
.hiw-step { text-align: center; padding: 0 8px; }
.step-num {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: #fff;
  margin: 0 auto 24px;
  position: relative; z-index: 1;
  box-shadow: 0 0 40px rgba(79,103,240,.38);
}
.step-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.step-desc  { font-size: 14px; color: var(--t2); line-height: 1.7; }

/* ─── PRICING ────────────────────────────────────────────────── */
.pricing-header { text-align: center; margin-bottom: 16px; }
.pricing-header .section-sub { margin: 0 auto; }

.pricing-toggle {
  display: inline-flex; align-items: center; gap: 0;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px;
  margin: 24px auto 0;
  box-shadow: 0 1px 6px rgba(15,23,42,.07);
}
.tog-btn {
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  cursor: pointer; border: none; background: none;
  color: var(--t2); font-family: var(--font);
  transition: var(--tr);
  display: flex; align-items: center; gap: 6px;
}
.tog-btn.active { background: var(--grad); color: #fff; }
.save-chip {
  font-size: 10px; font-weight: 700;
  padding: 2px 7px;
  background: rgba(34,197,94,.12); color: var(--green);
  border-radius: 100px;
}

.plan-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: start;
  margin-top: 44px;
}
.plan-card {
  background: var(--bg-2);
  border: 1px solid rgba(99,102,241,.1);
  border-radius: var(--r-xl);
  padding: 36px;
  position: relative;
  box-shadow: 0 2px 16px rgba(15,23,42,.07);
  transition: var(--tr);
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hov); }
.plan-card.pop {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(79,103,240,.06) 0%, var(--bg-2) 100%);
  box-shadow: 0 4px 40px rgba(79,103,240,.15), 0 0 0 1px rgba(79,103,240,.2);
}
.pop-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad);
  color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 18px; border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--t2); margin-bottom: 10px;
}
.plan-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 6px; }
.plan-cur  { font-size: 16px; font-weight: 600; color: var(--t1); }
.plan-amt  { font-size: 52px; font-weight: 900; color: var(--t0); letter-spacing: -.04em; line-height: 1; }
.plan-per  { font-size: 13px; color: var(--t2); }
.plan-desc {
  font-size: 13px; color: var(--t2); line-height: 1.6;
  padding-bottom: 24px; margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  min-height: 44px;
}
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.plan-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--t1); }
.plan-feats li svg { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.plan-cta  { width: 100%; padding: 13px; font-size: 14px; }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--bg-2);
  border: 1px solid rgba(99,102,241,.1);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 0 2px 16px rgba(15,23,42,.07);
}
.testi-stars { color: #FBBF24; font-size: 14px; margin-bottom: 14px; }
.testi-text  { font-size: 14px; color: var(--t1); line-height: 1.7; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
}
.testi-name { font-size: 13px; font-weight: 700; color: var(--t0); }
.testi-role { font-size: 11px; color: var(--t2); }

/* ─── CTA FINAL ──────────────────────────────────────────────── */
.cta-final {
  background: linear-gradient(135deg, #EEF2FF 0%, #F5F3FF 100%);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(79,103,240,.08) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title { font-size: clamp(28px, 4vw, 50px); font-weight: 900; margin-bottom: 18px; }
.cta-sub   { font-size: 17px; color: var(--t2); margin-bottom: 40px; }
.cta-btns  {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; margin-bottom: 20px;
}
.cta-note  { font-size: 12px; color: var(--t2); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 60px 0 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { font-size: 13px; color: var(--t2); line-height: 1.75; margin-top: 14px; max-width: 270px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--t2); margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13px; color: var(--t2); text-decoration: none; transition: var(--tr); }
.footer-col a:hover { color: var(--t0); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--t2);
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes aurora-float-1 {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(35px,-25px); }
}
@keyframes aurora-float-2 {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(-25px,35px); }
}
@keyframes aurora-float-3 {
  0%,100% { transform: translate(0,0); }
  33%      { transform: translate(20px,-15px); }
  66%      { transform: translate(-15px,20px); }
}
@keyframes fc-float-1 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes fc-float-2 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.85); }
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }
.d6 { transition-delay: .48s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-content { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .hero-sub, .hero-ctas { margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-stores-row { justify-content: center; }
  .hero-visual { display: flex; justify-content: center; }
  .float-card  { display: none; }
  .feat-grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-mobile-btn { display: flex; }
  .feat-grid  { grid-template-columns: 1fr; }
  .hiw-steps  { grid-template-columns: 1fr; gap: 36px; }
  .hiw-steps::before { display: none; }
  .plan-grid  { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: none; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .browser-wrap { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-stores-row { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
