/* ============================================================
   PUMPADS — Global Stylesheet
   ============================================================ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --bg:          #06111f;
  --surface-1:   #0c1d32;
  --surface-2:   #112540;
  --accent:      #F5C842;
  --accent-dark: #d9ac2e;
  --border:      rgba(255, 255, 255, 0.09);
  --text:        #90b3d0;
  --text-muted:  #4a6a8a;
  --text-white:  #eef4ff;
  --success:     #50C878;
  --error:       #ff4d4d;
  --max-w:       1100px;
  --r-card:      12px;
  --r-btn:       7px;
  --r-input:     7px;
  --ease:        0.2s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.06;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); font-weight: 700; letter-spacing: -0.01em; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text); line-height: 1.75; }

.label {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section    { padding: 90px 0; }
.section-alt { background: var(--surface-1); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--r-btn);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 197, 71, 0.28);
}
.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-ghost:hover {
  background: var(--accent);
  color: #0a0a0a;
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 0 24px;
  transition: background var(--ease), backdrop-filter var(--ease), box-shadow var(--ease);
}
.nav.scrolled {
  background: rgba(6, 17, 31, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-white); }

.nav-cta { padding: 10px 20px; font-size: 0.9rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(6, 17, 31, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 199;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-white);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--ease);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 12px; }

/* ── Hero (Home) ─────────────────────────────────────────────── */
.hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(144,179,208,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(245,200,66,0.22) 0%, transparent 68%);
  border-radius: 50%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 440px; height: 440px;
  background: radial-gradient(ellipse at center, rgba(232,197,71,0.055) 0%, transparent 68%);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

/* Centered hero variant */
.hero-centered {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.hero-centered .hero-sub  { margin-left: auto; margin-right: auto; }
.hero-centered .hero-actions { justify-content: center; }

/* ── Hero Split Layout ───────────────────────────────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-split-text .label { margin-bottom: 20px; }
.hero-split-text h1     { margin-bottom: 24px; }
.hero-split-text h1 em  { font-style: normal; color: var(--accent); }
.hero-centered h1 mark  { background: transparent; color: var(--accent); font-style: normal; }
.hero-sub {
  font-size: 1.08rem;
  color: var(--text);
  max-width: 820px;
  margin-top: 32px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Hero Dashboard Card ─────────────────────────────────────── */
/* ── Hero Unit Photo ─────────────────────────────────────────── */
.hero-unit-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  transform: rotate(-2deg);
}
.hero-unit-wrap::after {
  content: '';
  position: absolute;
  bottom: -28px;
  left: 15%;
  right: 15%;
  height: 80px;
  background: radial-gradient(ellipse, rgba(245,200,66,0.32) 0%, transparent 70%);
  filter: blur(18px);
  z-index: 0;
}
.hero-unit-img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
/* Overlay — top display panel (covers brand logo area) */
.hup-top {
  position: absolute;
  top: 4.5%;
  left: 9%;
  right: 9%;
  bottom: 73%;
  background: linear-gradient(160deg, #1a60b0 0%, #0f4282 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.hup-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hup-slot {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
/* Overlay — bottom display panel (covers ad text area) */
.hup-bottom {
  position: absolute;
  top: 50%;
  left: 9%;
  right: 9%;
  bottom: 13%;
  background: linear-gradient(180deg, #1462ba 0%, #0a3e82 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hup-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: white;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.hup-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.56rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
/* Floating scan stats badge */
.hup-badge {
  position: absolute;
  right: -22%;
  bottom: 26%;
  z-index: 4;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}
.hup-badge-n {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hup-badge-info { display: flex; flex-direction: column; }
.hup-badge-l {
  font-size: 0.65rem;
  color: var(--text-white);
  font-weight: 600;
  white-space: nowrap;
}
.hup-badge-t {
  font-size: 0.6rem;
  color: #50C878;
  font-weight: 600;
  margin-top: 2px;
}

/* ── Station Showcase ────────────────────────────────────────── */
.station-showcase {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: var(--bg);
}
.st-layers {
  position: relative;
  width: 100%;
  height: 100%;
}
.st-layer-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.st-bg-img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center 40%;
  will-change: transform;
}
.st-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(6, 17, 31, 0.92) 0%,
    rgba(6, 17, 31, 0.68) 48%,
    rgba(6, 17, 31, 0.18) 100%
  );
  z-index: 1;
}
.st-layer-unit {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 8%;
  pointer-events: none;
}
.st-unit-img {
  height: 100%;
  width: auto;
  max-width: 360px;
  object-fit: contain;
  filter: drop-shadow(0 20px 64px rgba(0, 0, 0, 0.8));
  will-change: transform;
}

/* Live stats card inside showcase */
.st-live-card {
  background: rgba(6, 17, 31, 0.88);
  border: 1px solid rgba(245, 200, 66, 0.18);
  border-top: 2px solid var(--accent);
  border-radius: 16px;
  padding: 28px 28px 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}
.st-live-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.st-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #50C878;
  animation: hd-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.st-live-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.st-live-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.st-live-stat:last-child { border-bottom: none; }
.st-live-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(245,200,66,0.1);
  border: 1px solid rgba(245,200,66,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.st-live-stat > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.st-live-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.st-live-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.st-layer-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
}
.st-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.st-text .label { margin-bottom: 16px; }
.st-text h2     { margin-bottom: 20px; }
.st-text p      { font-size: 1.05rem; max-width: 420px; }
.st-text h2 em  { font-style: normal; color: var(--accent); }

/* Floating stat chips */
.st-layer-stats {
  position: absolute;
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.st-stat-chip {
  background: rgba(6, 17, 31, 0.78);
  border: 1px solid rgba(245, 200, 66, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 10px;
  padding: 14px 20px;
  min-width: 220px;
}
.st-stat-num {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.st-stat-desc {
  display: block;
  font-size: 0.74rem;
  color: var(--text);
  line-height: 1.35;
  max-width: 180px;
}

@media (max-width: 900px) {
  .station-showcase  { height: auto; padding: 80px 0; }
  .st-content-grid   { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .st-overlay        { background: rgba(6,17,31,0.82); }
  .st-live-card      { display: none; }
  .st-text p         { max-width: 100%; }
}

/* ── Social Proof Bar ────────────────────────────────────────── */
.proof-bar {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.proof-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: nowrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}
.proof-item svg { color: var(--accent); flex-shrink: 0; }

/* ── Section Headers ─────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .label { margin-bottom: 14px; }
.section-header h2 {
  position: relative;
  padding-bottom: 20px;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.section-header p {
  margin-top: 16px;
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Step Cards ──────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 32px;
  transition: border-color var(--ease), transform var(--ease);
}
.step-card:hover {
  border-color: rgba(232,197,71,0.3);
  border-left-color: var(--accent);
  transform: translateY(-4px);
}
.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.28;
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.step-card h3 { margin-bottom: 12px; font-size: 1.25rem; }

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.94rem;
  transition: gap var(--ease);
}
.learn-more:hover { gap: 10px; }

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--ease), transform var(--ease);
}
.pricing-card:hover {
  border-color: rgba(232,197,71,0.22);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: #0e1e10;
}
.pricing-card.featured:hover {
  box-shadow: 0 12px 40px rgba(232,197,71,0.15);
}
.pricing-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-price .amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}
.pricing-price .period { color: var(--text-muted); font-size: 0.9rem; }
.pricing-desc { font-size: 0.93rem; color: var(--text); line-height: 1.55; }
.pricing-features { display: flex; flex-direction: column; gap: 11px; flex: 1; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.pricing-feature svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.pricing-trial {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* ── Pricing Toggle ─────────────────────────────────────────── */
.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 52px;
}
.pt-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 26px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}
.pt-btn.active {
  background: var(--accent);
  color: #111;
  font-weight: 700;
}
.pt-save {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(80,200,120,0.15);
  color: #50C878;
  border: 1px solid rgba(80,200,120,0.3);
  border-radius: 100px;
  padding: 2px 8px;
  letter-spacing: 0.02em;
}

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.tcard {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.tcard:hover {
  transform: translateY(-6px);
  border-color: rgba(245,200,66,0.2);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}
.tcard-stars {
  display: flex;
  gap: 3px;
}
.tcard-stars svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.tcard-quote {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.tcard-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.tcard-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
}
.tcard-title {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Free Trial Banner ───────────────────────────────────────── */
.trial-banner {
  background: linear-gradient(135deg, #0c1d32 0%, #081628 100%);
  border: 1px solid rgba(232,197,71,0.22);
  border-radius: var(--r-card);
  padding: 68px 48px;
  text-align: center;
}
.trial-banner h2 { margin-bottom: 20px; }
.trial-banner p  { max-width: 580px; margin: 0 auto 36px; font-size: 1.05rem; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, var(--surface-1) 0%, #040d18 100%);
  border-top: 1px solid var(--border);
}

/* Top: centered logo + tagline */
.footer-top {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
}
.footer-top-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo-img {
  height: 72px;
  width: auto;
  max-width: 220px;
  mix-blend-mode: screen;
  margin-bottom: 4px;
  object-fit: contain;
}
.footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-logo span { color: var(--accent); }
.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* Middle: horizontal nav row */
.footer-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 0;
  padding: 28px 20px;
  border-bottom: 1px solid var(--border);
}
.footer-nav-row a {
  color: var(--text);
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  padding: 0 14px;
  transition: color var(--ease);
}
.footer-nav-row a:hover { color: var(--text-white); }
.footer-nav-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

/* Bottom: copyright + socials */
.footer-bottom-bar {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color var(--ease), border-color var(--ease), transform var(--ease);
}
.footer-social:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero {
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -160px;
  width: 480px; height: 480px;
  background: radial-gradient(ellipse at center, rgba(232,197,71,0.08) 0%, transparent 68%);
  border-radius: 50%;
}
.page-hero .label { margin-bottom: 16px; }
.page-hero h1     { margin-bottom: 20px; }
.page-hero p      { font-size: 1.1rem; max-width: 580px; }

/* ── Stat Cards ──────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 30px 24px;
  text-align: center;
  transition: border-color var(--ease), transform var(--ease);
}
.stat-card:hover {
  border-color: rgba(232,197,71,0.28);
  transform: translateY(-4px);
}
.stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); line-height: 1.45; }

/* ── Business Type Tags ──────────────────────────────────────── */
.tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}
.tag {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 0.88rem;
  color: var(--text);
  transition: border-color var(--ease), color var(--ease);
}
.tag:hover { border-color: var(--accent); color: var(--accent); }

/* ── Feature Cards ───────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 32px;
  transition: border-color var(--ease), transform var(--ease);
}
.feature-card:hover {
  border-color: rgba(232,197,71,0.22);
  transform: translateY(-4px);
}
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(232,197,71,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.feature-card h3 { font-size: 1.2rem; margin-bottom: 12px; }

/* ── Form ────────────────────────────────────────────────────── */
.form-box {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 52px 48px;
}
.form-header { margin-bottom: 40px; }
.form-header h2 { margin-bottom: 12px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

label { font-size: 0.86rem; font-weight: 600; color: var(--text); }
label .req { color: var(--accent); margin-left: 2px; }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-input);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-white);
  width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,197,71,0.1);
}
input.error, select.error, textarea.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(255,77,77,0.1);
}
.field-error { font-size: 0.78rem; color: var(--error); display: none; }
.field-error.show { display: block; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}
select option { background: var(--surface-2); }
textarea { resize: vertical; min-height: 120px; }

.radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-label {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text);
  transition: border-color var(--ease), background var(--ease), color var(--ease);
}
.radio-label:has(input:checked) {
  border-color: var(--accent);
  background: rgba(232,197,71,0.08);
  color: var(--text-white);
}
.radio-label input[type="radio"] { accent-color: var(--accent); }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  line-height: 1.55;
}
.checkbox-label input[type="checkbox"] {
  width: 17px; height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1.05rem;
  margin-top: 8px;
}

/* ── Success Message ─────────────────────────────────────────── */
.success-message {
  display: none;
  text-align: center;
  padding: 64px 40px;
}
.success-message.show { display: block; }
.success-icon {
  width: 72px; height: 72px;
  background: rgba(80,200,120,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--success);
}
.success-message h2 { margin-bottom: 16px; }
.success-message p { max-width: 460px; margin: 0 auto; font-size: 1.05rem; }

/* ── Timeline ────────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 56px;
  display: flex;
  flex-direction: column;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 18px; top: 16px; bottom: 16px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent) 0%, rgba(232,197,71,0.1) 100%);
}
.timeline-item {
  position: relative;
  padding-bottom: 56px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -56px; top: 2px;
  width: 36px; height: 36px;
  background: var(--surface-1);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.timeline-item h3 { margin-bottom: 12px; font-size: 1.45rem; }
.timeline-item p  { max-width: 620px; }

/* ── Ad Unit Diagram ─────────────────────────────────────────── */
.diagram-wrap {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}
.diagram-wrap svg { max-width: 520px; width: 100%; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  background: var(--surface-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-white);
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
}
.faq-q:hover   { background: var(--surface-2); }
.faq-q.open    { color: var(--accent); }

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 18px; height: 18px;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.faq-icon::before { width: 2px; height: 12px; top: 3px; left: 8px; }
.faq-icon::after  { width: 12px; height: 2px; top: 8px; left: 3px; }
.faq-q.open .faq-icon::before { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.32s ease;
}
.faq-answer.open { max-height: 320px; }
.faq-a-inner {
  padding: 0 28px 22px;
  background: var(--surface-1);
}
.faq-a-inner p { font-size: 0.93rem; }

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0c1d32 0%, #081628 100%);
  border: 1px solid rgba(232,197,71,0.22);
  border-radius: var(--r-card);
  padding: 64px 48px;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p  { margin: 0 auto 32px; max-width: 480px; font-size: 1.02rem; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 52px;
  align-items: start;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(232,197,71,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
}
.contact-detail-text p   { font-size: 0.9rem; }
.contact-detail-text a   { color: var(--accent); font-weight: 600; }

.contact-note {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin-top: 32px;
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ── Scroll Animations ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ── Utility ─────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-12 { margin-top: 12px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.mb-24 { margin-bottom: 24px; }
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-split { gap: 32px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .nav-links   { display: none; }
  .hamburger   { display: flex; }

  .hero        { padding: 72px 0 60px; }
  .hero-split  { grid-template-columns: 1fr; gap: 40px; }
  .hero-unit-wrap { display: none; }

  .steps-grid        { grid-template-columns: 1fr; }
  .pricing-grid      { grid-template-columns: 1fr; }
  .features-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-nav-row { gap: 4px 0; }

  .proof-bar-inner { flex-direction: column; gap: 14px; flex-wrap: wrap; }

  .form-box    { padding: 36px 24px; }
  .form-grid   { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  .contact-layout { grid-template-columns: 1fr; }

  .trial-banner,
  .cta-banner  { padding: 48px 24px; }

  .timeline    { padding-left: 44px; }
  .timeline::before { left: 14px; }
  .timeline-dot { left: -44px; width: 28px; height: 28px; font-size: 0.65rem; }

  .radio-group { flex-direction: column; }
  .radio-label { width: 100%; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.9rem; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
}
