/* ══════════════════════════════════════════════════════════════
   KNOCKKNOCK — Production CSS Design System
   Brand: Purple (#9333EA primary) + Gold (#D97706 accent) + White
   Font: Inter
══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Purple family (matches logo) */
  --p-900: #3B0764;
  --p-800: #6B21A8;
  --p-700: #7E22CE;
  --p-600: #9333EA;
  --p-500: #A855F7;
  --p-400: #C084FC;
  --p-300: #D8B4FE;
  --p-100: #F3E8FF;
  --p-50:  #FAF5FF;

  /* Gold accent */
  --g-600: #D97706;
  --g-500: #F59E0B;
  --g-400: #FBBF24;
  --g-100: #FEF3C7;
  --g-50:  #FFFBEB;

  /* Neutrals */
  --n-900: #0F172A;
  --n-800: #1E293B;
  --n-700: #334155;
  --n-600: #475569;
  --n-400: #94A3B8;
  --n-200: #E2E8F0;
  --n-100: #F1F5F9;
  --n-50:  #F8FAFC;
  --white: #FFFFFF;

  /* Semantic */
  --brand:       var(--p-600);
  --brand-dark:  var(--p-700);
  --brand-light: var(--p-100);
  --accent:      var(--g-600);
  --text:        var(--n-900);
  --text-muted:  var(--n-600);
  --surface:     var(--white);
  --surface-alt: var(--n-50);
  --border:      var(--n-200);

  /* Typography scale */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.25rem;
  --fs-2xl:  1.5rem;
  --fs-3xl:  1.875rem;
  --fs-4xl:  2.25rem;
  --fs-5xl:  3rem;
  --fs-6xl:  3.75rem;
  --fs-7xl:  4.5rem;

  /* Spacing (8pt grid) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Border radius */
  --r-sm: 0.375rem;
  --r-md: 0.625rem;
  --r-lg: 1rem;
  --r-xl: 1.5rem;
  --r-2xl: 2rem;
  --r-full: 9999px;

  /* Shadows */
  --sh-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --sh-md:   0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --sh-lg:   0 10px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --sh-xl:   0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
  --sh-purple: 0 8px 30px rgba(147, 51, 234, 0.30);
  --sh-gold:   0 8px 30px rgba(217, 119, 6, 0.35);

  /* Motion */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:  150ms;
  --dur-base:  250ms;
  --dur-slow:  400ms;
  --dur-xslow: 600ms;

  /* Layout */
  --nav-h: 72px;
  --max-w: 1200px;
  --max-w-md: 900px;
  --max-w-sm: 640px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }
svg { flex-shrink: 0; }

/* ── SCROLL PROGRESS ─────────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--p-600), var(--g-500));
  z-index: 9999;
  transition: width 80ms linear;
  border-radius: 0 var(--r-full) var(--r-full) 0;
}

/* ── LAYOUT UTILITIES ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.d-only { display: block; }
section { padding: var(--sp-24) 0; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 600;
  border-radius: var(--r-md);
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.btn:hover::before { opacity: 1; }
.btn:active { transform: scale(0.97); }

/* Sizes */
.btn-sm  { padding: var(--sp-2) var(--sp-4);    font-size: var(--fs-sm); }
.btn-md  { padding: var(--sp-3) var(--sp-5);    font-size: var(--fs-base); }
.btn-lg  { padding: var(--sp-4) var(--sp-8);    font-size: var(--fs-lg); }
.btn-xl  { padding: var(--sp-4) var(--sp-10);   font-size: var(--fs-lg); border-radius: var(--r-lg); }
.btn-full{ width: 100%; justify-content: center; }

/* Variants */
.btn-primary {
  background: linear-gradient(135deg, var(--p-600) 0%, var(--p-700) 100%);
  color: var(--white);
  box-shadow: var(--sh-purple);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--p-700) 0%, var(--p-800) 100%);
  box-shadow: 0 12px 40px rgba(147, 51, 234, 0.40);
  transform: translateY(-1px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--n-800);
  border: 2px solid var(--n-200);
}
.btn-outline-dark:hover {
  border-color: var(--p-400);
  color: var(--p-700);
  background: var(--p-50);
}

.btn-outline {
  background: transparent;
  color: var(--p-700);
  border: 2px solid var(--p-300);
}
.btn-outline:hover { background: var(--p-50); border-color: var(--p-500); }

.btn-gold {
  background: linear-gradient(135deg, var(--g-600) 0%, var(--g-500) 100%);
  color: var(--white);
  box-shadow: var(--sh-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(217, 119, 6, 0.45);
}

/* ── SECTION HEADER ──────────────────────────────────────────── */
.section-hdr {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-16);
}
.sec-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--p-100);
  color: var(--p-700);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}
.sec-title {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--n-900);
  margin-bottom: var(--sp-4);
}
.sec-sub {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-xslow) var(--ease-out),
              transform var(--dur-xslow) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }

/* ── GRADIENT TEXT ───────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--p-600) 0%, var(--p-400) 60%, var(--g-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background var(--dur-base), box-shadow var(--dur-base);
}
#site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--sh-sm);
}
.nav-container {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  height: var(--nav-h);
}
.header-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
}
.nav-link {
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--n-700);
  transition: all var(--dur-fast);
}
.nav-link:hover { color: var(--p-700); background: var(--p-50); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  color: var(--n-600);
  transition: all var(--dur-fast);
}
.nav-icon-btn:hover { color: var(--p-600); background: var(--p-50); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  border-radius: var(--r-sm);
  margin-left: auto;
}
.hb-line {
  display: block;
  width: 22px; height: 2px;
  background: var(--n-800);
  border-radius: var(--r-full);
  transition: all var(--dur-base);
}
.hamburger.open .hb-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hb-line:nth-child(2) { opacity: 0; }
.hamburger.open .hb-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,23,42,0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-base);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-inner {
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 90vw);
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)), url('assets/nav-bg.jpeg') center/cover no-repeat;
  box-shadow: var(--sh-xl);
  display: flex;
  flex-direction: column;
  padding: var(--sp-6);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
}
.mobile-menu.open .mobile-menu-inner { transform: translateX(0); }
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-8);
}
.mobile-logo {
  height: 52px;
  width: auto;
  mix-blend-mode: multiply;
}
.mobile-close {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  color: var(--n-600);
  transition: all var(--dur-fast);
}
.mobile-close:hover { background: var(--n-100); color: var(--n-900); }
.mobile-nav-links { display: flex; flex-direction: column; gap: var(--sp-1); flex: 1; }
.mobile-nav-links a {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--n-800);
  transition: all var(--dur-fast);
}
.mobile-nav-links a:hover { background: var(--p-50); color: var(--p-700); }
.mobile-menu-actions { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-6); }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--white);
}

/* Animated mesh blobs */
.mesh-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.b1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(147,51,234,0.18), transparent 70%);
  top: -200px; left: -150px;
  animation: blob1 14s ease-in-out infinite;
}
.b2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,0.14), transparent 70%);
  top: 50px; right: -100px;
  animation: blob2 11s ease-in-out infinite 2s;
}
.b3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(217,119,6,0.12), transparent 70%);
  bottom: 10%; left: 25%;
  animation: blob3 9s ease-in-out infinite 4s;
}
.b4 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,132,252,0.10), transparent 70%);
  bottom: -150px; right: 10%;
  animation: blob4 16s ease-in-out infinite 1s;
}
@keyframes blob1 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(40px,-30px) scale(1.06)} 66%{transform:translate(-20px,20px) scale(0.94)} }
@keyframes blob2 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(-30px,25px) scale(1.08)} 66%{transform:translate(20px,-15px) scale(0.95)} }
@keyframes blob3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(30px,-30px) scale(1.1)} }
@keyframes blob4 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(25px,20px) scale(0.93)} 66%{transform:translate(-30px,-20px) scale(1.05)} }

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: var(--sp-16) var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}

/* Pill badge */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--white);
  border: 1px solid var(--n-200);
  box-shadow: var(--sh-sm);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--n-700);
}
.pill-dot {
  width: 8px; height: 8px;
  background: var(--p-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(168,85,247,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(168,85,247,0); }
}

.hero-h1 {
  font-size: clamp(2.5rem, 7vw, var(--fs-7xl));
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--n-900);
}
.hero-sub {
  font-size: clamp(var(--fs-base), 2.5vw, var(--fs-xl));
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  padding-top: var(--sp-2);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--n-700);
  background: var(--white);
  border: 1px solid var(--n-200);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-full);
  box-shadow: var(--sh-sm);
}
.trust-item svg { color: var(--p-600); }

/* ══════════════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════════════ */
.stats-section {
  padding: var(--sp-16) 0;
  background: var(--p-50);
  border-top: 1px solid var(--p-100);
  border-bottom: 1px solid var(--p-100);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-3);
  padding: var(--sp-8) var(--sp-4);
  background: var(--white);
  border: 1px solid var(--p-100);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  transition: all var(--dur-base) var(--ease-out);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--sh-purple); }
.stat-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: var(--p-100);
  border-radius: var(--r-lg);
  color: var(--p-700);
}
.stat-val {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--n-900);
  letter-spacing: -0.02em;
}
.stat-lbl {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════ */
#services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--p-500), var(--p-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--p-200, #E9D5FF); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card--accent { background: linear-gradient(135deg, var(--p-50), var(--g-50)); border-color: var(--p-200, #E9D5FF); }
.svc-card--accent:hover { box-shadow: var(--sh-purple); }
.svc-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: var(--p-100);
  border-radius: var(--r-lg);
  color: var(--p-700);
}
.svc-ico--accent { background: linear-gradient(135deg, var(--p-600), var(--p-500)); color: var(--white); }
.svc-card h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--n-900);
  letter-spacing: -0.01em;
}
.svc-card p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.svc-link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--p-600);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding-top: var(--sp-2);
  border-top: 1px solid var(--border);
  margin-top: auto;
  transition: gap var(--dur-fast), color var(--dur-fast);
}
.svc-link:hover { gap: var(--sp-3); color: var(--p-800); }
.svc-link--accent { color: var(--g-600); }
.svc-link--accent:hover { color: var(--g-600); }

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════════ */
.hiw-section { background: var(--surface-alt); }
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8) var(--sp-6);
  position: relative;
}
.tl-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: relative;
}
.tl-num {
  font-size: var(--fs-4xl);
  font-weight: 900;
  color: var(--p-100);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.tl-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.tl-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--p-100);
  border-radius: var(--r-lg);
  color: var(--p-700);
}
.tl-body h3 {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--n-900);
}
.tl-body p { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   ADVANTAGE
══════════════════════════════════════════════════════════════ */
.adv-section { background: var(--white); }
.adv-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.adv-text { display: flex; flex-direction: column; gap: var(--sp-6); }
.adv-desc { font-size: var(--fs-lg); color: var(--text-muted); line-height: 1.7; }
.adv-locations { display: flex; flex-direction: column; gap: var(--sp-4); }
.adv-loc {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4);
  background: var(--n-50);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition: all var(--dur-base);
}
.adv-loc:hover { border-color: var(--p-300); background: var(--p-50); transform: translateX(4px); }
.adv-loc-ico {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--p-100); border-radius: var(--r-md); color: var(--p-700);
}
.adv-loc strong { display: block; font-size: var(--fs-base); font-weight: 700; color: var(--n-900); margin-bottom: 2px; }
.adv-loc span { font-size: var(--fs-sm); color: var(--text-muted); }

.adv-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.adv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-8);
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  box-shadow: var(--sh-md);
  transition: all var(--dur-base) var(--ease-out);
}
.adv-card:hover { transform: translateX(8px); box-shadow: var(--sh-lg); border-color: var(--p-200, #E9D5FF); }
.adv-card--2 { transform: translateX(var(--sp-8)); }
.adv-card--2:hover { transform: translateX(calc(var(--sp-8) + 8px)); }
.adv-card-icon { font-size: 2rem; }
.adv-card-title { font-size: var(--fs-xl); font-weight: 700; color: var(--n-900); }
.adv-card-sub { font-size: var(--fs-sm); color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════
   BEFORE / AFTER COMPARISON
══════════════════════════════════════════════════════════════ */
#comparison { background: var(--surface-alt); }
.cmp-wrapper { max-width: 700px; margin: 0 auto; }
.cmp-slider {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  cursor: col-resize;
  user-select: none;
  aspect-ratio: 4/3;
}
.cmp-before, .cmp-after {
  position: absolute;
  inset: 0;
}
.cmp-before img, .cmp-after img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.cmp-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0ms;
}
.cmp-lbl {
  position: absolute;
  bottom: var(--sp-4);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--white);
  backdrop-filter: blur(8px);
}
.cmp-lbl--before { left: var(--sp-4); background: rgba(0,0,0,0.5); }
.cmp-lbl--after  { right: var(--sp-4); background: rgba(147,51,234,0.8); }
.cmp-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cmp-handle-btn {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p-600);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   BRANDS MARQUEE
══════════════════════════════════════════════════════════════ */
.brands-section { background: var(--white); overflow: hidden; }
.brands-marquee {
  margin-top: var(--sp-10);
  overflow: hidden;
  position: relative;
}
.brands-marquee::before, .brands-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.brands-marquee::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.brands-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--white), transparent); }
.brands-track {
  display: flex;
  gap: var(--sp-4);
  animation: marquee 30s linear infinite;
  width: max-content;
}
.brands-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-3) var(--sp-8);
  background: var(--n-50);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--n-600);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all var(--dur-base);
}
.brand-chip:hover { color: var(--p-700); border-color: var(--p-300); background: var(--p-50); }

/* ══════════════════════════════════════════════════════════════
   GENUINE PARTS
══════════════════════════════════════════════════════════════ */
.parts-section { background: var(--p-50); }
.parts-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.parts-left { display: flex; flex-direction: column; gap: var(--sp-4); position: sticky; top: calc(var(--nav-h) + var(--sp-8)); }
.parts-right { display: flex; flex-direction: column; gap: var(--sp-4); }
.parts-feat {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: var(--white);
  border: 1px solid var(--p-100);
  border-radius: var(--r-xl);
  transition: all var(--dur-base) var(--ease-out);
}
.parts-feat:hover { box-shadow: var(--sh-md); transform: translateX(4px); border-color: var(--p-300); }
.pf-ico {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--p-100); border-radius: var(--r-md); color: var(--p-700);
}
.parts-feat h4 { font-size: var(--fs-base); font-weight: 700; color: var(--n-900); margin-bottom: var(--sp-1); }
.parts-feat p  { font-size: var(--fs-sm); color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════
   EMERGENCY
══════════════════════════════════════════════════════════════ */
.emrg-section {
  background: linear-gradient(135deg, var(--p-900) 0%, var(--p-800) 50%, #4C1D95 100%);
  padding: var(--sp-20) 0;
  position: relative;
  overflow: hidden;
}
.emrg-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(250,191,36,0.12), transparent 60%);
  animation: blob1 12s ease-in-out infinite;
}
.emrg-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-5);
}
.emrg-ico {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--g-400);
}
.emrg-title {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.025em;
  max-width: 600px;
}
.emrg-sub { font-size: var(--fs-xl); color: rgba(255,255,255,0.7); }
.emrg-meta {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
  justify-content: center;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
}

/* ══════════════════════════════════════════════════════════════
   COVERAGE MAP
══════════════════════════════════════════════════════════════ */
#coverage { background: var(--surface-alt); }
.map-wrapper { display: flex; flex-direction: column; gap: var(--sp-6); }
.map-frame {
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  border: 1px solid var(--border);
}
.map-stats {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
  justify-content: center;
}
.map-stat {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--n-700);
  padding: var(--sp-3) var(--sp-5);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  box-shadow: var(--sh-sm);
}
.map-stat svg { color: var(--p-600); }

/* ══════════════════════════════════════════════════════════════
   STORIES
══════════════════════════════════════════════════════════════ */
.stories-section { background: var(--white); }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.story-card {
  background: var(--n-50);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: all var(--dur-base) var(--ease-out);
}
.story-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.story-avatar {
  width: 56px; height: 56px;
  background: var(--p-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--p-600);
  border: 3px solid var(--white);
  box-shadow: var(--sh-sm);
}
.story-stars { color: var(--g-500); font-size: var(--fs-lg); letter-spacing: 2px; }
.story-text { font-size: var(--fs-sm); color: var(--n-700); line-height: 1.7; font-style: italic; flex: 1; }
.story-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.story-name { font-size: var(--fs-sm); font-weight: 700; color: var(--n-900); }
.story-loc {
  font-size: var(--fs-xs);
  background: var(--p-100);
  color: var(--p-700);
  padding: 2px var(--sp-3);
  border-radius: var(--r-full);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
#faq { background: var(--surface-alt); }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow var(--dur-base);
}
.faq-item.open { box-shadow: var(--sh-md); border-color: var(--p-200, #E9D5FF); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--n-900);
  text-align: left;
  cursor: pointer;
  transition: background var(--dur-fast);
}
.faq-q:hover { background: var(--n-50); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--p-500);
  transition: transform var(--dur-base) var(--ease-out);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}
.faq-a p {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
.contact-section { background: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: var(--sp-6); }
.contact-desc { font-size: var(--fs-lg); color: var(--text-muted); }
.contact-channels { display: flex; flex-direction: column; gap: var(--sp-3); }
.ch-card {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: var(--n-50);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--dur-base);
}
.ch-card:hover { border-color: var(--p-300); background: var(--p-50); transform: translateX(4px); }
.ch-ico {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.ch-wa { background: #25D366; }
.ch-ph { background: var(--p-600); }
.ch-em { background: var(--n-700); }
.ch-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.ch-label { font-size: var(--fs-xs); font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.ch-val { font-size: var(--fs-sm); font-weight: 600; color: var(--n-900); }

/* Form */
.contact-form-wrap {
  background: var(--n-50);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  box-shadow: var(--sh-md);
}
.svc-form { display: flex; flex-direction: column; gap: var(--sp-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-grp { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-grp label { font-size: var(--fs-sm); font-weight: 600; color: var(--n-800); }
.form-grp input,
.form-grp select,
.form-grp textarea {
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--white);
  font-size: var(--fs-sm);
  color: var(--n-900);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
  width: 100%;
}
.form-grp input:focus,
.form-grp select:focus,
.form-grp textarea:focus {
  border-color: var(--p-500);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.15);
}
.form-grp input::placeholder,
.form-grp textarea::placeholder { color: var(--n-400); }
.form-grp textarea { resize: vertical; min-height: 100px; }
.form-grp 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='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.f-err { font-size: var(--fs-xs); color: #DC2626; font-weight: 500; min-height: 1em; }
.f-err--global { text-align: center; margin-top: var(--sp-2); }
.form-disclaimer { font-size: var(--fs-xs); color: var(--text-muted); text-align: center; }

.form-success {
  text-align: center;
  padding: var(--sp-10) var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.success-check {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--p-600), var(--p-500));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  color: var(--white);
  box-shadow: var(--sh-purple);
}
.form-success h3 { font-size: var(--fs-2xl); font-weight: 800; color: var(--n-900); }
.form-success p { font-size: var(--fs-base); color: var(--text-muted); max-width: 320px; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
#site-footer {
  background: var(--n-50);
  border-top: 1px solid var(--border);
  padding: var(--sp-20) 0 var(--sp-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  height: 72px; width: auto;
  mix-blend-mode: multiply;
  margin-bottom: var(--sp-3);
}
.footer-tag {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--p-600);
  margin-bottom: var(--sp-3);
}
.footer-desc { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.7; margin-bottom: var(--sp-4); }
.footer-socials { display: flex; gap: var(--sp-3); }
.soc-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--n-600);
  transition: all var(--dur-fast);
}
.soc-btn:hover { border-color: var(--p-400); color: var(--p-600); background: var(--p-50); transform: translateY(-2px); }
.footer-nav h4 { font-size: var(--fs-sm); font-weight: 700; color: var(--n-900); margin-bottom: var(--sp-4); text-transform: uppercase; letter-spacing: 0.05em; }
.footer-nav ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-nav ul a { font-size: var(--fs-sm); color: var(--text-muted); transition: color var(--dur-fast); }
.footer-nav ul a:hover { color: var(--p-600); }
.footer-contact { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-contact li {
  display: flex; align-items: flex-start; gap: var(--sp-2);
  font-size: var(--fs-sm); color: var(--text-muted);
}
.footer-contact li svg { color: var(--p-500); margin-top: 3px; flex-shrink: 0; }
.footer-contact li a { color: var(--text-muted); transition: color var(--dur-fast); }
.footer-contact li a:hover { color: var(--p-600); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-8);
  flex-wrap: wrap;
}
.footer-copy { font-size: var(--fs-sm); color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: var(--sp-6); }
.footer-bottom-links a { font-size: var(--fs-sm); color: var(--text-muted); transition: color var(--dur-fast); }
.footer-bottom-links a:hover { color: var(--p-600); }

/* ══════════════════════════════════════════════════════════════
   FLOATING ELEMENTS
══════════════════════════════════════════════════════════════ */

/* WhatsApp Float */
.float-wa {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: #25D366;
  color: var(--white);
  padding: var(--sp-3) var(--sp-5) var(--sp-3) var(--sp-4);
  border-radius: var(--r-full);
  box-shadow: 0 6px 30px rgba(37,211,102,0.45);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: all var(--dur-base) var(--ease-out);
  text-decoration: none;
}
.float-wa:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 40px rgba(37,211,102,0.55); }
.float-wa-label { white-space: nowrap; }

/* Mobile Sticky CTA */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-3) var(--sp-4);
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  z-index: 800;
}

/* Back to Top */
.back-top {
  position: fixed;
  bottom: var(--sp-6);
  right: calc(var(--sp-6) + 180px);
  width: 44px; height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--n-700);
  box-shadow: var(--sh-md);
  z-index: 899;
  transition: all var(--dur-base) var(--ease-out);
}
.back-top:hover { color: var(--p-600); border-color: var(--p-300); transform: translateY(-3px); box-shadow: var(--sh-lg); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1024px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .adv-layout { grid-template-columns: 1fr; }
  .adv-cards { flex-direction: row; }
  .adv-card--2 { transform: none; }
  .adv-card--2:hover { transform: none; }
  .parts-layout { grid-template-columns: 1fr; }
  .parts-left { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .stories-grid { grid-template-columns: 1fr; gap: var(--sp-4); max-width: 500px; margin: 0 auto; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 640px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --nav-h: 60px; }
  section { padding: var(--sp-16) 0; }
  .container { padding: 0 var(--sp-4); }

  .header-logo { height: 44px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
  .timeline { grid-template-columns: 1fr; }
  .adv-cards { flex-direction: column; }
  .stories-grid { grid-template-columns: 1fr; max-width: 100%; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .btn-xl { padding: var(--sp-4) var(--sp-6); font-size: var(--fs-base); }
  .trust-row { gap: var(--sp-2); }
  .trust-item { font-size: var(--fs-xs); padding: var(--sp-1) var(--sp-3); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .emrg-meta { flex-direction: column; gap: var(--sp-2); }
  .form-row { grid-template-columns: 1fr; }
  .float-wa-label { display: none; }
  .float-wa { padding: var(--sp-3); border-radius: 50%; right: var(--sp-4); bottom: calc(var(--sp-4) + 68px); }
  .back-top { right: var(--sp-4); bottom: calc(68px + var(--sp-4) + 60px); }
  .mobile-sticky { display: block; }
  .d-only { display: none; }
  .map-stats { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════════════════════
   PRINT
══════════════════════════════════════════════════════════════ */
@media print {
  #site-header, .float-wa, .mobile-sticky, .back-top, #scroll-progress { display: none; }
  section { padding: 1cm 0; }
}
