/* Arsal Billing iCafe — Premium Marketing Site v2 */
:root {
  --bg: #030712;
  --bg-2: #0a0f1e;
  --bg-card: rgba(12, 20, 40, 0.65);
  --glass: rgba(255, 255, 255, 0.04);
  --border: rgba(6, 182, 212, 0.12);
  --border-bright: rgba(6, 182, 212, 0.35);
  --text: #f1f5f9;
  --text-muted: #8b9cb8;
  --cyan: #22d3ee;
  --cyan-dim: #0891b2;
  --purple: #a78bfa;
  --gold: #fbbf24;
  --green: #34d399;
  --red: #f87171;
  --grad: linear-gradient(135deg, #22d3ee 0%, #818cf8 45%, #c084fc 100%);
  --grad-gold: linear-gradient(135deg, #fbbf24, #f59e0b);
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --display: 'Syne', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── BACKGROUND ── */
#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 20% -10%, rgba(34, 211, 238, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 20%, rgba(129, 140, 248, 0.14), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(192, 132, 252, 0.1), transparent 55%);
  animation: auroraShift 14s ease-in-out infinite alternate;
}
@keyframes auroraShift {
  0% { opacity: 0.85; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}
.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── LOADER ── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: grid;
  place-content: center;
  gap: 1.25rem;
  transition: opacity 0.5s, visibility 0.5s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.page-loader span {
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.loader-ring {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border: 2px solid var(--border);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(3, 7, 18, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  border-color: var(--border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.9rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--grad);
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(34, 211, 238, 0.35);
}
.logo-mark svg { width: 20px; height: 20px; }
.logo-mark.sm { width: 34px; height: 34px; }
.logo-mark.sm svg { width: 18px; height: 18px; }
.logo-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.logo-text em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav {
  display: flex;
  gap: 1.85rem;
  margin-left: auto;
}
.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: width 0.25s;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 12px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-glow {
  background: var(--grad);
  color: var(--bg);
  box-shadow: 0 4px 28px rgba(34, 211, 238, 0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-glow:hover { box-shadow: 0 8px 40px rgba(34, 211, 238, 0.5); }
.btn-glass {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--border-bright);
  backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(34, 211, 238, 0.08); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn-lg { padding: 0.95rem 1.85rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ── HERO ── */
.hero {
  padding: 9rem 0 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem 0.45rem 0.75rem;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero h1 .line { display: block; }
.hero h1 .dim { color: var(--text-muted); }
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-lead strong { color: var(--text); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.5rem; }
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.metric strong {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric span { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.metric-divider { width: 1px; height: 36px; background: var(--border); }

/* ── HERO VISUAL ── */
.hero-visual { position: relative; }
.visual-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.15), transparent 65%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.dashboard-mock {
  position: relative;
  background: rgba(10, 15, 30, 0.85);
  border: 1px solid var(--border-bright);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 60px rgba(34, 211, 238, 0.08);
  backdrop-filter: blur(12px);
  animation: floatMock 7s ease-in-out infinite;
}
@keyframes floatMock {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.3deg); }
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.r { background: #ef4444; }
.dot.y { background: #eab308; }
.dot.g { background: #22c55e; }
.mock-title {
  flex: 1;
  margin-left: 0.35rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--mono);
}
.mock-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-family: var(--mono);
  color: var(--green);
  font-weight: 700;
}
.pulse {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
}
.mock-body { padding: 1rem; }
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.mock-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem 0.5rem;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
}
.mock-stat.highlight { border-color: rgba(34, 211, 238, 0.4); background: rgba(34, 211, 238, 0.06); }
.mock-stat .label { display: block; font-size: 0.62rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.mock-stat .val { font-size: 1.05rem; font-weight: 700; font-family: var(--mono); }
.mock-stat .val.cyan { color: var(--cyan); }
.mock-stat .val.gold { color: var(--gold); font-size: 0.78rem; }
.mock-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
}
.pc-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.35rem;
  font-size: 0.65rem;
  text-align: center;
  transition: all 0.35s ease;
}
.pc-card span { display: block; font-weight: 700; font-family: var(--mono); font-size: 0.68rem; }
.pc-card small { color: var(--text-muted); font-size: 0.58rem; }
.pc-card.active {
  border-color: rgba(34, 211, 238, 0.55);
  background: rgba(34, 211, 238, 0.1);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.15);
}
.pc-card.active span { color: var(--cyan); }
.pc-card.pause { border-color: rgba(251, 191, 36, 0.45); background: rgba(251, 191, 36, 0.08); }
.pc-card.idle { opacity: 0.55; }
.mock-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
}
.mock-chip {
  font-size: 0.62rem;
  font-family: var(--mono);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.mock-chip.green { color: var(--green); border-color: rgba(52, 211, 153, 0.3); }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.9rem;
  background: rgba(12, 20, 40, 0.92);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  font-size: 0.78rem;
  animation: floatCard 5s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 0.82rem; }
.float-card small { color: var(--text-muted); font-size: 0.68rem; }
.fc-icon { font-size: 1.25rem; }
.float-card-1 { top: -12px; right: -20px; animation-delay: 0s; }
.float-card-2 { bottom: 20px; left: -28px; animation-delay: 1.5s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── MARQUEE ── */
.marquee-wrap {
  margin-top: 4rem;
  padding: 1.1rem 0;
  border-block: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee {
  display: flex;
  gap: 2.5rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee span {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.marquee span:nth-child(odd) { color: rgba(34, 211, 238, 0.6); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
.section { padding: 6rem 0; position: relative; z-index: 1; }
.section-head { margin-bottom: 3rem; max-width: 640px; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 0.85rem;
}
.section h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── PAIN ── */
.pain {
  background: linear-gradient(180deg, rgba(248, 113, 113, 0.04), transparent);
  border-block: 1px solid rgba(248, 113, 113, 0.08);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.65rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(248, 113, 113, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.pain-card:hover::before { opacity: 1; }
.pain-num {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  opacity: 0.7;
  margin-bottom: 0.85rem;
}
.pain-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.55rem; }
.pain-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── BENTO ── */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.65rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-bright);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.bento-hero {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.07), rgba(129, 140, 248, 0.06));
  border-color: rgba(34, 211, 238, 0.22);
}
.bento-glow {
  position: absolute;
  top: -50%; right: -30%;
  width: 60%; height: 100%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12), transparent 70%);
  pointer-events: none;
}
.bento-wide { grid-column: span 2; }
.bento-icon { font-size: 1.85rem; margin-bottom: 0.85rem; }
.bento-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 0.5rem; }
.bento-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.bento-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.1rem;
}
.bento-tags li {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
  color: var(--cyan);
}

/* ── SHOWCASE ── */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.showcase-list { list-style: none; margin-top: 2rem; display: grid; gap: 1.25rem; }
.showcase-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.3s;
}
.showcase-list li:hover { border-color: var(--border-bright); }
.sl-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  background: var(--grad);
  color: var(--bg);
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
}
.showcase-list strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.showcase-list span { font-size: 0.85rem; color: var(--text-muted); }

.kiosk-frame {
  background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
  border-radius: calc(var(--radius) + 8px);
  padding: 12px;
  box-shadow: var(--shadow), 0 0 80px rgba(129, 140, 248, 0.12);
  border: 1px solid rgba(129, 140, 248, 0.2);
}
.kiosk-screen {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, #0c1225 0%, #060a14 100%);
  border: 1px solid var(--border);
}
.kiosk-header {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}
.kiosk-time { color: var(--cyan); font-weight: 700; }
.kiosk-body { padding: 1.75rem 1.25rem; text-align: center; }
.kiosk-avatar {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  background: rgba(34, 211, 238, 0.1);
  border: 2px solid var(--border-bright);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
}
.kiosk-user, .kiosk-balance { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.35rem; }
.kiosk-user strong, .kiosk-balance strong { color: var(--text); }
.kiosk-games {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin: 1.25rem 0;
}
.game-tile {
  width: 52px; height: 52px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  transition: transform 0.2s, border-color 0.2s;
  cursor: default;
}
.game-tile:hover { transform: scale(1.08); border-color: var(--border-bright); }
.kiosk-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.progress {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 65%;
  background: var(--grad);
  border-radius: 99px;
  animation: progressPulse 3s ease-in-out infinite;
}
@keyframes progressPulse {
  0%, 100% { width: 65%; }
  50% { width: 58%; }
}
.kiosk-lock {
  padding: 0.55rem;
  text-align: center;
  font-size: 0.68rem;
  font-family: var(--mono);
  color: var(--green);
  background: rgba(52, 211, 153, 0.06);
  border-top: 1px solid rgba(52, 211, 153, 0.15);
}

/* ── COMPARE ── */
.compare-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 1rem;
}
.compare-card {
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
}
.compare-old {
  background: rgba(248, 113, 113, 0.04);
  border-color: rgba(248, 113, 113, 0.15);
}
.compare-new {
  background: rgba(34, 211, 238, 0.05);
  border-color: rgba(34, 211, 238, 0.2);
  box-shadow: 0 0 60px rgba(34, 211, 238, 0.06);
}
.compare-label {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.compare-old .compare-label { color: var(--red); }
.compare-new .compare-label { color: var(--cyan); }
.compare-card ul { list-style: none; display: grid; gap: 0.75rem; }
.compare-card li {
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
}
.compare-card li::before {
  position: absolute;
  left: 0;
  font-size: 0.85rem;
}
.compare-card li.bad::before { content: '✕'; color: var(--red); }
.compare-card li.warn::before { content: '!'; color: var(--gold); }
.compare-card li.good { color: var(--text); font-weight: 500; }
.compare-card li.good::before { content: '✓'; color: var(--green); }
.compare-vs {
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-muted);
  opacity: 0.5;
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding-left: 2rem;
  max-width: 680px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), var(--purple), transparent);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 16px; height: 16px;
  background: var(--bg);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.4);
}
.tl-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.tl-content:hover { border-color: var(--border-bright); transform: translateX(4px); }
.tl-step {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tl-content h3 { font-size: 1.05rem; font-weight: 700; margin: 0.35rem 0 0.4rem; }
.tl-content p { font-size: 0.88rem; color: var(--text-muted); }

/* ── STATS ── */
.stats {
  padding: 4rem 0;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.06), rgba(192, 132, 252, 0.06));
  border-block: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-val {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ── QUOTES ── */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.3s, border-color 0.3s;
}
.quote-card:hover { transform: translateY(-4px); border-color: var(--border-bright); }
.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 1rem; }
.quote-card p { font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.25rem; color: var(--text); }
.quote-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-style: normal;
}
.avatar {
  width: 40px; height: 40px;
  background: var(--grad);
  color: var(--bg);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.quote-card footer strong { display: block; font-size: 0.88rem; }
.quote-card footer small { font-size: 0.75rem; color: var(--text-muted); }

/* ── PRICING ── */
.pricing-card {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.25);
}
.pricing-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(192, 132, 252, 0.1));
  pointer-events: none;
}
.pricing-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem;
}
.pricing-inner p { color: var(--text-muted); max-width: 32rem; margin-top: 0.5rem; line-height: 1.7; }
.pricing-actions { text-align: center; }
.pricing-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ── FAQ ── */
.faq-list { max-width: 720px; display: grid; gap: 0.75rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: var(--border-bright); }
.faq-item summary {
  padding: 1.15rem 1.35rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--cyan);
  transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.35rem 1.15rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-perks { list-style: none; margin: 1.75rem 0; display: grid; gap: 0.55rem; }
.contact-perks li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.contact-perks span {
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  background: rgba(52, 211, 153, 0.1);
  border-radius: 6px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
}
.contact-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}
.contact-wa:hover { opacity: 0.8; }
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 2rem;
  display: grid;
  gap: 1rem;
  backdrop-filter: blur(12px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
}
.form-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.75rem 0 5rem;
  position: relative;
  z-index: 1;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.85rem; }
.footer-brand p { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.1rem; }
.footer-links { display: flex; gap: 1.75rem; margin-left: auto; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-copy { width: 100%; font-size: 0.75rem; color: var(--text-muted); opacity: 0.6; }

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  background: var(--grad);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(34, 211, 238, 0.45);
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
}
.sticky-cta.visible { transform: none; opacity: 1; }
.sticky-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(34, 211, 238, 0.55); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; max-width: 520px; margin: 0 auto; }
  .float-card-1 { right: 0; top: -8px; }
  .float-card-2 { left: 0; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-hero { grid-column: span 2; grid-row: span 1; }
  .bento-wide { grid-column: span 2; }
  .showcase-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .compare-cards { grid-template-columns: 1fr; }
  .compare-vs { padding: 0.5rem 0; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(3, 7, 18, 0.97);
    backdrop-filter: blur(20px);
    padding: 1.25rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
  }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .hero { padding-top: 7rem; min-height: auto; }
  .hero-metrics { flex-wrap: wrap; gap: 1rem; }
  .metric-divider { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: 1fr; }
  .bento-hero, .bento-wide { grid-column: span 1; }
  .mock-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-inner { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .footer-links { margin-left: 0; width: 100%; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .pain-grid { grid-template-columns: 1fr; }
  .float-card { display: none; }
  .sticky-cta { bottom: 1rem; right: 1rem; left: 1rem; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
