/* ============================================================
   TruCliks Premium â€” style.css
   Light Premium Â· Inter Â· Indigo/Cyan accent
   ============================================================ */

:root {
  --white: #ffffff;
  --bg: #f8fafc;
  --bg2: #f1f5f9;
  --border: #e2e8f0;
  --border-light: #f0f4f8;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --primary: #4f46e5;
  --primary-dark: #3730a3;
  --primary-light: #818cf8;
  --secondary: #06b6d4;
  --accent: #f59e0b;
  --gradient: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  --gradient-soft: linear-gradient(135deg, #eef2ff 0%, #e0f2fe 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(15,23,42,.08), 0 2px 6px rgba(15,23,42,.04);
  --shadow-md: 0 8px 32px rgba(15,23,42,.10), 0 4px 12px rgba(15,23,42,.05);
  --shadow-lg: 0 20px 60px rgba(15,23,42,.12), 0 8px 24px rgba(15,23,42,.06);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font: 'Inter', -apple-system, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 68px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
html { overflow-x: hidden; }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* â”€â”€ TYPOGRAPHY â”€â”€ */
.label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--primary);
  background: #eef2ff; padding: 5px 12px; border-radius: 50px;
}
.label svg { width: 12px; height: 12px; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.1rem; }

p { color: var(--text-muted); line-height: 1.75; }
.lead { font-size: 1.125rem; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 0.2em;
  padding-bottom: 0.05em;
  display: inline;
}

/* â”€â”€ LAYOUT â”€â”€ */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-header p { margin-top: 14px; font-size: 1.05rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }

/* â”€â”€ BUTTONS â”€â”€ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; line-height: 1;
  padding: 13px 24px; border-radius: 8px; border: none;
  transition: all var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 2px 14px rgba(79,70,229,.32);
  border-radius: 10px;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transition: left 0.48s ease;
  pointer-events: none;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(79,70,229,.44); }
.btn-primary:hover::after { left: 160%; }
.btn-secondary {
  background: var(--white); color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); padding: 12px 20px; }
.btn-ghost:hover { background: var(--bg); }
.btn-lg { padding: 16px 32px; font-size: 15px; border-radius: 10px; }
.btn-icon svg { width: 16px; height: 16px; transition: transform var(--transition); }
.btn-icon:hover svg { transform: translateX(3px); }

/* â”€â”€ NAV ULTRA-PREMIUM â”€â”€ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(32px) saturate(220%);
  -webkit-backdrop-filter: blur(32px) saturate(220%);
  border-bottom: 1px solid rgba(79,70,229,.08);
  transition: all 0.38s cubic-bezier(.4,0,.2,1);
}
/* Gradient accent handled by .scroll-progress bar */
.nav.scrolled {
  background: rgba(255,255,255,.97);
  border-bottom-color: rgba(79,70,229,.13);
  box-shadow: 0 4px 28px rgba(15,23,42,.07), 0 1px 3px rgba(79,70,229,.05);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; padding-top: 8px; }

/* Logo */
.nav-logo {
  font-size: 1.45rem; font-weight: 800; letter-spacing: -.02em;
  display: inline-flex; align-items: baseline; gap: 0;
  text-decoration: none; line-height: 1; user-select: none;
  flex-shrink: 0;
}
.logo-t   { color: #0ea5e9; }
.logo-rest { color: #1e293b; }

/* Nav links row â€” stretch so items fill full nav height */
.nav-links { display: flex; align-items: stretch; gap: 4px; }

/* Nav item wrapper (for mega dropdown) */
.nav-item { position: relative; display: flex; align-items: center; }
/* Invisible bridge fills the gap between nav-item bottom and mega menu top */
.nav-item::after {
  content: ''; position: absolute;
  top: 100%; left: -20px; right: -20px;
  height: 24px; /* must cover the top-offset gap of .nav-mega */
}

/* All nav links */
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  padding: 7px 14px; border-radius: 9px;
  transition: all 0.2s ease;
  display: flex; align-items: center; gap: 4px; cursor: pointer;
  white-space: nowrap; letter-spacing: .01em;
}
.nav-link:hover { color: var(--primary); background: rgba(79,70,229,.06); }
.nav-link.active { color: var(--primary); font-weight: 600; background: rgba(79,70,229,.07); }

/* Chevron on Services */
.nav-chevron {
  width: 12px; height: 12px; opacity: .55;
  transition: transform 0.22s ease, opacity 0.22s ease;
  flex-shrink: 0;
}
.nav-item:hover .nav-chevron { transform: rotate(180deg); opacity: 1; }

/* â”€â”€ MEGA MENU â”€â”€ */
.nav-mega {
  position: absolute;
  top: calc(100% + 18px);
  left: -16px;
  width: 620px;
  background: linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(248,250,255,.99) 100%);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(79,70,229,.1);
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(79,70,229,.04),
    0 4px 12px rgba(15,23,42,.04),
    0 16px 40px rgba(15,23,42,.08),
    0 40px 100px rgba(15,23,42,.13);
  padding: 16px;
  opacity: 0; pointer-events: none;
  transform: translateY(-10px) scale(.985);
  transform-origin: top left;
  transition:
    opacity 0.26s cubic-bezier(.4,0,.2,1),
    transform 0.32s cubic-bezier(.34,1.4,.64,1);
  z-index: 200;
}
.nav-item:hover .nav-mega {
  opacity: 1; pointer-events: all; transform: translateY(0) scale(1);
}
/* Caret arrow */
.nav-mega::before {
  content: '';
  position: absolute; top: -7px; left: 44px;
  width: 13px; height: 13px;
  background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
  border-left: 1px solid rgba(79,70,229,.1);
  border-top: 1px solid rgba(79,70,229,.1);
  border-radius: 2px 0 0 0;
  transform: rotate(45deg);
}
.mega-label {
  font-size: 10px; font-weight: 700; color: var(--text-light);
  letter-spacing: .14em; text-transform: uppercase;
  padding: 2px 10px 12px; margin-bottom: 0;
}
.mega-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.mega-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 13px;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}
.mega-item:hover { background: rgba(79,70,229,.055); transform: translateX(2px); }
.mega-item:hover .mega-name { color: var(--primary); }
.mega-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
}
.mega-icon svg { width: 17px; height: 17px; }
.mega-name { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.2; transition: color 0.15s; }
.mega-desc { font-size: 11.5px; color: var(--text-light); margin-top: 1px; line-height: 1.3; }
/* Footer of mega */
.mega-footer {
  border-top: 1px solid rgba(79,70,229,.07);
  margin-top: 10px; padding: 12px 4px 2px;
  display: flex; align-items: center; gap: 10px;
}
.mega-affiliate {
  flex: 1; display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 14px; border-radius: 14px;
  background: linear-gradient(135deg, #eef2ff 0%, #e0f2fe 100%);
  border: 1px solid rgba(79,70,229,.1); text-decoration: none;
  transition: all 0.22s ease;
}
.mega-affiliate:hover {
  background: linear-gradient(135deg, #e0e7ff 0%, #bae6fd 100%);
  border-color: rgba(79,70,229,.22);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(79,70,229,.1);
}
.mega-aff-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--gradient); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(79,70,229,.28);
}
.mega-aff-icon svg { width: 15px; height: 15px; color: #fff; }
.mega-aff-name { font-size: 12.5px; font-weight: 700; color: var(--text); }
.mega-aff-sub { font-size: 10.5px; color: var(--text-muted); margin-top: 1px; }
.mega-viewall {
  font-size: 12.5px; font-weight: 600; color: var(--primary);
  display: flex; align-items: center; gap: 5px; white-space: nowrap;
  padding: 10px 14px; border-radius: 12px; text-decoration: none;
  transition: background 0.18s, transform 0.18s; flex-shrink: 0;
  border: 1px solid rgba(79,70,229,.12);
}
.mega-viewall svg { width: 13px; height: 13px; transition: transform 0.2s ease; }
.mega-viewall:hover { background: rgba(79,70,229,.07); transform: translateY(-1px); }
.mega-viewall:hover svg { transform: translateX(4px); }

/* CTA button â€” nav size override only (gradient/shimmer inherited from .btn-primary) */
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .btn-primary { padding: 9px 20px; font-size: 14px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(79,70,229,.08);
  padding: 10px 22px 28px; z-index: 999;
  transform: translateY(-12px); opacity: 0;
  transition: transform 0.28s cubic-bezier(.4,0,.2,1), opacity 0.24s ease;
  pointer-events: none;
  box-shadow: 0 16px 48px rgba(15,23,42,.1), 0 4px 12px rgba(79,70,229,.04);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu > a {
  display: block; padding: 14px 6px;
  font-size: 15px; font-weight: 600;
  border-bottom: 1px solid rgba(79,70,229,.06);
  color: var(--text); text-decoration: none;
  transition: color 0.15s, padding-left 0.15s;
}
.mobile-menu > a:last-of-type { border: none; }
.mobile-menu > a:hover, .mobile-menu > a:active { color: var(--primary); padding-left: 10px; }

/* Mobile Services toggle */
.mobile-svc-wrap { border-bottom: 1px solid rgba(79,70,229,.06); }
.mobile-services-btn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 6px; width: 100%;
  font-size: 15px; font-weight: 600; font-family: var(--font);
  color: var(--text); background: none; border: none; cursor: pointer;
  transition: color 0.15s, padding-left 0.15s;
}
.mobile-services-btn:hover, .mobile-services-btn.open { color: var(--primary); }
.mobile-svc-chevron {
  width: 16px; height: 16px; flex-shrink: 0; opacity: 0.45;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.mobile-services-btn.open .mobile-svc-chevron { transform: rotate(180deg); opacity: 1; }

/* Mobile submenu list */
.mobile-submenu {
  overflow: hidden; max-height: 0;
  transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1);
  padding: 0 0 0 4px;
}
.mobile-submenu.open { max-height: 480px; }
.mobile-submenu a {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 10px; margin: 2px 0;
  font-size: 13.5px; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  border-radius: 8px; border-bottom: none;
  transition: color 0.15s, background 0.15s;
}
.mobile-submenu a::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--border); flex-shrink: 0;
  transition: background 0.15s;
}
.mobile-submenu a:hover { color: var(--primary); background: rgba(79,70,229,.06); }
.mobile-submenu a:hover::before { background: var(--primary); }
.mobile-svc-viewall { font-weight: 700 !important; color: var(--primary) !important; margin-top: 2px; }
.mobile-svc-viewall::before { background: var(--primary) !important; }
.mobile-menu-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(79,70,229,.08); }
.mobile-menu-actions .btn { width: 100%; justify-content: center; padding: 14px; font-size: 15px; }
/* Backdrop */
.menu-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.35); z-index: 998;
  opacity: 0; transition: opacity 0.22s ease;
}
.menu-backdrop.open { display: block; opacity: 1; }

/* â”€â”€ HERO â”€â”€ */
.hero {
  padding-top: var(--nav-height);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--white);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-gradient {
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,.07) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation: float-slow 12s ease-in-out infinite;
}
.hero-gradient-2 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,.06) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: float-slow 15s ease-in-out infinite reverse;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(79,70,229,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,70,229,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(.97); }
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  padding: 48px 0 56px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #eef2ff, #e0f2fe);
  border: 1px solid rgba(79,70,229,.15);
  color: var(--primary); font-size: 12.5px; font-weight: 600;
  padding: 7px 14px; border-radius: 50px; margin-bottom: 24px;
  letter-spacing: .04em;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,.2);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(79,70,229,.2); }
  50% { box-shadow: 0 0 0 6px rgba(79,70,229,.1); }
}

.hero-title { margin-bottom: 18px; }
.hero-title em { font-style: normal; }
.hero-desc { font-size: 1.05rem; margin-bottom: 28px; max-width: 480px; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.hero-trust { margin-top: 32px; display: flex; align-items: center; gap: 20px; }
.hero-trust-avatars {
  display: flex;
}
.hero-trust-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2.5px solid var(--white);
  background: var(--gradient); margin-left: -10px;
  font-size: 11px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-trust-avatar:first-child { margin-left: 0; }
.hero-trust-text { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.hero-trust-text strong { color: var(--text); }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-card-stack { position: relative; height: 480px; }
.hero-card-main {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 340px; background: var(--white);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); padding: 28px; z-index: 3;
}
.hero-card-chart-bar {
  display: flex; align-items: flex-end; gap: 6px; height: 80px; margin: 20px 0 8px;
}
.bar {
  flex: 1; background: var(--gradient-soft); border-radius: 5px 5px 0 0;
  transition: all .3s;
}
.bar:nth-child(1) { height: 40%; }
.bar:nth-child(2) { height: 60%; }
.bar:nth-child(3) { height: 75%; }
.bar:nth-child(4) { height: 55%; }
.bar:nth-child(5) { height: 90%; background: var(--gradient); }
.bar:nth-child(6) { height: 70%; }
.bar:nth-child(7) { height: 85%; }

.hero-metric {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-top: 1px solid var(--border-light);
}
.hero-metric-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.hero-metric-value { font-size: 15px; font-weight: 700; }
.hero-metric-value.up { color: #10b981; }
.hero-metric-value.primary { color: var(--primary); }

.hero-card-float {
  position: absolute; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: var(--shadow-md); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  white-space: nowrap;
}
.hero-card-float.tl { top: 30px; left: -20px; z-index: 4; animation: float-card 4s ease-in-out infinite; }
.hero-card-float.br { bottom: 40px; right: -20px; z-index: 4; animation: float-card 4s ease-in-out infinite 1s; }
.hero-card-float.tr { top: 80px; right: -30px; z-index: 4; animation: float-card 5s ease-in-out infinite .5s; }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-icon.green { background: #d1fae5; color: #059669; }
.float-icon.blue { background: #dbeafe; color: #2563eb; }
.float-icon.purple { background: #ede9fe; color: #7c3aed; }
.float-icon.orange { background: #fef3c7; color: #d97706; }
.float-icon svg { width: 18px; height: 18px; }
.float-label { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.float-value { font-size: 16px; font-weight: 700; color: var(--text); line-height: 1.1; }

/* â”€â”€ TICKER â”€â”€ */
.ticker-section {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 20px 0; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 64px; align-items: center;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px; font-weight: 600; color: var(--text-muted);
  white-space: nowrap; letter-spacing: .01em;
}
.ticker-item svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

/* â”€â”€ CLIENTS â”€â”€ */
.clients-section { padding: 64px 0; background: var(--white); overflow: hidden; }
.clients-header { text-align: center; margin-bottom: 36px; font-size: 12px; font-weight: 700; color: var(--text-light); letter-spacing: .12em; text-transform: uppercase; }
/* Dual-row marquee */
.clients-marquee-wrap { display: flex; flex-direction: column; gap: 10px; }
.clients-row { overflow: hidden; mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%); }
.clients-track {
  display: flex; gap: 10px;
  width: max-content;
  animation: clients-left 45s linear infinite;
}
.clients-row.row-right .clients-track { animation: clients-right 45s linear infinite; }
.clients-row:hover .clients-track { animation-play-state: paused; }
@keyframes clients-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes clients-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.client-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600; color: var(--text-muted);
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 50px; padding: 7px 16px;
  white-space: nowrap; cursor: default; user-select: none;
  transition: all 0.2s ease;
}
.client-pill:hover { color: var(--primary); border-color: rgba(79,70,229,.35); background: #eef2ff; }
.client-pill-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--border); flex-shrink: 0; }

/* â”€â”€ SERVICES â”€â”€ */
.services-section { background: var(--bg); }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 32px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient); opacity: 0;
  transition: opacity var(--transition); z-index: 0;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(79,70,229,.2); }
.service-card:hover::before { opacity: .03; }
.service-card > * { position: relative; z-index: 1; }

.service-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-icon svg { width: 20px; height: 20px; }
.icon-indigo { background: #eef2ff; color: var(--primary); }
.icon-cyan { background: #e0f2fe; color: #0891b2; }
.icon-green { background: #dcfce7; color: #16a34a; }
.icon-orange { background: #fff7ed; color: #ea580c; }
.icon-rose { background: #fff1f2; color: #e11d48; }
.icon-violet { background: #f5f3ff; color: #7c3aed; }
.icon-amber { background: #fffbeb; color: #d97706; }
.icon-teal { background: #f0fdfa; color: #0d9488; }

.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { font-size: 14px; line-height: 1.7; }
.service-tag {
  display: inline-block; margin-top: 16px;
  font-size: 11.5px; font-weight: 600; color: var(--primary);
  background: #eef2ff; padding: 4px 10px; border-radius: 50px;
}

/* â”€â”€ SERVICES NEW GRID â”€â”€ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.svc-card {
  grid-column: span 4;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px 22px;
  position: relative;
  overflow: hidden;
  transition: all 0.28s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}
/* Cards 7-10 â†’ 4 per row */
.svc-card:nth-child(n+7) { grid-column: span 3; }
/* Anchor card reset */
a.svc-card { text-decoration: none; color: inherit; display: flex; }
/* Gradient top bar revealed on hover */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
  border-radius: 0;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(79,70,229,.09);
  border-color: rgba(79,70,229,.25);
}
.svc-card-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.svc-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-icon svg { width: 22px; height: 22px; }
.svc-card h3 {
  font-size: 15.5px; font-weight: 700;
  color: var(--text); margin-bottom: 9px;
  line-height: 1.3;
}
.svc-card p {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.68; flex: 1; margin-bottom: 16px;
}
.svc-chips { display: flex; gap: 5px; flex-wrap: wrap; margin-top: auto; }
.svc-chip {
  font-size: 10.5px; font-weight: 600;
  padding: 3px 9px; border-radius: 50px;
  background: var(--bg); color: var(--text-muted);
  border: 1px solid var(--border);
  letter-spacing: .02em;
}
/* Affiliate full-width featured card */
.svc-affiliate {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 55%, #0f172a 100%);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  display: flex; align-items: center;
  gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.svc-affiliate::after {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(79,70,229,.3) 0%, transparent 70%);
  pointer-events: none;
}
.svc-affiliate-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #a5b4fc;
}
.svc-affiliate-icon svg { width: 26px; height: 26px; }
.svc-affiliate-body { flex: 1; min-width: 200px; }
.svc-affiliate-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.svc-aff-stat { text-align: center; }
.svc-aff-val {
  font-size: 1.35rem; font-weight: 800; color: #fff;
  letter-spacing: -.04em; line-height: 1.1;
}
.svc-aff-lbl {
  font-size: 11px; color: rgba(255,255,255,.5);
  font-weight: 500; margin-top: 3px;
}

/* â”€â”€ STATS â”€â”€ */
.stats-section { background: var(--white); }
.stats-inner {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  border-radius: var(--radius-xl); padding: 60px;
  position: relative; overflow: hidden;
}
.stats-inner::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,.3) 0%, transparent 70%);
}
.stats-inner::after {
  content: '';
  position: absolute; bottom: -50%; left: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,.2) 0%, transparent 70%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; position: relative; z-index: 1; }
.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(2.2rem, 3.5vw, 3rem); font-weight: 800;
  letter-spacing: -.04em; color: #fff; line-height: 1; margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,.7) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-suffix { color: var(--primary-light); -webkit-text-fill-color: var(--primary-light); }
.stat-label { font-size: 13.5px; color: rgba(255,255,255,.55); font-weight: 500; letter-spacing: .01em; }
.stat-divider {
  width: 1px; background: rgba(255,255,255,.1);
  height: 70px; margin: auto;
}

/* â”€â”€ PROCESS â”€â”€ */
.process-section { background: var(--bg); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-grid::before {
  content: '';
  position: absolute; top: 48px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 1px; background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: .3;
}
.process-step { text-align: center; padding: 0 20px; position: relative; }
.process-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  font-size: 16px; font-weight: 800; letter-spacing: -.02em;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(79,70,229,.3);
  position: relative; z-index: 1;
}
.process-step h4 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 13.5px; }

/* â”€â”€ FEATURES (Why TruCliks) â”€â”€ */
.features-section { background: var(--white); }
.features-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.features-visual { position: relative; }
.features-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.features-card-header {
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  padding: 20px 24px; display: flex; align-items: center; gap: 8px;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }
.features-card-body { padding: 24px; }
.feature-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; border-radius: 10px;
  margin-bottom: 8px; transition: background var(--transition);
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row:hover { background: var(--bg); }
.feature-row-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-row-icon svg { width: 16px; height: 16px; }
.feature-row-text { flex: 1; }
.feature-row-label { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3; }
.feature-row-sub { font-size: 11.5px; color: var(--text-muted); }
.feature-row-badge {
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 50px; letter-spacing: .04em;
}
.badge-green { background: #dcfce7; color: #16a34a; }
.badge-blue { background: #dbeafe; color: #2563eb; }
.badge-purple { background: #ede9fe; color: #7c3aed; }
.badge-orange { background: #fff7ed; color: #ea580c; }

.features-list { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; gap: 16px; }
.feature-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: #dcfce7; color: #16a34a;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.feature-check svg { width: 12px; height: 12px; }
.feature-content h4 { margin-bottom: 4px; font-size: 15px; }
.feature-content p { font-size: 13.5px; }

/* â”€â”€ RESULTS / CASE STUDIES â”€â”€ */
.results-section { background: var(--bg); }
.result-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: all var(--transition);
}
.result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.result-card-top {
  padding: 28px 28px 20px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-bottom: 1px solid var(--border-light);
}
.result-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 50px; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: .06em;
}
.result-card-bottom { padding: 24px 28px; }
.result-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.result-metric { text-align: center; }
.result-metric-val { font-size: 1.5rem; font-weight: 800; letter-spacing: -.03em; color: var(--text); }
.result-metric-lbl { font-size: 11px; color: var(--text-muted); margin-top: 2px; font-weight: 500; }

/* â”€â”€ TESTIMONIALS â”€â”€ */
.testimonials-section { background: var(--white); }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 32px;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { color: #f59e0b; font-size: 15px; }
.testimonial-text { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; color: #fff; flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 700; color: var(--text); }
.author-role { font-size: 12px; color: var(--text-muted); }

/* â”€â”€ CTA â”€â”€ */
.cta-section { background: var(--bg); padding: 68px 0; }
.cta-inner {
  background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 50%, #06b6d4 100%);
  border-radius: var(--radius-xl); padding: 80px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { color: #fff; margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--primary); box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.btn-white:hover { background: #f1f5f9; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }

/* ── FOOTER ── */
.footer {
  background: #0a0f1e;
  color: rgba(255,255,255,.55);
  padding: 0 0 0;
  position: relative;
}
.footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #4f46e5 0%, #06b6d4 50%, #4f46e5 100%);
}
.footer-inner { padding: 48px 0 20px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .nav-logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand .logo-t   { color: #38bdf8; }
.footer-brand .logo-rest { color: rgba(255,255,255,.95); }
.footer-brand p { font-size: 13.5px; line-height: 1.8; max-width: 240px; margin-bottom: 20px; color: rgba(255,255,255,.45); }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(79,70,229,.18); border: 1px solid rgba(79,70,229,.3);
  color: #a5b4fc; font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 50px; letter-spacing: .04em;
  margin-bottom: 20px;
}
.footer-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #818cf8; }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); color: rgba(255,255,255,.5);
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(79,70,229,.35); }
.social-btn svg { width: 15px; height: 15px; }
.footer-col h5 {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.95);
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-links { display: flex; flex-direction: column; gap: 2px; }
.footer-link {
  font-size: 13.5px; color: rgba(255,255,255,.5);
  padding: 5px 0;
  transition: all var(--transition);
  display: flex; align-items: center; gap: 0;
  position: relative;
}
.footer-link::before {
  content: '→';
  font-size: 11px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--transition);
  color: #818cf8;
  margin-right: 0;
  width: 0; overflow: hidden;
}
.footer-link:hover { color: rgba(255,255,255,.95); padding-left: 14px; }
.footer-link:hover::before { opacity: 1; transform: translateX(0); width: 14px; position: absolute; left: 0; }
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 16px 0 0;
}
.footer-bottom-text { font-size: 12.5px; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 0; }
.footer-bottom-link {
  font-size: 12.5px; color: rgba(255,255,255,.35);
  transition: color var(--transition);
  padding: 0 16px; border-right: 1px solid rgba(255,255,255,.1);
}
.footer-bottom-link:first-child { padding-left: 0; }
.footer-bottom-link:last-child { border-right: none; }
.footer-bottom-link:hover { color: rgba(255,255,255,.85); }

/* â”€â”€ INDUSTRY VERTICALS â”€â”€ */
.verticals-section { background: var(--white); }
.vertical-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.vertical-card {
  border-radius: var(--radius-lg); border: 1.5px solid var(--border);
  padding: 28px 22px; text-align: center; cursor: default;
  transition: all var(--transition); background: var(--white);
  position: relative; overflow: hidden;
}
.vertical-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient); opacity: 0;
  transition: opacity var(--transition);
}
.vertical-card:hover { border-color: rgba(79,70,229,.25); background: var(--white); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.vertical-card:hover::after { opacity: 1; }
.vertical-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 26px; line-height: 1;
  transition: transform var(--transition);
}
.vertical-card:hover .vertical-icon-wrap { transform: scale(1.1); }
.vertical-name { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: 6px; }
.vertical-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.vertical-chip {
  display: inline-block; margin-top: 12px;
  font-size: 10.5px; font-weight: 700; padding: 3px 10px;
  border-radius: 50px; letter-spacing: .04em; opacity: 0;
  transition: opacity var(--transition);
}
.vertical-card:hover .vertical-chip { opacity: 1; }

/* â”€â”€ ANIMATE ON SCROLL â”€â”€ */
.anim { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: .1s; }
.anim-delay-2 { transition-delay: .2s; }
.anim-delay-3 { transition-delay: .3s; }
.anim-delay-4 { transition-delay: .4s; }

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 1024px) {
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; padding: 24px 0; }
  .hero-desc { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .features-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-visual { max-width: 480px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 20px; padding-bottom: 20px; }
  .footer-inner { padding: 40px 0 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-divider { display: none; }
  .vertical-grid { grid-template-columns: repeat(4, 1fr); }
  .svc-grid .svc-card { grid-column: span 6; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .section { padding: 48px 0; }
  .section-header { margin: 0 auto 28px; }
  .section-header p { font-size: 1rem; }
  .container { padding: 0 18px; }

  /* Nav */
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-inner { padding: 18px 0 28px; gap: 24px; }
  .hero-badge { font-size: 11.5px; padding: 5px 12px; margin-bottom: 12px; }
  .hero-desc { font-size: 0.95rem; margin-bottom: 20px; }
  .hero-actions { gap: 10px; }
  .hero-trust { margin-top: 20px; gap: 12px; }

  /* Grids */
  .grid-2 { grid-template-columns: 1fr; gap: 20px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  /* Process */
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .process-grid::before { display: none; }
  .process-step { padding: 0 12px; }

  /* Stats */
  .stats-inner { padding: 36px 20px; }
  .stats-grid { gap: 20px; }
  .stat-number { font-size: 2.2rem; }
  .stat-label { font-size: 12.5px; }

  /* Services grid (index) */
  .svc-grid { gap: 12px; margin-top: 28px; }
  .svc-grid .svc-card { grid-column: span 12; }
  .svc-card { padding: 20px 18px 18px; }
  .svc-card h3 { font-size: 15px; }
  .svc-card p { font-size: 12.5px; }
  .svc-icon { width: 44px; height: 44px; border-radius: 12px; }
  .svc-icon svg { width: 20px; height: 20px; }
  .svc-affiliate { padding: 28px 22px; gap: 20px; flex-direction: column; }
  .svc-affiliate-stats { gap: 20px; flex-wrap: wrap; }

  /* Verticals */
  .vertical-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .vertical-card { padding: 20px 14px; }
  .vertical-icon-wrap { width: 44px; height: 44px; }
  .vertical-name { font-size: 13px; }
  .vertical-desc { font-size: 11.5px; }

  /* Features */
  .features-card-body { padding: 18px 16px; }
  .feature-row { padding: 10px 12px; gap: 10px; }
  .feature-row-label { font-size: 12.5px; }
  .feature-row-sub { font-size: 11px; }

  /* Results */
  .result-card-top { padding: 22px 20px 16px; }
  .result-card-bottom { padding: 18px 20px; }
  .result-metrics { gap: 8px; }
  .result-metric-val { font-size: 1.3rem; }
  .result-metric-lbl { font-size: 10.5px; }

  /* Testimonials */
  .testimonial-card { padding: 24px 18px; }
  .testimonial-text { font-size: 14px; margin-bottom: 16px; }

  /* CTA */
  .cta-inner { padding: 44px 22px; }
  .cta-inner h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .cta-inner p { font-size: 1rem; margin-bottom: 28px; }
  .cta-actions { flex-direction: column; align-items: center; gap: 10px; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 0; }
  .footer-inner { padding: 40px 0 20px; }
  .footer-brand { grid-column: 1 / -1; padding-bottom: 28px; margin-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer-brand p { max-width: 100%; }
  .footer-col { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
  .footer-col:last-child { border-bottom: none; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; padding-top: 16px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .footer-link:hover { padding-left: 0; }
  .footer-link:hover::before { display: none; }
}

@media (max-width: 480px) {
  .section { padding: 40px 0; }
  .section-header { margin-bottom: 20px; }

  /* Hero */
  .hero-inner { padding: 14px 0 20px; gap: 18px; }
  .hero-title { margin-bottom: 14px; }
  .hero-desc { margin-bottom: 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; padding: 13px 20px; }
  .hero-trust { flex-direction: column; align-items: center; gap: 8px; text-align: center; margin-top: 16px; }

  /* Typography */
  h3 { font-size: 1.2rem; }

  /* Grids */
  .vertical-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 20px; }
  .results-section .grid-3 { grid-template-columns: 1fr; }

  /* Stats */
  .stats-inner { padding: 28px 16px; }
  .stat-number { font-size: 2rem; }

  /* Services */
  .svc-grid { gap: 10px; }
  .svc-affiliate-stats { gap: 14px; }
  .svc-aff-val { font-size: 1.15rem; }

  /* Results */
  .result-metrics { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .result-metric-val { font-size: 1.15rem; }

  /* CTA */
  .cta-inner { padding: 36px 18px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; }
  .footer-inner { padding: 28px 0 12px; }
  .footer-col { padding: 16px 0; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 16px; }
  .footer-col:last-child .footer-links { grid-template-columns: 1fr; }
}}


/* ── UX ENHANCEMENTS ── */

/* Text selection */
::selection { background: rgba(79,70,229,.12); color: var(--text); }

/* Focus visible */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible { border-radius: 8px; }

/* Scroll margin for anchor targets (accounts for sticky nav) */
section[id], [id] { scroll-margin-top: calc(var(--nav-height) + 12px); }

/* Cursor on interactive cards */
.svc-card, .result-card, .process-step,
.vertical-card, .model-card, .why-card { cursor: default; }
a.svc-card { cursor: pointer; }

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; width: 0%; height: 3px;
  background: linear-gradient(90deg, #4f46e5 0%, #06b6d4 100%);
  z-index: 9999; transition: width .1s linear; pointer-events: none;
  box-shadow: 0 0 8px rgba(79,70,229,.4);
}

/* ── Back to top ── */
.back-to-top {
  position: fixed; bottom: 28px; right: 24px; z-index: 998;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(79,70,229,.35);
  opacity: 0; transform: translateY(14px) scale(.9);
  transition: all var(--transition); pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px) scale(1); box-shadow: 0 8px 24px rgba(79,70,229,.45); }
.back-to-top svg { width: 18px; height: 18px; }

/* ── Mobile sticky CTA ── */
.mobile-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 997;
  padding: 10px 16px 14px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(15,23,42,.1);
  transform: translateY(100%); transition: transform .3s cubic-bezier(0.4,0,0.2,1);
}
.mobile-sticky-cta.visible { transform: translateY(0); }
@media (max-width: 768px) { .mobile-sticky-cta { display: block; } }

/* ── Touch targets ── */
@media (max-width: 768px) {
  .mobile-menu a, .mobile-svc-wrap button { min-height: 44px; }
  .hamburger { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .btn { min-height: 44px; }
}

/* ── Improved button active state ── */
.btn:active { transform: scale(.97); }
.btn-primary:active { box-shadow: 0 2px 8px rgba(79,70,229,.3); }

/* ── Better link hover in footer/nav ── */
.nav-link { transition: color var(--transition); }

/* ── Smooth image loading ── */
img { transition: opacity .3s ease; }
