/* ============================================================
   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: 72px;
}

*, *::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.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.1rem; }

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

.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; }
.container-lg { max-width: 1400px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header p { margin-top: 16px; font-size: 1.1rem; }

.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; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }

/* ── 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(--primary); color: #fff;
  box-shadow: 0 2px 12px rgba(79,70,229,.35);
}
.btn-primary:hover {
  background: var(--primary-dark); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(79,70,229,.4);
}
.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 ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height); background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.nav-logo {
  font-size: 1.3rem; font-weight: 800; letter-spacing: -.03em;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff; font-weight: 900; letter-spacing: -.05em;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  padding: 8px 14px; border-radius: 8px;
  transition: all var(--transition);
}
.nav-link:hover { color: var(--text); background: var(--bg); }
.nav-link.active { color: var(--primary); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn { padding: 10px 20px; font-size: 13.5px; }

.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: var(--white); border-bottom: 2px solid var(--border);
  padding: 8px 20px 24px; z-index: 999;
  transform: translateY(-8px); opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu a {
  display: block; padding: 14px 4px;
  font-size: 15px; font-weight: 600;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
  transition: color 0.15s;
}
.mobile-menu a:last-of-type { border: none; }
.mobile-menu a:hover, .mobile-menu a:active { color: var(--primary); }
.mobile-menu-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.mobile-menu-actions .btn { width: 100%; justify-content: center; padding: 13px; 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 {
  min-height: 100vh; 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: 80px; align-items: center;
  padding: 80px 0;
}
.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: 24px; }
.hero-title em { font-style: normal; }
.hero-desc { font-size: 1.125rem; margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.hero-trust { margin-top: 48px; 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); }
.clients-header { text-align: center; margin-bottom: 40px; font-size: 13px; font-weight: 600; color: var(--text-light); letter-spacing: .1em; text-transform: uppercase; }
.clients-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.client-logo {
  font-size: 17px; font-weight: 800; color: var(--text-light);
  letter-spacing: -.03em; transition: color var(--transition);
  cursor: default; user-select: none;
}
.client-logo:hover { color: var(--text-muted); }

/* ── 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: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.service-icon svg { width: 24px; height: 24px; }
.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; }
/* 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-num {
  font-size: 11px; font-weight: 700;
  color: var(--text-light);
  letter-spacing: .07em;
  background: var(--bg);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
  line-height: 1.5;
}
.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: 80px; 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: 80px 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: #0f172a; color: rgba(255,255,255,.6); padding: 72px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .nav-logo { color: #fff; margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 14px; line-height: 1.75; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); color: rgba(255,255,255,.6);
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }
.social-btn svg { width: 16px; height: 16px; }
.footer-col h5 { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 14px; transition: color var(--transition); }
.footer-link:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 32px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom-text { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-link { font-size: 13px; transition: color var(--transition); }
.footer-bottom-link:hover { color: rgba(255,255,255,.9); }

/* ── 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; }
.anim-delay-5 { transition-delay: .5s; }
.anim-delay-6 { transition-delay: .6s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .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: 48px; }
  .features-visual { max-width: 480px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .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; }
}
@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .section { padding: 72px 0; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid::before { display: none; }
  .stats-inner { padding: 40px 24px; }
  .vertical-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .vertical-card { padding: 22px 16px; }
  .vertical-icon-wrap { width: 48px; height: 48px; }
  .svc-grid .svc-card { grid-column: span 12; }
  .svc-affiliate { padding: 28px 22px; gap: 24px; }
  .svc-affiliate-stats { gap: 20px; }
  .cta-inner { padding: 48px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .clients-logos { gap: 28px; }
}
@media (max-width: 480px) {
  .vertical-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .results-section .grid-3 { grid-template-columns: 1fr; }
}
