/* =============================================
   GROWTH MARKETING AGENCY — PREMIUM DESIGN SYSTEM
   Inspired by: Stripe, Linear, Framer, Adymize
   Version: 3.0 (Complete Overhaul)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;1,14..32,400&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  --blue-50:  #eff6ff;
  --indigo-50:#eef2ff;
  --indigo-100:#e0e7ff;
  --indigo-500:#6366f1;
  --indigo-600:#4f46e5;
  --violet-500:#8b5cf6;
  --violet-600:#7c3aed;
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --emerald-400:#34d399;
  --emerald-500:#10b981;
  --amber-400: #fbbf24;
  --rose-500:  #f43f5e;
  --white:     #ffffff;

  --primary:   #5b5ef7;
  --primary-h: #4a4de6;
  --secondary: #7c4dff;
  --accent:    #8b5cf6;
  --grad-primary: linear-gradient(135deg,#5b5ef7 0%,#7c4dff 100%);
  --grad-accent:  linear-gradient(135deg,#7c4dff 0%,#8b5cf6 100%);
  --grad-warm:    linear-gradient(135deg,#f59e0b 0%,#f43f5e 100%);
  --grad-cool:    linear-gradient(135deg,#06b6d4 0%,#3b82f6 100%);
  --grad-dark:    linear-gradient(180deg,#0f172a 0%,#1e1b4b 100%);
  --grad-mesh:    radial-gradient(ellipse 80% 80% at 50% -20%,rgba(120,119,198,0.3),transparent);

  --shadow-xs:  0 1px 2px 0 rgba(15,23,42,.05);
  --shadow-sm:  0 4px 6px -1px rgba(15,23,42,.07),0 2px 4px -2px rgba(15,23,42,.05);
  --shadow-md:  0 10px 15px -3px rgba(15,23,42,.08),0 4px 6px -4px rgba(15,23,42,.05);
  --shadow-lg:  0 20px 25px -5px rgba(15,23,42,.08),0 8px 10px -6px rgba(15,23,42,.05);
  --shadow-xl:  0 25px 50px -12px rgba(15,23,42,.12);
  --shadow-glow:0 0 40px rgba(91,94,247,.18);
  --shadow-card:0 0 0 1px rgba(15,23,42,.04),0 8px 32px -4px rgba(15,23,42,.06);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-2xl: 36px;
  --radius-full:9999px;

  --ease-spring: cubic-bezier(0.175,0.885,0.32,1.275);
  --ease-out-expo: cubic-bezier(0.16,1,0.3,1);
  --transition: all 0.45s var(--ease-out-expo);
}

/* ─── RESET & BASE ─── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--slate-700);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--slate-900);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.display-hero {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(91,94,247,0.08);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(91,94,247,0.15);
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--slate-500);
  max-width: 580px;
  line-height: 1.8;
}
.text-grad {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── SPACING ─── */
.section-block { padding: 140px 0 !important; position: relative; }
.section-block-sm { padding: 80px 0 !important; position: relative; }
.container-xl { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* ─── SCROLL PROGRESS ─── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad-primary);
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ─── NAVBAR ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}
.site-nav.scrolled {
  padding: 14px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.nav-logo span { background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--slate-600);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.3s var(--ease-out-expo);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--slate-900);
  font-size: 1.4rem;
}

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  background: var(--grad-primary);
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 24px;
  position: relative;
  z-index: 999;
}
.announcement-bar a { color: #fff; text-decoration: underline; }

/* ─── BUTTONS ─── */
.btn-primary-grad {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 34px;
  background: var(--grad-primary);
  color: #fff !important;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(91,94,247,0.3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn-primary-grad::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-accent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary-grad:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(91,94,247,0.4); }
.btn-primary-grad:hover::before { opacity: 1; }
.btn-primary-grad > * { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: transparent;
  color: var(--slate-700) !important;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--slate-200);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
  background: rgba(91,94,247,0.04);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 34px;
  background: #fff;
  color: var(--slate-900) !important;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  text-decoration: none;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); }

.btn-sm { padding: 10px 22px !important; font-size: 0.85rem !important; }

/* ═══════════════════════════════
   HERO SECTION — New Design
═══════════════════════════════ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}

/* ─ Animated background grid ─ */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91,94,247,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,94,247,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

/* ─ Animated glowing orbs ─ */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91,94,247,0.18), transparent 70%);
  top: -200px; right: -100px;
  animation: orb-drift 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.14), transparent 70%);
  bottom: -150px; left: -100px;
  animation: orb-drift 16s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,77,255,0.1), transparent 70%);
  top: 40%; left: 40%;
  animation: orb-drift 20s ease-in-out infinite;
}
@keyframes orb-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(40px,-30px) scale(1.05); }
  66%  { transform: translate(-30px,40px) scale(0.95); }
}

/* ─ Hero inner: full centered column ─ */
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  gap: 0;
}

/* ─ Pill tag ─ */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid rgba(91,94,247,0.18);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-600);
  margin-bottom: 32px;
  box-shadow: 0 2px 16px rgba(91,94,247,0.08);
  white-space: nowrap;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-pill-live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.25);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.25); }
  50%      { box-shadow: 0 0 0 6px rgba(16,185,129,0.08); }
}
.hero-pill-divider {
  color: var(--slate-200);
  font-weight: 300;
}

/* ─ Main headline ─ */
.hero-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--slate-900);
  margin-bottom: 28px;
}
.hero-headline-grad {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Typed text effect */
.hero-typed-wrap { display: inline-block; }
.hero-typed {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-cursor {
  display: inline-block;
  color: var(--primary);
  font-weight: 300;
  animation: blink 0.9s step-end infinite;
  -webkit-text-fill-color: var(--primary);
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0; } }

/* ─ Subtext ─ */
.hero-subtext {
  font-size: 1.12rem;
  color: var(--slate-500);
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto 40px;
}

/* ─ CTA buttons ─ */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 38px;
  background: var(--grad-primary);
  color: #fff !important;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(91,94,247,0.35);
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.hero-cta-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-accent);
  opacity: 0;
  transition: opacity 0.35s;
}
.hero-cta-primary:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(91,94,247,0.45); }
.hero-cta-primary:hover::before { opacity: 1; }
.hero-cta-primary > * { position: relative; z-index: 1; }
.hero-cta-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s;
}
.hero-cta-primary:hover .hero-cta-arrow { transform: translateX(5px); }

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 34px;
  background: transparent;
  color: var(--slate-700) !important;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid var(--slate-200);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.hero-cta-secondary:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
  background: rgba(91,94,247,0.04);
  transform: translateY(-3px);
}

/* ─ Trust row ─ */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-avatars {
  display: flex;
  gap: -6px;
  font-size: 1.2rem;
}
.trust-avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--slate-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  border: 2px solid #fff;
  margin-left: -6px;
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.trust-icon-badge {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(91,94,247,0.1);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.trust-copy strong { font-size: 0.88rem; font-weight: 700; color: var(--slate-900); display: block; }
.trust-copy span   { font-size: 0.75rem; color: var(--slate-400); }
.hero-trust-divider {
  width: 1px; height: 36px;
  background: var(--slate-200);
}

/* ─ Metrics bar ─ */
.hero-metrics-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-2xl);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 900px;
}
.hero-metric-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  transition: background 0.3s;
  flex: 1;
  min-width: 130px;
}
.hero-metric-card:hover { background: var(--slate-50); }
.metric-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.metric-val { font-family: 'Poppins',sans-serif; font-size: 1.35rem; font-weight: 800; color: var(--slate-900); line-height: 1; }
.metric-key { font-size: 0.75rem; color: var(--slate-400); font-weight: 600; margin-top: 3px; }

/* ─ Floating toast notifications ─ */
.hero-toast {
  position: fixed;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(15,23,42,0.12);
  font-size: 0.82rem;
  color: var(--slate-700);
  line-height: 1.5;
  z-index: 500;
  animation: toast-slide-in 0.6s var(--ease-out-expo) both, toast-float 5s ease-in-out 1s infinite;
  max-width: 260px;
}
.hero-toast strong { color: var(--slate-900); font-weight: 700; }
.hero-toast small { color: var(--slate-400); font-size: 0.74rem; }
.hero-toast-1 { bottom: 120px; left: 32px; animation-delay: 0.3s, 1s; }
.hero-toast-2 { bottom: 200px; right: 32px; animation-delay: 1.2s, 2s; }
.toast-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes toast-slide-in {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes toast-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
/* Hero Dashboard Mockup */
.hero-mockup-wrap {
  position: relative;
  z-index: 2;
}
.hero-dashboard {
  background: var(--slate-950);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px;
  box-shadow: 0 40px 80px rgba(9,13,26,0.35), 0 0 0 1px rgba(255,255,255,0.04);
}
.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.dashboard-dots { display: flex; gap: 6px; }
.dashboard-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dashboard-dots .d1 { background: #ff5f57; }
.dashboard-dots .d2 { background: #febc2e; }
.dashboard-dots .d3 { background: #28c840; }
.dashboard-title { font-size: 0.8rem; color: rgba(255,255,255,0.4); font-weight: 600; letter-spacing: 0.1em; }
.dashboard-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.dash-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 18px;
}
.dash-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.35); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.dash-stat-value { font-size: 1.7rem; font-weight: 800; color: #fff; font-family: 'Poppins', sans-serif; }
.dash-stat-badge { font-size: 0.7rem; font-weight: 700; padding: 3px 8px; border-radius: var(--radius-full); display: inline-block; margin-top: 4px; }
.dash-stat-badge.up { background: rgba(16,185,129,0.15); color: #10b981; }
.dash-stat-badge.live { background: rgba(91,94,247,0.2); color: #818cf8; }
.dashboard-feed-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
}
.feed-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
.feed-text strong { color: rgba(255,255,255,0.85); font-size: 0.82rem; display: block; }
.feed-text span { color: rgba(255,255,255,0.3); font-size: 0.73rem; }
/* Floating KPI chips */
.float-chip {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  animation: chip-float 6s ease-in-out infinite;
}
.float-chip.chip-a { top: 8%; left: -12%; animation-delay: 0s; }
.float-chip.chip-b { bottom: 10%; right: -10%; animation-delay: 3s; }
.float-chip .chip-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.float-chip .chip-text strong { font-size: 0.9rem; font-weight: 700; color: var(--slate-900); display: block; }
.float-chip .chip-text span { font-size: 0.75rem; color: var(--slate-400); }
@keyframes chip-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ─── LOGO TICKER ─── */
.ticker-section {
  padding: 40px 0;
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
  background: #fff;
  overflow: hidden;
}
.ticker-label { text-align: center; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; color: var(--slate-400); text-transform: uppercase; margin-bottom: 28px; }
.ticker-track { display: flex; width: max-content; animation: ticker-scroll 28s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 52px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--slate-300);
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s;
  white-space: nowrap;
}
.ticker-item:hover { color: var(--primary); }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── STATS COUNTER STRIP ─── */
.stats-strip { background: var(--grad-dark); padding: 80px 0; }
.stat-item { text-align: center; padding: 0 20px; }
.stat-number { font-family: 'Poppins', sans-serif; font-size: clamp(2.5rem,4vw,4rem); font-weight: 900; color: #fff; letter-spacing: -0.04em; display: block; }
.stat-label { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 6px; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.1); align-self: stretch; }

/* ─── INDUSTRIES SECTION (BENTO GRID) ─── */
.industries-section { background: var(--slate-50); }
.bento-wrap { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.bento-item {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.bento-item::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.5s;
}
.bento-item:hover { border-color: rgba(91,94,247,0.25); box-shadow: var(--shadow-glow); transform: translateY(-6px); }
.bento-item:hover::before { opacity: 0.05; }
.bento-item.span-2 { grid-column: span 2; }
.bento-item.dark { background: var(--slate-900); border-color: var(--slate-800); }
.bento-item.dark h4,.bento-item.dark p { color: #fff; }
.bento-item.dark p { color: rgba(255,255,255,0.5); }
.bento-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(91,94,247,0.1);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
  transition: var(--transition);
}
.bento-item:hover .bento-icon { background: var(--grad-primary); color: #fff; }
.bento-item h4 { font-size: 1.1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 10px; }
.bento-item p { font-size: 0.9rem; color: var(--slate-500); line-height: 1.75; }

/* ─── SERVICES SECTION ─── */
.services-section { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}
.service-card:hover { background: #fff; box-shadow: var(--shadow-lg); border-color: rgba(91,94,247,0.15); transform: translateY(-6px); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(91,94,247,0.08);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--grad-primary); color: #fff; transform: scale(1.05); }
.service-card h4 { font-size: 1.15rem; font-weight: 700; color: var(--slate-900); margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; color: var(--slate-500); line-height: 1.8; margin-bottom: 24px; }
.service-link { font-size: 0.88rem; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.service-card:hover .service-link { gap: 10px; }

/* ─── FUNNEL SECTION ─── */
.funnel-section { background: var(--slate-950); position: relative; overflow: hidden; }
.funnel-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,94,247,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.funnel-section .section-title { color: #fff; }
.funnel-section .section-desc { color: rgba(255,255,255,0.5); }
.funnel-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.funnel-step {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.funnel-step-card {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
  cursor: default;
}
.funnel-step-card:hover { background: rgba(91,94,247,0.1); border-color: rgba(91,94,247,0.3); transform: translateX(8px); }
.funnel-step-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}
.funnel-step-content h5 { font-size: 0.95rem; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 4px; }
.funnel-step-content p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin: 0; }
.funnel-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
}
.funnel-connector-line { width: 2px; height: 28px; background: linear-gradient(180deg,rgba(91,94,247,0.5),rgba(91,94,247,0.1)); }
.funnel-connector-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); margin: 4px 0; }
.funnel-result-card {
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
}
.funnel-result-card h5 { color: #fff; font-weight: 800; font-size: 1rem; margin-bottom: 2px; }
.funnel-result-card p { color: rgba(255,255,255,0.7); font-size: 0.82rem; margin: 0; }
/* Funnel Side Stats */
.funnel-side-stats { display: flex; flex-direction: column; gap: 16px; }
.funnel-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.funnel-stat-card .big-num { font-size: 2.8rem; font-weight: 900; font-family: 'Poppins', sans-serif; background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.funnel-stat-card p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* ─── COMPARISON SECTION ─── */
.comparison-section { background: var(--slate-50); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.compare-col {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-2xl);
  padding: 48px;
  position: relative;
}
.compare-col.recommended {
  border: 2px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(91,94,247,0.06), var(--shadow-xl);
}
.compare-col.recommended::before {
  content: '✦ RECOMMENDED';
  position: absolute;
  top: -14px; left: 48px;
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 5px 16px;
  border-radius: var(--radius-full);
}
.compare-col h3 { font-size: 1.35rem; margin-bottom: 32px; }
.compare-list { display: flex; flex-direction: column; gap: 16px; }
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--slate-600);
}
.compare-list li .ci { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; margin-top: 2px; }
.compare-list li .ci.bad { background: rgba(244,63,94,0.1); color: var(--rose-500); }
.compare-list li .ci.good { background: rgba(16,185,129,0.1); color: var(--emerald-500); }

/* ─── PROCESS SECTION ─── */
.process-section { background: #fff; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: var(--slate-100);
}
.process-step { text-align: center; padding: 0 20px; position: relative; }
.process-dot {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--slate-100);
  border: 4px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 28px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.process-step:hover .process-dot { background: var(--grad-primary); color: #fff; box-shadow: var(--shadow-glow); }
.process-dot-num { font-size: 0.7rem; font-weight: 800; color: var(--slate-400); position: absolute; top: -8px; right: -8px; background: #fff; border: 1px solid var(--slate-100); border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; }
.process-step h5 { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 10px; }
.process-step p { font-size: 0.88rem; color: var(--slate-500); line-height: 1.75; }

/* ─── CASE STUDIES ─── */
.case-section { background: var(--slate-950); position: relative; overflow: hidden; }
.case-section .section-title { color: #fff; }
.case-section .section-desc { color: rgba(255,255,255,0.45); }
.case-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-2xl);
  padding: 48px;
  transition: var(--transition);
}
.case-card:hover { background: rgba(91,94,247,0.05); border-color: rgba(91,94,247,0.25); }
.case-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(91,94,247,0.15); color: var(--indigo-500); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--radius-full); margin-bottom: 20px; }
.case-card h3 { font-size: 1.5rem; color: rgba(255,255,255,0.9); font-weight: 800; margin-bottom: 12px; }
.case-card p { font-size: 0.9rem; color: rgba(255,255,255,0.4); line-height: 1.8; margin-bottom: 32px; }
.case-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 32px; }
.case-metric-val { font-size: 2.2rem; font-weight: 900; font-family: 'Poppins', sans-serif; background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.case-metric-key { font-size: 0.75rem; color: rgba(255,255,255,0.35); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--slate-50); }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl);
  padding: 40px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-xl); border-color: rgba(91,94,247,0.15); transform: translateY(-4px); }
.stars { color: var(--amber-400); font-size: 0.9rem; margin-bottom: 20px; }
.testimonial-text { font-size: 1rem; color: var(--slate-700); line-height: 1.85; font-style: italic; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--grad-primary); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 0.95rem; color: var(--slate-900); }
.author-role { font-size: 0.82rem; color: var(--slate-400); }

/* ─── TEAM SECTION ─── */
.team-section { background: #fff; }
.team-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl);
  padding: 36px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(91,94,247,0.2); transform: translateY(-6px); }
.team-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--grad-primary);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h5 { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 6px; }
.team-card small { font-size: 0.82rem; color: var(--slate-400); display: block; margin-bottom: 18px; }
.team-linkedin { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; background: rgba(91,94,247,0.1); color: var(--primary); transition: var(--transition); }
.team-linkedin:hover { background: var(--primary); color: #fff; }

/* ─── FAQ SECTION ─── */
.faq-section { background: var(--slate-50); }
.faq-search-wrap { max-width: 540px; margin: 0 auto 48px; position: relative; }
.faq-search-icon { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--slate-400); }
.faq-input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #fff;
  color: var(--slate-900);
}
.faq-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(91,94,247,0.1); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item .accordion-button {
  background: #fff;
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate-900);
  padding: 22px 28px;
  border: none;
  box-shadow: none;
}
.faq-item .accordion-button:not(.collapsed) { background: rgba(91,94,247,0.04); color: var(--primary); box-shadow: none; }
.faq-item .accordion-body { padding: 0 28px 22px; font-size: 0.95rem; color: var(--slate-500); line-height: 1.85; }

/* ─── CONTACT SECTION ─── */
.contact-section { background: #fff; }
.contact-wrapper {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}
.contact-left {
  background: var(--grad-dark);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-left h2 { font-size: 2.2rem; color: #fff; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.03em; }
.contact-left p { color: rgba(255,255,255,0.5); font-size: 1rem; line-height: 1.8; margin-bottom: 40px; }
.contact-promise { display: flex; flex-direction: column; gap: 18px; }
.promise-item { display: flex; align-items: flex-start; gap: 14px; }
.promise-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(91,94,247,0.15); color: var(--indigo-500); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.promise-item h6 { font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.85); margin-bottom: 3px; }
.promise-item p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin: 0; }
.contact-right { padding: 64px 56px; background: #fff; }
.contact-form .form-label { font-size: 0.82rem; font-weight: 700; color: var(--slate-600); margin-bottom: 8px; letter-spacing: 0.04em; text-transform: uppercase; }
.contact-form .form-control,.contact-form .form-select {
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--slate-900);
  background: var(--slate-50);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-form .form-control:focus,.contact-form .form-select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(91,94,247,0.1); background: #fff; }
.contact-form .form-control::placeholder { color: var(--slate-300); }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--slate-950);
  padding: 80px 0 40px;
}
.footer-logo { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 900; color: #fff; letter-spacing: -0.04em; margin-bottom: 16px; display: block; }
.footer-logo span { background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.35); line-height: 1.8; max-width: 300px; margin-bottom: 28px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; transition: var(--transition); font-size: 0.9rem; }
.social-btn:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-col h6 { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.45); transition: color 0.25s; }
.footer-links a:hover { color: #fff; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 48px 0 28px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.2); }
.footer-badges { display: flex; gap: 10px; }
.badge-chip { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); font-size: 0.72rem; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-full); }

/* ─── WhatsApp FLOATING ─── */
.wa-float { position: fixed; bottom: 36px; right: 36px; z-index: 990; }
.wa-float a { width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 8px 24px rgba(37,211,102,0.4); transition: var(--transition); }
.wa-float a:hover { transform: scale(1.12) rotate(12deg); }

/* ─── MOBILE STICKY CTA ─── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(9,13,26,0.97);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  z-index: 1040;
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 10px;
}

/* ─── MOBILE OFFCANVAS MENU ─── */
.offcanvas-menu { background: var(--slate-950); color: #fff; }
.offcanvas-menu .offcanvas-header { border-bottom: 1px solid rgba(255,255,255,0.06); }
.offcanvas-menu .mobile-nav-link { font-size: 1.1rem; font-weight: 600; color: rgba(255,255,255,0.7); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: block; transition: color 0.25s; }
.offcanvas-menu .mobile-nav-link:hover { color: #fff; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .bento-wrap { grid-template-columns: repeat(2,1fr); }
  .bento-item.span-2 { grid-column: span 1; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .section-block { padding: 96px 0 !important; }
  .bento-wrap { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .case-metrics { grid-template-columns: repeat(2,1fr); }
  .contact-left { padding: 48px 36px; }
  .contact-right { padding: 48px 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-title { font-size: 2.5rem; }
  .float-chip { display: none; }
  .nav-links { display: none; }
  .nav-menu-toggle { display: block; }
  .mobile-cta-bar { display: flex; }
  .wa-float { bottom: 90px; }
  body { padding-bottom: 76px; }
}
