/* ============================================================
   LEAD POINTS — AI Automation & Digital Solutions
   Fonts: Space Grotesk (display) · Inter (body)
   Theme: Navy / Blue / Cyan + per-service accent colors
   ============================================================ */

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

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  /* Core brand */
  --navy:         #0B1A2F;
  --navy-mid:     #142740;
  --navy-deep:    #060E1A;
  --blue:         #2563EB;
  --blue-mid:     #3B82F6;
  --blue-light:   #60A5FA;
  --blue-pale:    rgba(37,99,235,.07);
  --blue-glow:    rgba(37,99,235,.18);
  --cyan:         #06B6D4;
  --cyan-light:   #22D3EE;
  --cyan-pale:    rgba(6,182,212,.08);

  /* Per-service accents */
  --svc-web:      #10B981;
  --svc-web-pale: rgba(16,185,129,.08);
  --svc-web-glow: rgba(16,185,129,.22);
  --svc-email:    #2563EB;
  --svc-email-pale: rgba(37,99,235,.07);
  --svc-ai:       #7C3AED;
  --svc-ai-pale:  rgba(124,58,237,.07);
  --svc-ai-glow:  rgba(124,58,237,.22);
  --svc-leads:    #F43F5E;
  --svc-leads-pale: rgba(244,63,94,.07);
  --svc-leads-glow: rgba(244,63,94,.22);
  --svc-remind:   #06B6D4;
  --svc-remind-pale: rgba(6,182,212,.07);
  --svc-promo:    #F59E0B;
  --svc-promo-pale: rgba(245,158,11,.07);
  --svc-promo-glow: rgba(245,158,11,.22);

  /* Backgrounds */
  --white:        #FFFFFF;
  --bg-warm:      #FFFBF5;
  --bg-cool:      #F0F7FF;
  --bg-gray:      #F8FAFC;

  /* Text */
  --text:         #0F172A;
  --muted:        #475569;
  --dim:          #94A3B8;
  --silver:       #94A3B8;
  --silver-light: #CBD5E1;

  /* Borders */
  --border:       rgba(148,163,184,.18);
  --border-md:    rgba(148,163,184,.35);

  /* Typography */
  --ff-display: 'Space Grotesk', system-ui, sans-serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  /* Radii */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 999px;

  /* Shadows */
  --s-sm:   0 2px 8px rgba(11,26,47,.06);
  --s-md:   0 8px 28px rgba(11,26,47,.09);
  --s-lg:   0 16px 48px rgba(11,26,47,.13);
  --s-xl:   0 24px 64px rgba(11,26,47,.18);
  --s-blue: 0 6px 24px rgba(37,99,235,.22);

  /* Easing */
  --ease:   cubic-bezier(.16, 1, .3, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);

  /* Layout */
  --max-w:    1200px;
  --header-h: 76px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; border: none; outline: none; background: none; }

/* Subtle grain */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none; opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -.02em;
}
.d-hero   { font-size: clamp(2.4rem, 5.5vw, 4.8rem); font-weight: 700; line-height: 1; letter-spacing: -.03em; }
.d-xl     { font-size: clamp(1.9rem, 4vw, 3.4rem);   font-weight: 700; line-height: 1.05; }
.d-lg     { font-size: clamp(1.5rem, 3vw, 2.4rem);   font-weight: 700; }
.d-md     { font-size: clamp(1.2rem, 2.2vw, 1.8rem); font-weight: 700; }
.d-sm     { font-size: clamp(1rem, 1.6vw, 1.3rem);   font-weight: 700; }

.overline {
  font-family: var(--ff-display);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
}
.overline-blue { color: var(--blue); }
.overline-cyan { color: var(--cyan-light); }
.overline-emerald { color: var(--svc-web); }

.lead {
  font-size: 1.05rem; font-weight: 400;
  color: var(--muted); line-height: 1.75;
}
.accent { color: var(--blue); }
.accent-cyan { color: var(--cyan); }
.accent-emerald { color: var(--svc-web); }

/* ── Layout ──────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-head { margin-bottom: 52px; }
.section-head .overline { margin-bottom: 10px; display: block; }
.text-center { text-align: center; }
.text-center .lead { max-width: 620px; margin: 14px auto 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-family: var(--ff-display);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  border-radius: var(--r-sm);
  cursor: pointer; white-space: nowrap;
  transition: all .3s var(--ease);
  border: none;
}
.btn-lg { padding: 17px 36px; font-size: .88rem; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--s-blue);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(37,99,235,.32); background: var(--blue-mid); }

.btn-emerald {
  background: var(--svc-web);
  color: var(--white);
  box-shadow: 0 6px 24px var(--svc-web-glow);
}
.btn-emerald:hover { transform: translateY(-2px); box-shadow: 0 10px 36px var(--svc-web-glow); filter: brightness(1.08); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--s-md);
}
.btn-dark:hover { transform: translateY(-2px); background: var(--navy-mid); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border-md);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,.65); transform: translateY(-1px); }

.btn-wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,.25);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(37,211,102,.35); }

/* ── WhatsApp FAB ────────────────────────────────────────── */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 8000;
  width: 60px; height: 60px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: all .3s var(--ease);
}
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,.5); }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 7000;
  height: var(--header-h);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: var(--s-sm);
}
/* When hero is dark, header starts transparent */
.site-header.header-dark {
  background: rgba(11,26,47,.4);
  border-bottom-color: rgba(255,255,255,.06);
}
.site-header.header-dark.scrolled {
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--border);
}
.site-header.header-dark:not(.scrolled) .logo-name { color: var(--white); }
.site-header.header-dark:not(.scrolled) .logo-sub { color: rgba(255,255,255,.5); }
.site-header.header-dark:not(.scrolled) .nav-link { color: rgba(255,255,255,.7); }
.site-header.header-dark:not(.scrolled) .nav-link:hover { color: var(--white); }
.site-header.header-dark:not(.scrolled) .menu-btn span { background: var(--white); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-img {
  width: 40px; height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: var(--ff-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy); letter-spacing: -.01em;
  transition: color .3s;
}
.logo-name span { color: var(--blue); }
.logo-sub {
  font-size: .6rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--dim);
  transition: color .3s;
}

/* Desktop Nav */
.desktop-nav {
  display: flex; align-items: center; gap: 32px;
}
.nav-link {
  font-family: var(--ff-display);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .03em; text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color .25s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--blue);
  border-radius: 1px;
  transition: width .3s var(--ease);
}
.nav-link:hover { color: var(--blue); }
.nav-link:hover::after { width: 100%; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; }

/* Menu Button */
.menu-btn {
  display: none;
  flex-direction: column; gap: 5px;
  width: 26px; padding: 4px 0;
}
.menu-btn span {
  display: block; width: 100%; height: 2.5px;
  background: var(--navy); border-radius: 2px;
  transition: all .3s var(--ease);
  transform-origin: center;
}
.menu-btn.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 6998;
  background: rgba(11,26,47,.5);
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0;
  z-index: 6999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--s-xl);
  transform: translateY(-110%);
  opacity: 0;
  transition: all .4s var(--ease);
  pointer-events: none;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-inner {
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px 28px 28px;
}
.mobile-nav .nav-link {
  display: block; padding: 14px 0;
  font-family: var(--ff-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn { margin-top: 8px; justify-content: center; }

/* ── Hero (Dark) ─────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 100px;
  background: var(--navy);
  overflow: hidden;
  color: var(--white);
}
/* Animated mesh gradient */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(37,99,235,.28) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 20%, rgba(6,182,212,.2) 0%, transparent 50%),
    radial-gradient(ellipse at 55% 80%, rgba(124,58,237,.15) 0%, transparent 50%);
  animation: meshShift 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes meshShift {
  0%   { transform: scale(1) translate(0,0); opacity: .8; }
  100% { transform: scale(1.15) translate(-3%,4%); opacity: 1; }
}
/* Dot grid */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px 8px 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-full);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--cyan-light);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,211,238,.5); }
  50% { box-shadow: 0 0 0 8px rgba(34,211,238,0); }
}
.hero-badge span {
  font-family: var(--ff-display);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 .accent { color: var(--cyan-light); }
.hero-sub {
  font-size: 1.08rem; font-weight: 400;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  max-width: 500px; margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Visual — Glassmorphic stat card */
.hero-visual { position: relative; }
.hero-glass-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
  position: relative;
  overflow: hidden;
}
.hero-glass-card::before {
  content: '';
  position: absolute; top: -50%; right: -30%; width: 60%; height: 100%;
  background: radial-gradient(circle, rgba(6,182,212,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glass-title {
  font-family: var(--ff-display);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 28px;
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hero-stat {
  text-align: center;
  padding: 16px 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-md);
  transition: all .3s var(--ease);
}
.hero-stat:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}
.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 1.8rem; font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: .7rem; font-weight: 500;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
}
/* Glow orb behind card */
.hero-glow {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}
.hero-glow-1 { top: -20%; right: -10%; background: rgba(37,99,235,.25); }
.hero-glow-2 { bottom: -15%; left: -5%; background: rgba(6,182,212,.2); }

/* ── Proof Strip ─────────────────────────────────────────── */
.proof-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.04);
  padding: 20px 0;
}
.proof-strip-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.proof-item {
  font-family: var(--ff-display);
  font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.proof-item .proof-icon { font-size: 1rem; color: rgba(255,255,255,.85); }

/* ── Web Dev Spotlight ───────────────────────────────────── */
.webdev-section {
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}
.webdev-section::before {
  content: '';
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, var(--svc-web-pale) 0%, transparent 60%);
  pointer-events: none;
}
.webdev-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 1;
}
.webdev-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--svc-web-pale);
  border: 1px solid rgba(16,185,129,.12);
  border-radius: var(--r-full);
  margin-bottom: 16px;
}
.webdev-badge span {
  font-family: var(--ff-display);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--svc-web);
}
.webdev-section h2 .accent-emerald { color: var(--svc-web); }
.webdev-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.webdev-feat {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--text);
}
.webdev-feat-icon {
  font-size: .95rem;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--svc-web);
}

/* Browser mockup */
.browser-mockup {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--s-xl);
  background: #1e1e2e;
}
.browser-bar {
  height: 38px;
  background: #2d2d3f;
  display: flex; align-items: center; gap: 8px; padding: 0 16px;
}
.browser-dot { width: 11px; height: 11px; border-radius: 50%; }
.browser-dot-r { background: #ff5f56; }
.browser-dot-y { background: #ffbd2e; }
.browser-dot-g { background: #27c93f; }
.browser-url {
  margin-left: 16px;
  padding: 4px 14px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-xs);
  font-size: .65rem; font-weight: 500;
  color: rgba(255,255,255,.35);
  letter-spacing: .02em;
}
.browser-body {
  padding: 32px 28px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}
/* Animated code lines */
.code-line {
  height: 10px;
  border-radius: 3px;
  margin-bottom: 10px;
  opacity: .15;
  animation: codePulse 3s ease-in-out infinite;
}
.code-line:nth-child(1)  { width: 45%; background: var(--svc-web); animation-delay: 0s; }
.code-line:nth-child(2)  { width: 70%; background: var(--blue); animation-delay: .3s; margin-left: 20px; }
.code-line:nth-child(3)  { width: 55%; background: var(--cyan); animation-delay: .6s; margin-left: 20px; }
.code-line:nth-child(4)  { width: 35%; background: var(--svc-web); animation-delay: .9s; }
.code-line:nth-child(5)  { width: 80%; background: var(--blue); animation-delay: 1.2s; margin-left: 20px; }
.code-line:nth-child(6)  { width: 50%; background: var(--svc-ai); animation-delay: 1.5s; margin-left: 40px; }
.code-line:nth-child(7)  { width: 60%; background: var(--cyan); animation-delay: 1.8s; margin-left: 20px; }
.code-line:nth-child(8)  { width: 30%; background: var(--svc-web); animation-delay: 2.1s; }
.code-line:nth-child(9)  { width: 65%; background: var(--blue); animation-delay: 2.4s; margin-left: 20px; }
.code-line:nth-child(10) { width: 40%; background: var(--svc-leads); animation-delay: 2.7s; }
@keyframes codePulse {
  0%, 100% { opacity: .12; }
  50% { opacity: .35; }
}

/* ── Services Grid ───────────────────────────────────────── */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all .35s var(--ease);
}
/* Top accent bar — unique per service */
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.service-card:hover { transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { opacity: 1; }

/* Per-service colors */
.service-card[data-svc="web"]::before    { background: linear-gradient(90deg, var(--svc-web), #34D399); }
.service-card[data-svc="web"]:hover      { box-shadow: 0 12px 40px var(--svc-web-glow); }
.service-card[data-svc="email"]::before  { background: linear-gradient(90deg, var(--svc-email), var(--blue-mid)); }
.service-card[data-svc="email"]:hover    { box-shadow: 0 12px 40px var(--blue-glow); }
.service-card[data-svc="ai"]::before     { background: linear-gradient(90deg, var(--svc-ai), #A78BFA); }
.service-card[data-svc="ai"]:hover       { box-shadow: 0 12px 40px var(--svc-ai-glow); }
.service-card[data-svc="leads"]::before  { background: linear-gradient(90deg, var(--svc-leads), #FB7185); }
.service-card[data-svc="leads"]:hover    { box-shadow: 0 12px 40px var(--svc-leads-glow); }
.service-card[data-svc="remind"]::before { background: linear-gradient(90deg, var(--svc-remind), var(--cyan-light)); }
.service-card[data-svc="remind"]:hover   { box-shadow: 0 12px 40px rgba(6,182,212,.22); }
.service-card[data-svc="promo"]::before  { background: linear-gradient(90deg, var(--svc-promo), #FBBF24); }
.service-card[data-svc="promo"]:hover    { box-shadow: 0 12px 40px var(--svc-promo-glow); }

.service-card-icon {
  font-size: 1.8rem;
  margin-bottom: 18px;
  display: block;
}
.service-card[data-svc="web"] .service-card-icon   { color: var(--svc-web); }
.service-card[data-svc="email"] .service-card-icon { color: var(--svc-email); }
.service-card[data-svc="ai"] .service-card-icon    { color: var(--svc-ai); }
.service-card[data-svc="leads"] .service-card-icon { color: var(--svc-leads); }
.service-card[data-svc="remind"] .service-card-icon{ color: var(--svc-remind); }
.service-card[data-svc="promo"] .service-card-icon { color: var(--svc-promo); }
.service-card h3 {
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 8px;
}
.service-card p {
  font-size: .88rem; color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-link {
  font-family: var(--ff-display);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap .25s var(--ease), color .25s;
}
.service-link:hover { gap: 12px; }
/* Per-service link colors */
.service-card[data-svc="web"] .service-link   { color: var(--svc-web); }
.service-card[data-svc="email"] .service-link { color: var(--svc-email); }
.service-card[data-svc="ai"] .service-link    { color: var(--svc-ai); }
.service-card[data-svc="leads"] .service-link { color: var(--svc-leads); }
.service-card[data-svc="remind"] .service-link { color: var(--svc-remind); }
.service-card[data-svc="promo"] .service-link { color: var(--svc-promo); }

/* Featured badge */
.service-featured-badge {
  position: absolute; top: 16px; right: 16px;
  padding: 4px 10px;
  background: var(--svc-web-pale);
  border: 1px solid rgba(16,185,129,.15);
  border-radius: var(--r-full);
  font-family: var(--ff-display);
  font-size: .6rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--svc-web);
}

/* ── Stats Section (Animated Counters) ───────────────────── */
.stats-section {
  background: var(--navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(37,99,235,.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(6,182,212,.15) 0%, transparent 50%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative; z-index: 1;
}
.stat-item { padding: 12px 0; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num .stat-suffix { color: var(--cyan-light); }
.stat-label {
  font-size: .78rem; font-weight: 500;
  color: var(--silver);
  letter-spacing: .03em;
}

/* ── How It Works ────────────────────────────────────────── */
.how-section { background: var(--bg-cool); }

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
/* Connecting line */
.steps-row::before {
  content: '';
  position: absolute;
  top: 40px; left: 16.66%; right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: .2;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 80px; height: 80px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--ff-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--blue);
  position: relative; z-index: 1;
  transition: all .35s var(--ease);
}
.step:hover .step-num {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: var(--s-blue);
  transform: scale(1.06);
}
.step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step p {
  font-size: .9rem; color: var(--muted);
  line-height: 1.7;
  max-width: 300px; margin: 0 auto;
}

/* ── Why Lead Points ─────────────────────────────────────── */
.why-section { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-card {
  display: flex; gap: 18px;
  padding: 28px;
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all .3s var(--ease);
}
.why-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--s-md);
  background: var(--white);
}
.why-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 4px;
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-pale);
  color: var(--blue);
}
.why-card:nth-child(1) .why-icon { color: var(--blue); background: var(--blue-pale); }
.why-card:nth-child(2) .why-icon { color: var(--svc-web); background: var(--svc-web-pale); }
.why-card:nth-child(3) .why-icon { color: var(--svc-email); background: rgba(37,99,235,.08); }
.why-card:nth-child(4) .why-icon { color: var(--svc-ai); background: var(--svc-ai-pale); }
.why-card:nth-child(5) .why-icon { color: var(--cyan); background: var(--cyan-pale); }
.why-card:nth-child(6) .why-icon { color: var(--svc-leads); background: var(--svc-leads-pale); }
.why-card h4 {
  font-size: .95rem; font-weight: 700;
  margin-bottom: 4px;
}
.why-card p {
  font-size: .86rem; color: var(--muted);
  line-height: 1.7;
}

/* ── Tech Showcase ───────────────────────────────────────── */
.tech-section { background: var(--bg-warm); }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tech-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.tech-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(37,99,235,.2), rgba(6,182,212,.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s;
}
.tech-card:hover::before { opacity: 1; }
.tech-card:hover { transform: translateY(-3px); box-shadow: var(--s-md); }

.tech-icon {
  font-size: 1.5rem;
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--blue-pale);
  color: var(--blue);
}
.tech-card:nth-child(1) .tech-icon { color: var(--svc-ai); background: var(--svc-ai-pale); }
.tech-card:nth-child(2) .tech-icon { color: var(--blue); background: var(--blue-pale); }
.tech-card:nth-child(3) .tech-icon { color: var(--svc-web); background: var(--svc-web-pale); }
.tech-card:nth-child(4) .tech-icon { color: var(--cyan); background: var(--cyan-pale); }
.tech-card:nth-child(5) .tech-icon { color: var(--svc-leads); background: var(--svc-leads-pale); }
.tech-card:nth-child(6) .tech-icon { color: var(--svc-promo); background: var(--svc-promo-pale); }
.tech-card h4 {
  font-size: .92rem; font-weight: 700;
  margin-bottom: 6px;
}
.tech-card p {
  font-size: .82rem; color: var(--muted);
  line-height: 1.65;
}

/* ── FAQ Accordion ───────────────────────────────────────── */
.faq-section { background: var(--white); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  font-family: var(--ff-display);
  font-size: 1rem; font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: color .25s;
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--muted);
  border-radius: 1px;
  transition: all .3s var(--ease);
}
.faq-icon::before { width: 14px; height: 2px; top: 11px; left: 5px; }
.faq-icon::after  { width: 2px; height: 14px; top: 5px; left: 11px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item.open .faq-icon::before { background: var(--blue); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-answer-inner {
  padding: 0 0 22px;
  font-size: .92rem; color: var(--muted);
  line-height: 1.75;
}

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 40% 40%, rgba(37,99,235,.2) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(124,58,237,.12) 0%, transparent 50%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  position: relative; z-index: 1;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section .lead { color: var(--silver-light); max-width: 600px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero (Services/Contact) ────────────────────────── */
.page-hero {
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 64px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(37,99,235,.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(6,182,212,.12) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.page-hero-inner {
  position: relative; z-index: 1;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero h1 .accent-cyan { color: var(--cyan-light); }
.page-hero .lead { color: var(--silver-light); max-width: 640px; margin: 0 auto; }

/* ── Service Detail Sections (Services Page) ─────────────── */
.svc-detail {
  padding: 80px 0;
}
.svc-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.svc-detail.reverse .svc-detail-inner { direction: rtl; }
.svc-detail.reverse .svc-detail-inner > * { direction: ltr; }

.svc-detail-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}
.svc-detail-badge span {
  font-family: var(--ff-display);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
}
.svc-detail h2 { margin-bottom: 14px; }
.svc-detail .lead { margin-bottom: 24px; }
.svc-features {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.svc-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--text);
}
.svc-feature-icon {
  flex-shrink: 0; margin-top: 4px;
  font-size: .75rem;
}

/* Visual panels for service details */
.svc-visual {
  border-radius: var(--r-xl);
  padding: 48px 36px;
  display: flex; align-items: center; justify-content: center;
  min-height: 340px;
  position: relative;
  overflow: hidden;
}
.svc-visual::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.svc-visual-icon {
  font-size: 4rem;
  color: rgba(255,255,255,.9);
  position: relative; z-index: 1;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.2));
}
/* Per-service visual backgrounds */
.svc-visual-web     { background: linear-gradient(135deg, #064e3b, var(--svc-web), #34D399); }
.svc-visual-email   { background: linear-gradient(135deg, #1e3a5f, var(--svc-email), var(--blue-mid)); }
.svc-visual-ai      { background: linear-gradient(135deg, #2e1065, var(--svc-ai), #a78bfa); }
.svc-visual-leads   { background: linear-gradient(135deg, #4c0519, var(--svc-leads), #fb7185); }
.svc-visual-remind  { background: linear-gradient(135deg, #0b1a2f, var(--svc-remind), var(--cyan-light)); }
.svc-visual-promo   { background: linear-gradient(135deg, #451a03, var(--svc-promo), #fbbf24); }

/* Service Quick Nav (Services page) */
.svc-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 5000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  transition: box-shadow .3s;
}
.svc-nav.stuck { box-shadow: var(--s-sm); }
.svc-nav-inner {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.svc-nav-inner::-webkit-scrollbar { display: none; }
.svc-pill {
  padding: 8px 18px;
  font-family: var(--ff-display);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  white-space: nowrap;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: var(--white);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.svc-pill:hover { border-color: var(--blue); color: var(--blue); }
.svc-pill.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* Integration Section */
.integration-section {
  background: var(--bg-cool);
  text-align: center;
}

/* ── Contact Page ────────────────────────────────────────── */
.contact-section { background: var(--bg-gray); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--s-md);
}
.contact-form-wrap h2 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-form-wrap .lead { margin-bottom: 28px; font-size: .92rem; }

.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-family: var(--ff-display);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-gray);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .9rem;
  color: var(--text);
  transition: all .25s var(--ease);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
  outline: none;
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.contact-info-wrap { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: all .3s var(--ease);
}
.contact-info-card:hover { transform: translateY(-2px); box-shadow: var(--s-md); }

.contact-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.contact-icon-phone { background: var(--blue-pale); color: var(--blue); }
.contact-icon-wa    { background: rgba(37,211,102,.08); color: #25D366; }
.contact-icon-email { background: var(--cyan-pale); color: var(--cyan); }
.contact-icon-globe { background: rgba(37,99,235,.05); color: var(--blue); }
.contact-icon-clock { background: var(--svc-web-pale); color: var(--svc-web); }

.contact-info-card h4 { font-size: .92rem; font-weight: 700; margin-bottom: 3px; }
.contact-info-card p  { font-size: .84rem; color: var(--muted); line-height: 1.6; }
.contact-info-card a  { color: var(--blue); font-weight: 600; transition: color .2s; }
.contact-info-card a:hover { color: var(--cyan); }

/* Dark coverage card */
.contact-coverage {
  background: var(--navy); border: none;
}
.contact-coverage h4 { color: var(--white); }
.contact-coverage p  { color: var(--silver-light); }
.contact-coverage .contact-icon { background: rgba(6,182,212,.15); color: var(--cyan); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  padding: 64px 0 0;
  color: var(--silver);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand { }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-name span { color: var(--blue-light); }
.footer-brand .logo-sub { color: var(--dim); }
.footer-brand p {
  font-size: .86rem; color: var(--silver);
  line-height: 1.7; max-width: 300px; margin-top: 4px;
}
.footer-col h4 {
  font-family: var(--ff-display);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: .86rem;
  color: var(--silver); padding: 4px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--cyan-light); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .86rem; margin-bottom: 12px;
}
.footer-contact-item i { color: var(--cyan); margin-top: 3px; width: 16px; text-align: center; }
.footer-contact-item a { display: inline; padding: 0; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  font-size: .75rem; color: var(--dim);
}
.footer-bottom a { color: var(--silver); transition: color .2s; }
.footer-bottom a:hover { color: var(--cyan-light); }
.footer-legal { display: flex; gap: 20px; }

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .webdev-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-detail-inner { grid-template-columns: 1fr; gap: 36px; }
  .svc-detail.reverse .svc-detail-inner { direction: ltr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .header-actions .btn { display: none; }
  .menu-btn { display: flex; }

  .d-hero { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero { padding-top: calc(var(--header-h) + 48px); padding-bottom: 64px; }
  .hero-sub { font-size: .95rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .proof-strip-inner { flex-direction: column; gap: 12px; align-items: flex-start; padding: 0 28px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; gap: 28px; }
  .steps-row::before { display: none; }
  .tech-grid { grid-template-columns: 1fr; }
  .webdev-features { grid-template-columns: 1fr; }

  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }

  .svc-visual { min-height: 260px; }

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

  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { justify-content: center; width: 100%; max-width: 340px; }

  .contact-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .logo-sub { display: none; }
  .hero-glass-card { padding: 28px 20px; }
  .stat-num { font-size: 1.6rem; }
  .service-card { padding: 24px 20px; }
}
