/* ============================================================
   DRIPOFF AI — Premium Design System (Jeton-Inspired)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Variables ── */
:root {
  --bg: #060611;
  --bg-card: rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.14);
  --text: #ffffff;
  --text-2: #94a3b8;
  --text-3: #64748b;
  --accent-1: #6EE7B7;
  --accent-2: #3B82F6;
  --gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Syne', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max-w: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none !important;
}
a, button, .step-card, .sg-card, .service-feature { cursor: none !important; }

/* ── Premium Futuristic Cursor ── */
#cursorInner, #cursorOuter {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(calc(var(--x, 0px) - 50%), calc(var(--y, 0px) - 50%));
  will-change: transform;
}
#cursorInner {
  width: 6px;
  height: 6px;
  background: var(--accent-1);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-1), 0 0 20px var(--accent-1);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease);
}
#cursorInner.hover {
  width: 16px;
  height: 16px;
  background: rgba(110, 231, 183, 0.3);
  box-shadow: 0 0 15px rgba(110, 231, 183, 0.4);
}
#cursorOuter {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(110, 231, 183, 0.4);
  border-radius: 50%;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
#cursorOuter.hover {
  width: 52px;
  height: 52px;
  background: rgba(110, 231, 183, 0.05);
  border-color: rgba(110, 231, 183, 0.8);
}

/* ═══════════════════════════════════════════════
   $1M WEBGL PARTICLE ENGINE CANVAS
   ═══════════════════════════════════════════════ */

#bgWorld {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: radial-gradient(circle at center, #0a0a1a 0%, #030308 100%);
}

#webgl-canvas {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: 
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(110, 231, 183, 0.03) 0%, transparent 60%),
      radial-gradient(ellipse 30% 50% at 80% 30%, rgba(59, 130, 246, 0.03) 0%, transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}

#particleCanvas { display: none; } /* Deprecated */
a { text-decoration:none; color:inherit; }
ul { list-style:none; }

/* ── Canvas Background ── */
#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* ── Ambient Gradient Orbs (Jeton-style mesh) ── */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(110,231,183,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -5%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: orbFloat 15s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Section ambient glows */
.services-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(110,231,183,0.15) 0%, rgba(59,130,246,0.05) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.results-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gradient text shimmer */
.hero-title .gradient-text {
  background-size: 200% 100%;
  animation: textShimmer 4s ease-in-out infinite;
}
@keyframes textShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── GSAP handles all animations — these are just helpers ── */
.anim-fade-up, .anim-d1, .anim-d2, .anim-d3, .anim-d4 {
  will-change: transform, opacity;
}

/* 3D perspective for scroll-driven card rotations */
.process-steps,
.results-grid,
.services-showcase {
  perspective: 1000px;
}

/* Lenis smooth scroll overrides */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.btn-accent {
  background: var(--gradient);
  color: #000;
  padding: 14px 32px;
  position: relative;
  overflow: hidden;
}
.btn-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-accent:hover::before {
  transform: translateX(100%);
}
.btn-accent:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(110,231,183,0.3), 0 0 0 1px rgba(110,231,183,0.2);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 14px 32px;
}
.btn-ghost:hover {
  border-color: var(--border-hover);
  background: var(--bg-card);
}
.btn-nav {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 10px 24px;
  font-size: 0.875rem;
}
.btn-nav:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-xl { padding: 20px 48px; font-size: 1.1rem; }

/* ── Header ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}
header.scrolled {
  background: rgba(6,6,17,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
}
.logo-icon { display:flex; }
#mainNav ul {
  display: flex;
  gap: 36px;
}
#mainNav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.3s;
  position: relative;
}
#mainNav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s var(--ease);
}
#mainNav a:hover { color: var(--text); }
#mainNav a:hover::after { width: 100%; }

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

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(6,6,17,0.97);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
}
.mobile-menu-overlay.active { display: flex; }
.mobile-menu-overlay ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-menu-overlay a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-2);
  transition: color 0.3s;
}
.mobile-menu-overlay a:hover { color: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 40px 80px;
}
.hero-inner {
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 32px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-1);
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(110,231,183,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(110,231,183,0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Stats Bar ── */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 80px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 60px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.stat-item {
  text-align: center;
  padding: 0 48px;
}
.stat-value {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-suffix {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 8px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
section {
  position: relative;
  z-index: 1;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-1);
  margin-bottom: 20px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 540px;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section {
  padding: 160px 0;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.4s var(--ease);
  position: relative;
}
.step-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: var(--gradient);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s;
}
.step-card:hover {
  background: var(--bg-card-hover);
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.step-card:hover::before {
  opacity: 0.15;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: 160px 0;
}
.services-showcase {
  margin-top: 64px;
}

/* Large Feature Cards */
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 32px;
  transition: all 0.5s var(--ease);
  position: relative;
}
.service-feature::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 29px;
  background: var(--gradient);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s;
}
.service-feature:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.25);
}
.service-feature:hover::after { opacity: 0.12; }
.service-feature.reverse .sf-content { order: 2; }
.service-feature.reverse .sf-visual { order: 1; }
.sf-content {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sf-icon {
  margin-bottom: 24px;
  opacity: 0.9;
}
.sf-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.sf-content p {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
}
.sf-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: rgba(255,255,255,0.02);
  border-left: 1px solid var(--border);
}
.service-feature.reverse .sf-visual {
  border-left: none;
  border-right: 1px solid var(--border);
}

/* Chat Demo */
.chat-demo {
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-bubble {
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 85%;
  animation: chatAppear 0.5s var(--ease) both;
}
.chat-bubble.bot {
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  color: var(--text);
}
.chat-bubble.user {
  background: var(--gradient);
  color: #000;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  font-weight: 500;
}
.chat-bubble:nth-child(2) { animation-delay: 0.8s; }
.chat-bubble:nth-child(3) { animation-delay: 1.6s; }
@keyframes chatAppear {
  from { opacity:0; transform: translateY(10px); }
  to { opacity:1; transform: translateY(0); }
}
.chat-typing {
  display: flex;
  gap: 4px;
  padding: 14px 18px;
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  border-radius: 18px 18px 18px 4px;
  width: fit-content;
  animation: chatAppear 0.5s var(--ease) 2.4s both;
}
.chat-typing span {
  width: 6px;
  height: 6px;
  background: var(--text-3);
  border-radius: 50%;
  animation: typingDot 1.4s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* Calling Demo */
.calling-demo {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.call-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(110,231,183,0.2);
  animation: ringPulse 2.5s ease-out infinite;
}
.ring-2 { animation-delay: 0.5s; }
.ring-3 { animation-delay: 1s; }
@keyframes ringPulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
.call-center-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(110,231,183,0.1);
  border: 1px solid rgba(110,231,183,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.call-status {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-1);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Smaller Grid Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.sg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  transition: all 0.4s var(--ease);
  position: relative;
}
.sg-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: var(--gradient);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s;
}
.sg-card:hover {
  background: var(--bg-card-hover);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
}
.sg-card:hover::before {
  opacity: 0.12;
}
.sg-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.sg-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ============================================================
   CUSTOM DEV
   ============================================================ */
.custom-section {
  padding: 160px 0;
}
.custom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.custom-content .section-heading {
  margin-bottom: 28px;
}
.custom-desc {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 20px;
}
.custom-content .btn { margin-top: 16px; }

/* Orbit Animation */
.custom-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}
.orbit-system {
  position: relative;
  width: 360px;
  height: 360px;
}
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.orbit-1 {
  width: 200px; height: 200px;
  animation: orbitSpin 12s linear infinite;
}
.orbit-2 {
  width: 280px; height: 280px;
  animation: orbitSpin 18s linear infinite reverse;
}
.orbit-3 {
  width: 360px; height: 360px;
  animation: orbitSpin 24s linear infinite;
}
@keyframes orbitSpin { 100% { transform: translate(-50%, -50%) rotate(360deg); } }
.orbit-dot {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--accent-1);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(110,231,183,0.6);
}
.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(110,231,183,0.08);
  border: 1px solid rgba(110,231,183,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
}

/* ============================================================
   SCROLLING MARQUEE (Eye-catching scroll-linked)
   ============================================================ */
.marquee-section {
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}
.marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}
.marquee-section::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg) 0%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin-bottom: 24px;
}
.marquee-track:last-child {
  margin-bottom: 0;
}
.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.marquee-item {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  padding: 0 16px;
  white-space: nowrap;
}
.marquee-item:not(.gradient-text) {
  color: rgba(255, 255, 255, 0.15);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
}
.marquee-dot {
  font-size: 1rem;
  color: var(--accent-1);
  opacity: 0.5;
  padding: 0 20px;
}

/* ============================================================
   RESULTS
   ============================================================ */
.results-section {
  padding: 160px 0;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.result-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: var(--gradient);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s;
}
.result-card:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}
.result-card:hover::before {
  opacity: 0.15;
}
.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.result-header h4 {
  font-size: 1.15rem;
  font-weight: 700;
}
.result-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-1);
  background: rgba(110,231,183,0.08);
  border: 1px solid rgba(110,231,183,0.15);
  padding: 4px 12px;
  border-radius: 100px;
}
.result-card p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.6;
}
.result-metric {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.rm-value {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  display: block;
}
.rm-label {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 4px;
  display: block;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  padding: 120px 0 160px;
}
.cta-inner {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(110,231,183,0.1) 0%, rgba(59,130,246,0.05) 40%, transparent 70%);
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite;
}
.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-heading {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
}
.cta-sub {
  font-size: 1.15rem;
  color: var(--text-2);
  margin-bottom: 40px;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
}
.footer-desc {
  font-size: 0.9rem;
  color: var(--text-3);
  margin-top: 16px;
  line-height: 1.6;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.fl-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-3);
  margin-bottom: 20px;
}
.fl-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-2);
  padding: 6px 0;
  transition: color 0.3s;
}
.fl-col a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-3);
}

/* ============================================================
   RESPONSIVE (Mobile Optmizations)
   ============================================================ */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-feature { grid-template-columns: 1fr; }
  .sf-visual { border-left: none !important; border-right: none !important; border-top: 1px solid var(--border); min-height: 280px; }
  .service-feature.reverse .sf-content { order: 1; }
  .service-feature.reverse .sf-visual { order: 2; }
  .custom-inner { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  
  /* Header adjustments */
  #mainNav { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-container { padding: 0 24px; }
  .btn-nav { display: none; }
  
  /* Hero adjustments for iPhone */
  .hero { 
      padding: 130px 20px 60px; 
      min-height: auto; /* Prevent forcing viewport height cuts */
  }
  .hero-inner { padding: 0 10px; }
  .hero-badge {
      font-size: 0.7rem;
      padding: 6px 16px;
      margin-bottom: 24px;
  }
  .hero-title { 
      font-size: clamp(2.2rem, 11vw, 2.8rem); 
      margin-bottom: 20px;
      line-height: 1.1;
  }
  .hero-sub {
      font-size: 1rem;
      padding: 0 10px;
      margin-bottom: 32px;
      line-height: 1.6;
  }
  .hero-btns {
      flex-direction: column; /* Stack buttons on mobile */
      gap: 12px;
      width: 100%;
      max-width: 320px;
      margin: 0 auto;
  }
  .hero-btns .btn {
      width: 100%;
      justify-content: center;
  }
  
  /* Stats bar adjustments */
  .stats-bar { 
      flex-direction: column; 
      gap: 20px; 
      padding: 24px; 
      border-radius: 20px;
      margin: 40px 20px 0;
  }
  .stat-divider { 
      width: 40px; 
      height: 1px; 
  }
  .stat-item { padding: 0; }
  
  /* General grid adjust */
  .process-steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .sf-content { padding: 40px 24px; }
  
  /* CTA Adjustments */
  .cta-section { padding: 80px 20px; }
  .cta-inner { padding: 48px 24px; border-radius: 24px; }
  .cta-heading { font-size: clamp(2rem, 8vw, 2.5rem); }
  
  /* Footer */
  .footer-links { grid-template-columns: 1fr; gap: 32px; }
}
