/* ═══════════════════════════════════════════════════════════
   ReStock — Premium Dark Cinematic Theme
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --brand: #09c4b1;
  --brand-dark: #078f82;
  --brand-light: rgba(9, 196, 177, 0.08);
  --brand-glow: rgba(9, 196, 177, 0.4);

  --bg: #050709;
  --bg-card: #0a0e16;
  --bg-card-hover: #0e1320;
  --bg-elevated: #111827;
  --bg-surface: rgba(255,255,255,0.025);

  --text: #edf0f7;
  --text-sub: #7a8ba8;
  --text-muted: #3e4c63;

  --border: rgba(255,255,255,0.05);
  --border-hover: rgba(9,196,177,0.25);
  --glass: rgba(10,14,22,0.75);
  --glass-border: rgba(255,255,255,0.07);

  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --ease-premium: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Hide scrollbar for the premium feel */
body::-webkit-scrollbar { width: 6px; }
body::-webkit-scrollbar-track { background: transparent; }
body::-webkit-scrollbar-thumb { background: rgba(9,196,177,0.2); border-radius: 10px; }
body::-webkit-scrollbar-thumb:hover { background: rgba(9,196,177,0.4); }

h1, h2, h3, h4, h5, h6, .nav-logo span, .stat-number {
  font-family: 'Satoshi', 'DM Sans', system-ui, sans-serif;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.link-brand { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.link-brand:hover { color: #22e0ca; }

/* ═══ Gradient Text ═══ */
.gradient-text {
  background: linear-gradient(135deg, #09c4b1 0%, #22e0ca 35%, #5eead4 65%, #a7f3d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradientShift 8s ease-in-out infinite alternate;
}
@keyframes gradientShift {
  0% { background-position: 0% center; }
  100% { background-position: 100% center; }
}

/* ═══ Ambient Light Separator ═══ */
.section-divider {
  height: 1px; position: relative; overflow: visible;
}
.section-divider::after {
  content: ''; position: absolute;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 300px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(9,196,177,0.2), transparent);
}
.section-divider::before {
  content: ''; position: absolute;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 200px; height: 40px;
  background: radial-gradient(ellipse, rgba(9,196,177,0.04), transparent);
  filter: blur(10px);
}

/* ═══ Loading Screen ═══ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease-premium), visibility 0.8s;
}
.loader.hidden {
  opacity: 0; visibility: hidden;
  pointer-events: none;
}
.loader-inner { text-align: center; }
.loader-logo {
  width: 56px; height: 56px; margin: 0 auto 28px;
  animation: loaderPulse 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(9,196,177,0.15));
}
.loader-logo img { width: 100%; height: 100%; border-radius: 14px; }
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}
.loader-bar {
  width: 120px; height: 3px; border-radius: 10px;
  background: rgba(255,255,255,0.06); overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0; border-radius: 10px;
  background: linear-gradient(90deg, var(--brand), #22e0ca);
  animation: loaderFill 1.8s var(--ease-smooth) forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ═══ Navbar ═══ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(6,8,13,0.6);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease-premium);
}
#navbar.scrolled {
  background: rgba(6,8,13,0.85);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
  font-weight: 800; font-size: 20px; letter-spacing: -0.02em;
}
.logo-img { width: 34px; height: 34px; border-radius: 10px; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  text-decoration: none; color: var(--text-sub); font-size: 14px; font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:not(.nav-discord)::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--brand); transform: scaleX(0);
  transition: transform 0.3s var(--ease-premium);
  transform-origin: center;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:not(.nav-discord):hover::after { transform: scaleX(1); }

.nav-discord {
  color: #818cf8 !important; display: flex; align-items: center;
  transition: all 0.3s;
}
.nav-discord:hover { color: #a5b4fc !important; transform: scale(1.1); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #06080d !important; padding: 9px 22px;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 700;
  text-decoration: none; transition: all 0.3s var(--ease-premium);
  letter-spacing: 0.01em;
  box-shadow: 0 0 20px rgba(9,196,177,0.15);
}
.nav-cta svg { transition: transform 0.3s; }
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(9,196,177,0.3);
}
.nav-cta:hover svg { transform: translateX(3px); }

.nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-mobile-btn span {
  display: block; width: 20px; height: 2px; background: var(--text);
  margin: 4px 0; border-radius: 2px; transition: 0.3s;
}
.nav-mobile { display: none; }

/* ═══ Hero — Cinematic Full-Screen ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
  padding-bottom: 40px;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}

/* Subtle grid lines */
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black, transparent);
}

.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(100px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px; top: -200px; left: -150px;
  background: rgba(9,196,177,0.12);
  animation: orbFloat 16s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px; bottom: -100px; right: -100px;
  background: rgba(88,101,242,0.08);
  animation: orbFloat 20s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 350px; height: 350px; top: 20%; right: 20%;
  background: rgba(139,92,246,0.06);
  animation: orbFloat 14s ease-in-out infinite;
  animation-delay: -6s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.98); }
  75% { transform: translate(30px, 10px) scale(1.03); }
}

.hero-noise {
  position: absolute; inset: 0;
  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)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(6,8,13,0.6) 100%);
  pointer-events: none;
}

.hero-container {
  position: relative; z-index: 2;
  padding-top: 140px;
  text-align: center;
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.hero-center { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(9,196,177,0.06);
  color: #5eead4;
  padding: 8px 22px; border-radius: 100px; font-size: 13px; font-weight: 600;
  margin-bottom: 36px;
  border: 1px solid rgba(9,196,177,0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(9,196,177,0.04);
  letter-spacing: 0.01em;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22e0ca;
  animation: dotPulse 2s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(34,224,202,0.6);
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px rgba(34,224,202,0.6); }
  50% { opacity: 0.4; transform: scale(0.7); box-shadow: 0 0 4px rgba(34,224,202,0.3); }
}

.hero h1 {
  font-size: clamp(42px, 6.5vw, 78px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
  color: #f1f5f9;
  text-shadow: 0 0 80px rgba(9,196,177,0.06);
}
.hero-line {
  display: block;
  overflow: hidden;
}
.hero-line .gradient-text {
  display: inline-block;
  text-shadow: none;
}

.hero-sub {
  font-size: 17px; color: #7a8ba8; max-width: 560px;
  margin: 0 auto 40px; line-height: 1.75;
}

.hero-actions {
  display: flex; gap: 14px; margin-bottom: 44px;
  justify-content: center; flex-wrap: wrap;
  position: relative;
}
/* Subtle glow behind CTA buttons */
.hero-actions::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 60px;
  background: radial-gradient(ellipse, rgba(9,196,177,0.12), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}

.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brand); color: #06080d; padding: 16px 32px;
  border-radius: var(--radius-sm); font-size: 15px; font-weight: 700;
  text-decoration: none; transition: all 0.35s var(--ease-premium);
  box-shadow: 0 0 40px rgba(9,196,177,0.2), 0 4px 16px rgba(0,0,0,0.3);
  position: relative; overflow: hidden;
  letter-spacing: 0.01em;
}
.btn-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 60px rgba(9,196,177,0.35), 0 12px 30px rgba(0,0,0,0.4);
}
.btn-hero:hover::before { opacity: 1; }
.btn-hero svg { transition: transform 0.3s; }
.btn-hero:hover svg { transform: translateX(4px); }

.btn-hero-large { padding: 18px 40px; font-size: 16px; }

.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04); color: var(--text-sub);
  padding: 16px 28px;
  border-radius: var(--radius-sm); font-size: 15px; font-weight: 600;
  text-decoration: none; border: 1px solid var(--glass-border);
  transition: all 0.35s var(--ease-premium);
  backdrop-filter: blur(10px);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--text);
  transform: translateY(-2px);
}

/* Hero trust */
.hero-trust { display: flex; align-items: center; gap: 16px; justify-content: center; }
.hero-avatars { display: flex; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 12px; font-weight: 700;
  border: 2px solid var(--bg);
  margin-right: -8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-trust-text { display: flex; flex-direction: column; gap: 4px; }
.hero-trust-stars { display: flex; gap: 2px; }
.hero-trust-text span { font-size: 13px; color: #7a8ba8; }
.hero-trust-text strong { color: #e2e8f0; }

/* ═══ Hero 3D Mockup ═══ */
.hero-mockup-scene {
  position: relative;
  margin-top: 72px;
  perspective: 1400px;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}

.hero-mockup-glow {
  position: absolute;
  top: -20%; left: -15%; right: -15%; bottom: -20%;
  background: radial-gradient(ellipse at center, rgba(9,196,177,0.12), transparent 60%);
  z-index: -1; filter: blur(60px);
  animation: glowPulse 5s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  from { opacity: 0.4; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1.05); }
}

.hero-mockup-reflection {
  position: absolute;
  bottom: -40%; left: 10%; right: 10%;
  height: 60%;
  background: linear-gradient(to bottom, rgba(9,196,177,0.04), transparent 60%);
  transform: scaleY(-1) perspective(800px) rotateX(20deg);
  filter: blur(20px);
  opacity: 0.4;
  pointer-events: none;
}

.hero-mockup {
  transform: rotateX(12deg) rotateY(-4deg) rotateZ(1deg);
  transition: transform 0.8s var(--ease-premium);
  transform-style: preserve-3d;
  will-change: transform;
  animation: mockupBreathe 6s ease-in-out infinite;
}
@keyframes mockupBreathe {
  0%, 100% { transform: rotateX(12deg) rotateY(-4deg) rotateZ(1deg) translateY(0); }
  50% { transform: rotateX(12deg) rotateY(-4deg) rotateZ(1deg) translateY(-8px); }
}

.hero-mockup-inner {
  border-radius: 16px; overflow: hidden;
  background: #0c1018;
  box-shadow:
    0 80px 160px rgba(0,0,0,0.55),
    0 30px 60px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 80px rgba(9,196,177,0.03),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.mockup-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mockup-dots { display: flex; gap: 7px; }
.mockup-dots span {
  width: 11px; height: 11px; border-radius: 50%;
  box-shadow: inset 0 -1px 2px rgba(0,0,0,0.15);
}
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }
.mockup-title {
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  letter-spacing: 0.04em; text-transform: uppercase;
}

.hero-mockup-inner img {
  width: 100%; display: block;
  transition: opacity 0.6s;
}

/* Shimmer overlay on mockup for premium feel */
.hero-mockup-inner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.02) 45%,
    rgba(255,255,255,0.04) 50%,
    rgba(255,255,255,0.02) 55%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: shimmer 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.hero-mockup-inner { position: relative; }

/* Floating notification cards */
.floating-card {
  position: absolute; z-index: 10;
  display: flex; align-items: center; gap: 14px;
  background: rgba(10,14,22,0.88);
  backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.03),
    inset 0 1px 0 rgba(255,255,255,0.05);
  opacity: 0;
  animation: floatCard 0.8s var(--ease-premium) forwards;
}
.float-card-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-card-label { display: block; font-size: 11px; color: var(--text-sub); font-weight: 500; }
.float-card-value { display: block; font-size: 15px; font-weight: 700; color: var(--text); white-space: nowrap; }

.float-card-1 { top: 15%; left: -5%; animation-delay: 1.5s; }
.float-card-2 { top: 35%; right: -8%; animation-delay: 2s; }
.float-card-3 { bottom: 15%; left: -3%; animation-delay: 2.5s; }

@keyframes floatCard {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Continuous float after appear */
.float-card-1 { animation: floatCard 0.8s var(--ease-premium) 1.5s forwards, floatHover1 6s ease-in-out 2.3s infinite; }
.float-card-2 { animation: floatCard 0.8s var(--ease-premium) 2s forwards, floatHover2 7s ease-in-out 2.8s infinite; }
.float-card-3 { animation: floatCard 0.8s var(--ease-premium) 2.5s forwards, floatHover3 8s ease-in-out 3.3s infinite; }

@keyframes floatHover1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatHover2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes floatHover3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 3;
}
.scroll-mouse {
  width: 24px; height: 38px; border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex; justify-content: center; padding-top: 8px;
}
.scroll-dot {
  width: 3px; height: 8px; border-radius: 3px;
  background: var(--brand);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}
.scroll-indicator span { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em; }

/* ═══ Social Proof Bar ═══ */
.social-proof {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
}
.social-proof .container { text-align: center; }
.social-proof p {
  font-size: 11px; color: var(--text-muted); margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600;
}
.platform-logos { display: flex; justify-content: center; gap: 52px; flex-wrap: wrap; }
.platform-logos span {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px; font-weight: 700; color: #2a3349;
  transition: all 0.4s var(--ease-premium);
}
.platform-logos span:hover { color: var(--text-sub); text-shadow: 0 0 20px rgba(9,196,177,0.2); }

/* ═══ Section Headers ═══ */
.section-header { text-align: center; max-width: 660px; margin: 0 auto 80px; }
.section-badge {
  display: inline-block;
  background: rgba(9,196,177,0.05);
  color: var(--brand);
  padding: 6px 20px; border-radius: 100px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 22px;
  border: 1px solid rgba(9,196,177,0.08);
}
.section-header h2 {
  font-size: clamp(32px, 4.2vw, 50px); font-weight: 800;
  line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.035em;
  color: var(--text);
}
.section-header p { color: var(--text-sub); font-size: 16px; line-height: 1.8; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ═══ Problem Section ═══ */
.problem-section {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(10,14,22,0.4) 50%, var(--bg) 100%);
  position: relative;
}
.problem-section::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(239,68,68,0.015), transparent 60%);
  pointer-events: none;
}

.comparison-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 900px; margin: 0 auto;
}
.comparison-card {
  border-radius: var(--radius); padding: 40px 32px;
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease-premium);
  position: relative; overflow: hidden;
}
.comparison-card::before {
  content: ''; position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.5s;
}
.comparison-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}
.comparison-card:hover::before { opacity: 1; }

.comparison-before {
  background: rgba(239,68,68,0.03);
  border-color: rgba(239,68,68,0.1);
}
.comparison-before::before { background: radial-gradient(ellipse at top left, rgba(239,68,68,0.04), transparent 60%); }
.comparison-after {
  background: rgba(9,196,177,0.03);
  border-color: rgba(9,196,177,0.1);
}
.comparison-after::before { background: radial-gradient(ellipse at top left, rgba(9,196,177,0.04), transparent 60%); }

.comparison-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; margin-bottom: 24px;
  padding: 6px 16px; border-radius: 100px;
}
.comparison-before .comparison-label { background: rgba(239,68,68,0.1); color: #f87171; }
.comparison-after .comparison-label { background: rgba(9,196,177,0.1); color: var(--brand); }
.comparison-card ul { list-style: none; }
.comparison-card li {
  font-size: 14px; color: var(--text-sub); padding: 10px 0;
  padding-left: 28px; position: relative; line-height: 1.6;
}
.comparison-before li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 10px; height: 2px; background: #ef4444; border-radius: 1px;
}
.comparison-after li::before {
  content: ''; position: absolute; left: 2px; top: 14px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px rgba(9,196,177,0.3);
}

/* ═══ Features ═══ */
.features {
  padding: 130px 0;
  position: relative;
}
.features::before {
  content: ''; position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(9,196,177,0.04), transparent 70%);
  pointer-events: none;
}

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.feature-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 28px 36px;
  transition: all 0.5s var(--ease-premium);
  overflow: hidden;
}
/* Top accent line — hidden by default, appears on hover */
.feature-card::after {
  content: ''; position: absolute; top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0; transition: opacity 0.5s, left 0.5s, right 0.5s;
}
.feature-card:hover::after { opacity: 0.6; left: 10%; right: 10%; }

.feature-glow {
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(9,196,177,0.05), transparent 35%);
  opacity: 0; transition: opacity 0.5s;
  pointer-events: none;
}
.feature-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.22), 0 0 40px rgba(9,196,177,0.04);
}
.feature-card:hover .feature-glow { opacity: 1; }

.feature-highlight {
  background: linear-gradient(160deg, rgba(9,196,177,0.05), rgba(9,196,177,0.01));
  border-color: rgba(9,196,177,0.12);
}
.feature-highlight::after { opacity: 0.3; }

.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; position: relative;
  transition: box-shadow 0.5s;
}
.feature-card:hover .icon-teal { box-shadow: 0 0 20px rgba(9,196,177,0.15); }
.feature-card:hover .icon-blue { box-shadow: 0 0 20px rgba(59,130,246,0.15); }
.feature-card:hover .icon-green { box-shadow: 0 0 20px rgba(34,197,94,0.15); }
.feature-card:hover .icon-purple { box-shadow: 0 0 20px rgba(168,85,247,0.15); }
.feature-card:hover .icon-orange { box-shadow: 0 0 20px rgba(249,115,22,0.15); }
.feature-card:hover .icon-red { box-shadow: 0 0 20px rgba(239,68,68,0.15); }
.icon-teal { background: rgba(9,196,177,0.1); color: #09c4b1; }
.icon-blue { background: rgba(59,130,246,0.1); color: #60a5fa; }
.icon-green { background: rgba(34,197,94,0.1); color: #4ade80; }
.icon-purple { background: rgba(168,85,247,0.1); color: #c084fc; }
.icon-orange { background: rgba(249,115,22,0.1); color: #fb923c; }
.icon-red { background: rgba(239,68,68,0.1); color: #f87171; }

.feature-card h3 {
  font-size: 17px; font-weight: 700; margin-bottom: 10px;
  letter-spacing: -0.01em; color: var(--text);
}
.feature-card p { font-size: 14px; color: var(--text-sub); line-height: 1.7; }

.feature-tag {
  position: absolute; top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--brand), #22e0ca); color: #06080d;
  padding: 4px 14px; border-radius: 100px; font-size: 11px; font-weight: 800;
  letter-spacing: 0.02em;
}

/* ═══ Showcases ═══ */
.showcases { padding: 100px 0 140px; }

.showcase-row {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 88px;
  align-items: center; margin-bottom: 140px;
}
.showcase-row:last-child { margin-bottom: 0; }
.showcase-row-reverse { direction: rtl; }
.showcase-row-reverse > * { direction: ltr; }

.showcase-visual {
  position: relative;
  perspective: 1000px;
}
.showcase-glow {
  position: absolute; inset: -25%;
  background: radial-gradient(ellipse at center, rgba(9,196,177,0.05), transparent 55%);
  filter: blur(50px); pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite alternate;
}

.showcase-img-wrap {
  position: relative;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.04),
    0 0 60px rgba(9,196,177,0.02);
  transition: all 0.7s var(--ease-out-expo);
  background: var(--bg-card);
  transform: rotateY(-2deg) rotateX(1deg);
}
.showcase-row-reverse .showcase-img-wrap {
  transform: rotateY(2deg) rotateX(1deg);
}
.showcase-img-wrap:hover {
  border-color: var(--border-hover);
  box-shadow:
    0 50px 120px rgba(0,0,0,0.4),
    0 0 50px rgba(9,196,177,0.06),
    0 0 0 1px rgba(9,196,177,0.08);
  transform: rotateY(0deg) rotateX(0deg) translateY(-6px) scale(1.01);
}
.showcase-img-wrap img { width: 100%; display: block; }

/* Reflection under showcase images */
.showcase-visual::after {
  content: '';
  position: absolute; bottom: -30px; left: 10%; right: 10%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(9,196,177,0.04), transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

.showcase-text .section-badge { margin-bottom: 20px; }
.showcase-text h2 {
  font-size: clamp(28px, 3.2vw, 40px); font-weight: 800;
  line-height: 1.15; margin-bottom: 22px; letter-spacing: -0.025em;
  color: var(--text);
}
.showcase-text p {
  font-size: 15px; color: var(--text-sub); line-height: 1.8; margin-bottom: 32px;
}
.showcase-list { list-style: none; }
.showcase-list li {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--text); padding: 11px 0;
  font-weight: 500;
  transition: transform 0.3s var(--ease-premium);
}
.showcase-list li:hover {
  transform: translateX(4px);
}

/* ═══ Testimonials ═══ */
.testimonials {
  padding: 130px 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(12,16,24,0.5) 50%, var(--bg) 100%);
}

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.testimonial-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 36px;
  transition: all 0.5s var(--ease-premium);
  overflow: hidden;
}
.testimonial-card::before {
  content: ''; position: absolute; top: 0; left: 25%; right: 25%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(9,196,177,0.15), transparent);
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22), 0 0 30px rgba(9,196,177,0.03);
  transform: translateY(-5px);
}

.testimonial-quote {
  position: absolute; top: 16px; right: 24px;
  font-family: 'Satoshi', serif;
  font-size: 72px; font-weight: 900;
  color: rgba(9,196,177,0.06); line-height: 1;
  pointer-events: none;
}

.testimonial-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.testimonial-text {
  font-size: 15px; color: var(--text-sub); line-height: 1.75;
  margin-bottom: 28px; position: relative;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 15px; font-weight: 700; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.testimonial-author strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ═══ How it Works ═══ */
.how-it-works { padding: 130px 0; }

.steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; }
.step {
  text-align: center; flex: 1; max-width: 300px; padding: 44px 28px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease-premium);
}
.step:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2), 0 0 20px rgba(9,196,177,0.04);
  transform: translateY(-4px);
}
.step-num {
  width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--brand), #22e0ca);
  color: #050709; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 22px;
  box-shadow: 0 8px 24px rgba(9,196,177,0.25), 0 0 40px rgba(9,196,177,0.08);
  transition: box-shadow 0.4s, transform 0.4s;
}
.step:hover .step-num {
  box-shadow: 0 8px 24px rgba(9,196,177,0.3), 0 0 60px rgba(9,196,177,0.12);
  transform: scale(1.05);
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.step p { font-size: 14px; color: var(--text-sub); line-height: 1.65; }

.step-connector {
  display: flex; align-items: center; padding-top: 70px;
  width: 60px; flex-shrink: 0;
}
.step-line {
  width: 100%; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(9,196,177,0.2) 0 6px, transparent 6px 12px);
}

/* ═══ Stats Section ═══ */
.stats-section {
  padding: 80px 0;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-bg-anim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 50%, rgba(9,196,177,0.06), transparent),
    radial-gradient(ellipse 30% 50% at 20% 50%, rgba(88,101,242,0.03), transparent);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  position: relative; z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 24px;
  border-radius: var(--radius-sm);
  transition: all 0.4s var(--ease-premium);
  position: relative;
}
/* Vertical dividers between stats */
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.06), transparent);
}
.stat-item:hover { background: rgba(255,255,255,0.015); }
.stat-number {
  font-size: clamp(38px, 5.5vw, 56px); font-weight: 900;
  color: white; line-height: 1; display: inline;
}
.stat-suffix {
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 700;
  color: var(--brand); display: inline;
}
.stat-label {
  font-size: 14px; font-weight: 500; color: var(--text-sub);
  margin-top: 10px;
}

/* ═══ Pricing ═══ */
.pricing {
  padding: 130px 0;
  position: relative;
}
.pricing::before {
  content: ''; position: absolute;
  top: 10%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(9,196,177,0.03), transparent 60%);
  pointer-events: none;
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1000px; margin: 0 auto;
}

.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 28px; text-align: center;
  transition: all 0.5s var(--ease-premium);
  overflow: hidden;
}
.price-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(9,196,177,0.03), transparent 60%);
  opacity: 0; transition: opacity 0.5s;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25), 0 0 30px rgba(9,196,177,0.05);
}
.price-card:hover::before { opacity: 1; }

.price-popular {
  border-color: rgba(9,196,177,0.25);
  background: linear-gradient(180deg, rgba(9,196,177,0.06) 0%, rgba(9,196,177,0.02) 30%, var(--bg-card) 100%);
  box-shadow:
    0 0 0 1px rgba(9,196,177,0.15),
    0 24px 60px rgba(0,0,0,0.25),
    0 0 80px rgba(9,196,177,0.04);
  transform: scale(1.05);
  z-index: 2;
}
.price-popular:hover {
  transform: scale(1.05) translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(9,196,177,0.25),
    0 32px 80px rgba(0,0,0,0.3),
    0 0 100px rgba(9,196,177,0.06);
}

.popular-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), #22e0ca); color: #050709;
  padding: 7px 24px; border-radius: 0 0 12px 12px; font-size: 12px; font-weight: 800;
  white-space: nowrap; letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(9,196,177,0.2);
}

.price-name {
  font-size: 14px; font-weight: 600; color: var(--text-sub);
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em;
}
.price-amount { display: flex; align-items: baseline; justify-content: center; gap: 2px; margin-bottom: 8px; }
.price-currency { font-size: 24px; font-weight: 700; color: var(--text-sub); }
.price-value {
  font-family: 'Satoshi', sans-serif; font-size: 60px; font-weight: 900;
  line-height: 1; color: var(--text);
  transition: color 0.4s;
}
.price-popular .price-value {
  background: linear-gradient(180deg, #ffffff 20%, #09c4b1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-period { font-size: 15px; color: var(--text-sub); font-weight: 500; margin-left: 4px; }
.price-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }

.price-features { list-style: none; text-align: left; margin-bottom: 36px; }
.price-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-sub); padding: 8px 0;
}
.price-features strong { color: var(--text); }

.btn-price {
  display: block; padding: 14px 24px; border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text); font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all 0.35s var(--ease-premium);
  position: relative;
}
.btn-price:hover {
  border-color: var(--brand);
  background: rgba(9,196,177,0.06);
  box-shadow: 0 0 20px rgba(9,196,177,0.1);
  transform: translateY(-2px);
}

.btn-price-primary {
  background: var(--brand); border-color: var(--brand); color: #06080d;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(9,196,177,0.2);
}
.btn-price-primary:hover {
  background: #22e0ca; border-color: #22e0ca;
  box-shadow: 0 12px 32px rgba(9,196,177,0.3);
}

.pricing-guarantee {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 48px; font-size: 14px; color: var(--text-sub);
}

/* ═══ FAQ ═══ */
.faq {
  padding: 130px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(12,16,24,0.5) 100%);
}

.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.faq-item:hover { border-bottom-color: rgba(255,255,255,0.1); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; background: none; border: none;
  font-size: 15px; font-weight: 600; color: var(--text);
  cursor: pointer; text-align: left; font-family: inherit;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--brand); }
.faq-q svg { transition: transform 0.4s var(--ease-premium); flex-shrink: 0; color: var(--text-sub); }
.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--brand); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-premium), padding 0.5s;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 24px; }
.faq-a p { font-size: 14px; color: var(--text-sub); line-height: 1.75; }

/* ═══ Final CTA ═══ */
.final-cta {
  padding: 180px 0; text-align: center;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.final-cta-bg {
  position: absolute; inset: 0;
}
.final-cta-orb {
  position: absolute; border-radius: 50%; filter: blur(120px);
}
.final-cta-orb-1 {
  width: 600px; height: 600px; bottom: -200px; left: 50%;
  transform: translateX(-50%);
  background: rgba(9,196,177,0.1);
  animation: orbFloat 12s ease-in-out infinite;
}
.final-cta-orb-2 {
  width: 400px; height: 400px; top: -100px; right: 10%;
  background: rgba(88,101,242,0.05);
  animation: orbFloat 16s ease-in-out infinite reverse;
}

.final-cta-content { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(34px, 5vw, 56px); font-weight: 900;
  line-height: 1.1; margin-bottom: 22px; color: var(--text); letter-spacing: -0.03em;
}
.final-cta p { color: var(--text-sub); font-size: 17px; margin-bottom: 44px; line-height: 1.75; }
.final-cta-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 24px;
}
.final-cta-sub { font-size: 13px; color: var(--text-muted); }

/* ═══ Footer ═══ */
footer {
  padding: 72px 0 36px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  position: relative;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 400px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(9,196,177,0.12), transparent);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo { color: var(--text); }
.footer-brand p { font-size: 13px; color: var(--text-sub); margin-top: 14px; max-width: 280px; line-height: 1.65; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: #818cf8; transition: all 0.3s var(--ease-premium); text-decoration: none;
}
.footer-social-link:hover {
  background: rgba(88,101,242,0.1); border-color: rgba(88,101,242,0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(88,101,242,0.15);
}
.footer-col h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-sub); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--text-sub);
  text-decoration: none; padding: 5px 0; transition: color 0.3s;
}
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--text-sub); }

/* ═══ Legal Pages ═══ */
.legal-page { padding: 140px 0 80px; }
.legal-page h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 8px; color: var(--text); }
.legal-updated { font-size: 13px; color: var(--text-sub); margin-bottom: 48px; }
.legal-content { max-width: 760px; }
.legal-content h2 { font-size: 18px; font-weight: 700; margin: 36px 0 12px; padding-top: 12px; border-top: 1px solid var(--border); color: var(--text); }
.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content p { font-size: 15px; color: var(--text-sub); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { margin: 8px 0 16px 20px; }
.legal-content li { font-size: 15px; color: var(--text-sub); line-height: 1.8; margin-bottom: 4px; }
.legal-content a { color: var(--brand); text-decoration: underline; }
.legal-content a:hover { color: #22e0ca; }
.legal-info-block { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px 24px; margin: 12px 0 20px; }
.legal-info-block p { margin-bottom: 4px; }

/* ═══ Scroll Animations ═══ */
[data-anim="fade-up"] {
  opacity: 0; transform: translateY(44px) scale(0.98);
  transition: opacity 0.9s ease, transform 0.9s var(--ease-out-expo);
}
[data-anim="fade-up"].visible { opacity: 1; transform: translateY(0) scale(1); }
[data-delay="0"] { transition-delay: 0s; }
[data-delay="1"] { transition-delay: 0.15s; }
[data-delay="2"] { transition-delay: 0.3s; }
[data-delay="3"] { transition-delay: 0.5s; }
[data-delay="4"] { transition-delay: 0.7s; }
[data-delay="5"] { transition-delay: 0.95s; }

/* ═══ Responsive ═══ */
@media (max-width: 1024px) {
  .hero h1 { font-size: clamp(36px, 5vw, 56px); }
  .hero-mockup-scene { max-width: 700px; }
  .float-card-1, .float-card-3 { left: 0; }
  .float-card-2 { right: 0; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-btn { display: block; }
  .nav-mobile {
    display: none; flex-direction: column; padding: 16px 24px 20px;
    border-top: 1px solid var(--border);
    background: rgba(6,8,13,0.95); backdrop-filter: blur(20px);
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a {
    padding: 12px 0; font-size: 15px; color: var(--text-sub);
    text-decoration: none; font-weight: 500; transition: color 0.3s;
  }
  .nav-mobile a:hover { color: var(--text); }
  .nav-cta-mobile {
    display: block; text-align: center; margin-top: 10px;
    background: var(--brand); color: #06080d !important; padding: 12px;
    border-radius: var(--radius-sm); font-weight: 700;
  }

  .hero { min-height: auto; padding-bottom: 60px; }
  .hero-container { padding-top: 120px; }
  .hero h1 { font-size: clamp(32px, 7vw, 48px); }
  .hero-sub { font-size: 15px; }
  .hero-mockup-scene { margin-top: 48px; }
  .hero-mockup { transform: rotateX(8deg) rotateY(-2deg) rotateZ(0.5deg); }
  .floating-card { display: none; }
  .scroll-indicator { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .price-popular { transform: none; order: -1; }
  .price-popular:hover { transform: translateY(-4px); }

  .comparison-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .showcase-row, .showcase-row-reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .showcase-text { text-align: center; }
  .showcase-list li { justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stat-item::after { display: none; }

  .steps { flex-direction: column; align-items: center; }
  .step-connector { display: none; }
  .step { max-width: 100%; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .final-cta { padding: 100px 0; }
  .final-cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-container { padding-top: 100px; }
  .hero h1 { font-size: 30px; }
  .hero-mockup-scene { margin-top: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-actions { width: 100%; }
  .btn-hero, .btn-hero-secondary { width: 100%; justify-content: center; }
}
