/* ==========================================================
   Castle Computers — Digital Workshop Design System
   ========================================================== */

/* 1. CUSTOM PROPERTIES
   ========================================================== */
:root {
  /* OKLCH color system — perceptually uniform, tinted toward brand hue 264 */
  --bg:          oklch(9%  0.009 264);
  --surface:     oklch(12% 0.009 264);
  --card:        oklch(14.5% 0.010 264);
  --card-hover:  oklch(17.5% 0.011 264);

  /* Brand blue — distinctively electric, not just Tailwind 600 */
  --blue:        oklch(54% 0.225 264);
  --blue-light:  oklch(62% 0.200 264);
  --cyan:        oklch(81% 0.135 200);

  --glow:        oklch(54% 0.225 264 / 0.25);
  --glow-cyan:   oklch(81% 0.135 200 / 0.15);

  /* Text — tinted neutrals, never pure gray */
  --text:        oklch(97% 0.005 264);
  --text-muted:  oklch(66% 0.008 264);
  --text-dim:    oklch(41% 0.007 264);

  --border:       oklch(100% 0 0 / 0.07);
  --border-hover: oklch(54% 0.225 264 / 0.5);

  --green:  oklch(68% 0.170 158);
  --amber:  oklch(74% 0.165  70);
  --red:    oklch(60% 0.215  25);

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --nav-h:    72px;
  --topbar-h: 36px;

  /* Spacing scale */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;

  /* Easing */
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-quint:  cubic-bezier(0.22, 1, 0.36, 1);
}

/* 2. RESET + BASE
   ========================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* 3. KEYFRAMES
   ========================================================== */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

/* 4. TYPOGRAPHY
   ========================================================== */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.heading-sm {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.3;
}

.body-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* 5. ACCENT TEXT — solid color, hierarchy through weight not gradients */
.gradient-text {
  color: var(--cyan);
  font-weight: inherit;
}

/* 6. TOPBAR
   ========================================================== */
.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  padding: 0 24px;
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
  z-index: 200;
}

.topbar-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-right a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.topbar-right a:hover { color: var(--text); }
.topbar-right a svg { flex-shrink: 0; }

/* 7. NAVBAR
   ========================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--blue-light); background: rgba(37,99,235,0.08); }

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.05); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--topbar-h) + var(--nav-h));
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }

.mobile-nav a {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.mobile-nav a.active { color: var(--blue-light); background: rgba(37,99,235,0.1); }

.mobile-nav-cta {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}

/* 8. BUTTONS
   ========================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background 0.2s var(--ease-out), transform 0.15s var(--ease-out), box-shadow 0.2s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,99,235,0.4);
}
.btn-primary:active {
  transform: scale(0.97);
  transition-duration: 0.08s;
  box-shadow: none;
}

.btn-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}
.btn-shimmer:hover::after { left: 140%; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-hover);
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.15s var(--ease-out);
  white-space: nowrap;
}
.btn-ghost:hover {
  background: rgba(37,99,235,0.1);
  border-color: var(--blue-light);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), opacity 0.2s var(--ease-out);
  white-space: nowrap;
}
.btn-outline:hover { color: var(--text); border-color: var(--border-hover); }

.btn-sm { padding: 9px 18px; font-size: 14px; }

/* 9. PILL BADGE / LIVE BADGE
   ========================================================== */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  width: fit-content;
}
.live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue-light);
  border-radius: 2px;
}

/* 10. GLOW CARD
   ========================================================== */
.glow-card {
  background: radial-gradient(600px circle at var(--x, 50%) var(--y, 50%), rgba(37,99,235,0.07), transparent 60%), var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.glow-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 0 1px rgba(37,99,235,0.2),
              0 8px 32px rgba(37,99,235,0.15),
              0 0 80px rgba(37,99,235,0.05);
  transform: translateY(-3px);
}

/* 11. HERO
   ========================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(-45deg, #0a0a0f, #0d1220, #0a1628, #060b18, #0a0a0f);
  background-size: 400% 400%;
  animation: gradientShift 14s ease infinite;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,211,238,0.1) 0%, transparent 70%);
  bottom: -100px;
  left: 20%;
  pointer-events: none;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 32px 100px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(250,250,250,0.6);
  max-width: 520px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-item svg { color: var(--green); flex-shrink: 0; }

/* Hero stat cards */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-stat-card {
  background: rgba(22,22,28,0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s, transform 0.25s;
}
.hero-stat-card:hover {
  border-color: var(--border-hover);
  transform: translateX(-4px);
}

.hero-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-light);
}

.hero-stat-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--text);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* 12. MOBILE HERO
   ========================================================== */
.hero-mobile {
  display: none;
  position: relative;
  overflow: hidden;
  background: linear-gradient(-45deg, #0a0a0f, #0d1220, #0a1628, #0a0a0f);
  background-size: 400% 400%;
  animation: gradientShift 14s ease infinite;
  padding: 48px 20px 40px;
}

.hero-slides-wrap {
  position: relative;
  overflow: hidden;
}

.hero-slides {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

.hero-slide {
  min-width: 100%;
  padding: 0 4px;
}

.hero-slide-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.hero-slide-content .hero-h1 { font-size: clamp(28px, 8vw, 40px); }
.hero-slide-content .hero-subtitle { font-size: 15px; max-width: 100%; }

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  transition: color 0.25s var(--ease-out), background 0.25s var(--ease-out), border-color 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
  cursor: pointer;
  padding: 0;
}
.hero-dot.active {
  background: var(--blue-light);
  width: 20px;
  border-radius: 3px;
}

.hero-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
  pointer-events: none;
  z-index: 5;
}

.hero-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(22,22,28,0.85);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  pointer-events: all;
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), opacity 0.2s var(--ease-out);
}
.hero-arrow:hover {
  background: var(--card);
  color: var(--text);
  border-color: var(--border-hover);
}

.mobile-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.mobile-stat-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}
.mobile-stat-tile .stat-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--blue-light);
  line-height: 1;
}
.mobile-stat-tile .stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.mobile-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.mobile-service-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.mobile-service-tile .tile-icon { color: var(--blue-light); }
.mobile-service-tile .tile-name { font-size: 13px; font-weight: 600; color: var(--text); }
.mobile-service-tile .tile-price { font-size: 12px; color: var(--cyan); font-weight: 600; }

/* 13. PROMO STRIP
   ========================================================== */
.promo-strip {
  background: #0f0f14;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  align-items: center;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.marquee-item.accent { color: var(--blue-light); font-weight: 600; }
.marquee-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-dim);
  flex-shrink: 0;
}

/* 14. SECTIONS
   ========================================================== */
.section { padding: 96px 24px; }
.section.bg-surface { background: var(--surface); }
.section.bg-dark { background: var(--bg); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header .section-label { justify-content: center; }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text);
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 15. STATS BAND
   ========================================================== */
.stats-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-tile {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-tile:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--blue-light);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-suffix {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--blue-light);
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 500;
}

/* 16. BENTO
   ========================================================== */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.bento-2 { grid-column: span 2; }
.bento-3 { grid-column: span 3; }
.bento-4 { grid-column: span 4; }
.bento-6 { grid-column: span 6; }

.service-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
}
.service-card.featured { min-height: 300px; }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  line-height: 1.25;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.15);
  padding: 5px 12px;
  border-radius: 100px;
  width: fit-content;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.service-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-light);
  margin-top: auto;
  transition: gap 0.2s;
}
.card-link:hover { gap: 10px; }

/* Simple service grid (inner pages) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* 17. TESTIMONIALS
   ========================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card.featured {
  border-color: rgba(37,99,235,0.35);
}

.stars { display: flex; gap: 3px; color: var(--amber); }

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(250,250,250,0.72);
  font-style: italic;
  flex: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name { font-weight: 600; font-size: 14px; color: var(--text); }
.testimonial-meta { font-size: 12px; color: var(--text-dim); margin-top: 2px; }

/* 18. WHY BAND
   ========================================================== */
.why-band {
  background: linear-gradient(-45deg, #0a0a0f, #0d1220, #0a1628, #060b18);
  background-size: 400% 400%;
  animation: gradientShift 14s ease infinite;
  position: relative;
  overflow: hidden;
}
.why-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.why-card {
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
}

.why-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--text);
}
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* 19. PROCESS STEPS
   ========================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), var(--border-hover), transparent);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px 32px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--blue-light);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.process-step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
}
.process-step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* 20. SYMPTOM CHIPS
   ========================================================== */
.symptom-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.symptom-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), opacity 0.2s var(--ease-out);
  cursor: default;
}
.symptom-chip:hover {
  border-color: var(--border-hover);
  color: var(--text);
  background: var(--card-hover);
}
.symptom-chip svg { color: var(--blue-light); flex-shrink: 0; }

/* 21. BRAND CHIPS
   ========================================================== */
.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}

.brand-chip {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), opacity 0.2s var(--ease-out);
}
.brand-chip:hover { color: var(--text); border-color: var(--border-hover); }

/* 22. FAQ ACCORDION
   ========================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--border-hover); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  transition: color 0.2s;
  user-select: none;
}
.faq-q:hover { color: var(--blue-light); }

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-light);
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(37,99,235,0.2); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; }

/* 23. PRICE TABLE
   ========================================================== */
.price-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.price-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.price-card-header {
  background: rgba(37,99,235,0.12);
  border-bottom: 1px solid rgba(37,99,235,0.2);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-card-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}

.price-rows { display: flex; flex-direction: column; }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: rgba(255,255,255,0.025); }

.price-row-name { font-size: 14px; color: var(--text-muted); }
.price-row-val { font-size: 14px; font-weight: 700; color: var(--cyan); }

/* 24. PRICE NOTE
   ========================================================== */
.price-note {
  background: rgba(16,185,129,0.07);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 800px;
  margin: 32px auto 0;
}
.price-note-icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.price-note p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.price-note strong { color: var(--text); }

/* 25. CONTACT FORM
   ========================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-info-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-info-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.contact-detail a, .contact-detail p {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--blue-light); }

.contact-form-card { padding: 40px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-full { grid-column: span 2; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  padding: 13px 16px;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.form-group select option { background: var(--surface); color: var(--text); }

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.form-privacy { font-size: 12px; color: var(--text-dim); line-height: 1.5; }

/* 26. INFO GRID
   ========================================================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card { padding: 32px; }
.info-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.hours-table { display: flex; flex-direction: column; gap: 10px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.hours-row .day { color: var(--text-muted); }
.hours-row .time { color: var(--text); font-weight: 500; }
.hours-row.today .day,
.hours-row.today .time { color: var(--blue-light); font-weight: 600; }
.hours-row.closed .time { color: var(--text-dim); }

.info-links { display: flex; flex-direction: column; gap: 10px; }
.info-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.info-link:last-child { border-bottom: none; }
.info-link:hover { color: var(--blue-light); }
.info-link svg { color: var(--blue-light); flex-shrink: 0; }

.contact-chips { display: flex; flex-direction: column; gap: 12px; }
.contact-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), opacity 0.2s var(--ease-out);
}
.contact-chip:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(37,99,235,0.05);
}
.contact-chip svg { color: var(--blue-light); flex-shrink: 0; }
.contact-chip strong { color: var(--text); font-weight: 600; display: block; font-size: 15px; }

/* 27. URGENCY BOX
   ========================================================== */
.urgency-box {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto 48px;
}
.urgency-icon { color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.urgency-box h3 { font-weight: 700; font-size: 16px; color: var(--amber); margin-bottom: 6px; }
.urgency-box p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* 28. CTA SECTION
   ========================================================== */
.cta-section {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(-45deg, #0a0a0f, #0d1220, #0a1628, #0a0a0f);
  background-size: 400% 400%;
  animation: gradientShift 14s ease infinite;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.cta-section-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-section p { font-size: 16px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-note { font-size: 13px; color: var(--text-dim); margin-top: 16px; }

/* 29. UPGRADE SECTION
   ========================================================== */
.upgrade-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.upgrade-list { display: flex; flex-direction: column; gap: 16px; }

.upgrade-item { display: flex; gap: 14px; align-items: flex-start; }

.upgrade-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
}
.upgrade-item h4 { font-weight: 600; font-size: 15px; color: var(--text); margin-bottom: 4px; }
.upgrade-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.upgrade-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.upgrade-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.upgrade-spec:last-child { border-bottom: none; }
.upgrade-spec-name { font-size: 14px; color: var(--text-muted); }

.upgrade-bar-wrap { display: flex; align-items: center; gap: 10px; }
.upgrade-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
  width: 100px;
}
.upgrade-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.upgrade-spec-val { font-size: 13px; font-weight: 700; color: var(--cyan); }

/* 30. PAGE HERO
   ========================================================== */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(-45deg, #0a0a0f, #0d1220, #0a1628, #060b18, #0a0a0f);
  background-size: 400% 400%;
  animation: gradientShift 14s ease infinite;
  padding: 80px 24px 72px;
  text-align: center;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.page-hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.page-hero-sub {
  font-size: 17px;
  color: rgba(250,250,250,0.6);
  line-height: 1.7;
  max-width: 560px;
  font-weight: 300;
}
.page-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blue-light); }
.breadcrumb-sep { color: var(--text-dim); }

/* 31. CAUSES GRID
   ========================================================== */
.causes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cause-card {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cause-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
}

.cause-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--text); }
.cause-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* 32. RECOVERY STEPS
   ========================================================== */
.recovery-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.recovery-steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), var(--border-hover), transparent);
}

.recovery-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px 32px;
  position: relative;
  z-index: 1;
}
.recovery-step .step-num {
  width: 44px;
  height: 44px;
  font-size: 15px;
  margin-bottom: 16px;
}
.recovery-step h3 { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--text); margin-bottom: 6px; }
.recovery-step p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* 33. FOOTER
   ========================================================== */
.footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 64px 24px 0;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e5e7eb;
}
.footer-brand img { height: 48px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: #6b7280; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #111827;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: #6b7280; transition: color 0.2s; }
.footer-col ul li a:hover { color: #111827; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
  color: #9ca3af;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: #9ca3af; transition: color 0.2s; }
.footer-bottom a:hover { color: #374151; }

/* 34. MOBILE CTA BAR
   ========================================================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  z-index: 90;
  gap: 10px;
}
.mobile-cta-bar.visible { display: flex; }
.mobile-cta-bar .btn-primary,
.mobile-cta-bar .btn-ghost {
  flex: 1;
  justify-content: center;
  font-size: 14px;
  padding: 12px 16px;
}

/* 35. BACK TO TOP
   ========================================================== */
.back-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  z-index: 89;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, border-color 0.2s;
  pointer-events: none;
}
.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-top:hover { border-color: var(--border-hover); color: var(--text); }

/* 36. FADE-UP
   ========================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up[data-delay="1"] { transition-delay: 0.1s; }
.fade-up[data-delay="2"] { transition-delay: 0.2s; }
.fade-up[data-delay="3"] { transition-delay: 0.3s; }
.fade-up[data-delay="4"] { transition-delay: 0.4s; }
.fade-up[data-delay="5"] { transition-delay: 0.5s; }
.fade-up[data-delay="6"] { transition-delay: 0.6s; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 80px 24px 64px;
    gap: 40px;
  }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .hero-stat-card { flex: 1; min-width: 200px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-tile:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-tile:nth-child(even) { border-right: none; }
  .stat-tile { border-bottom: 1px solid var(--border); }
  .stat-tile:nth-last-child(-n+2) { border-bottom: none; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 2; max-width: 480px; margin: 0 auto; width: 100%; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }

  .causes-grid { grid-template-columns: repeat(2, 1fr); }
  .recovery-steps { grid-template-columns: repeat(3, 1fr); }
  .recovery-steps::before { display: none; }
  .price-cards { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-2, .bento-3, .bento-4 { grid-column: span 1; }
  .bento-6 { grid-column: span 2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-steps::before { display: none; }
  .upgrade-layout { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; --topbar-h: 32px; }
  .section { padding: 64px 16px; }
  .topbar { display: none; }
  .nav-logo img { height: 42px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { display: block; }
  .bento { grid-template-columns: 1fr; }
  .bento-2, .bento-3, .bento-4, .bento-6 { grid-column: span 1; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 1; max-width: none; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mobile-cta-bar { display: flex; }
  .page-hero { padding: 60px 16px 56px; }
  .contact-form-card { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: span 1; }
  .causes-grid { grid-template-columns: repeat(2, 1fr); }
  .recovery-steps { grid-template-columns: 1fr 1fr; }
  .recovery-steps::before { display: none; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-ctas,
  .page-hero-ctas,
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost,
  .page-hero-ctas .btn-primary,
  .page-hero-ctas .btn-ghost,
  .cta-buttons .btn-primary,
  .cta-buttons .btn-ghost { width: 100%; justify-content: center; }
  .causes-grid { grid-template-columns: 1fr; }
  .recovery-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-tile { border-right: none !important; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .section { padding: 48px 14px; }
  .nav-inner { padding: 0 16px; }
  .hero-mobile { padding: 36px 14px 32px; }
  .service-card { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================
   WOW EFFECTS — Advanced Interactive Layer
   ========================================================== */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* Grain noise texture overlay */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

/* Custom cursor */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s, opacity 0.2s;
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(37,99,235,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9996;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s;
}
.cursor-dot.hover {
  width: 12px;
  height: 12px;
  background: var(--cyan);
}
.cursor-ring.hover {
  width: 48px;
  height: 48px;
  border-color: rgba(34,211,238,0.4);
}

/* Typewriter cursor blink */
.typed-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--blue);
  margin-left: 3px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ── QUOTE WIDGET ── */
.quote-widget {
  background: rgba(22, 22, 28, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 680px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.quote-widget:hover {
  border-color: rgba(37,99,235,0.3);
  box-shadow: 0 0 0 1px rgba(37,99,235,0.1), 0 24px 64px rgba(0,0,0,0.4);
}

/* Border beam animation */
@property --beam-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.border-beam {
  position: relative;
}
.border-beam::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from var(--beam-angle), transparent 60%, var(--blue) 75%, var(--cyan) 85%, transparent 100%);
  animation: beamSpin 4s linear infinite;
  z-index: -1;
  opacity: 0.7;
}
.border-beam::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-xl) - 1px);
  background: rgba(22,22,28,0.95);
  z-index: -1;
}
@keyframes beamSpin {
  to { --beam-angle: 360deg; }
}

.quote-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.quote-header-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.quote-step { display: none; }
.quote-step.active { display: block; }

.quote-question {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.quote-devices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.quote-device-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), color 0.15s var(--ease-out), transform 0.15s var(--ease-out);
  cursor: pointer;
}
.quote-device-btn:hover {
  background: rgba(37,99,235,0.1);
  border-color: rgba(37,99,235,0.35);
  color: var(--text);
  transform: translateY(-3px);
}
.quote-device-btn:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}
.quote-device-btn svg {
  width: 32px;
  height: 32px;
  color: var(--blue);
}

.quote-problems {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 240px;
  overflow-y: auto;
  scrollbar-width: none;
}
.quote-problems::-webkit-scrollbar { display: none; }

.quote-problem-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-align: left;
  gap: 12px;
}
.quote-problem-btn:hover {
  background: rgba(37,99,235,0.1);
  border-color: rgba(37,99,235,0.35);
}
.qp-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================
   REDESIGNED HERO — centered spotlight, no split layout
   ========================================================== */

/* Replace dot grid (better than line grid) */
.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Radial spotlight centered behind headline */
.hero-spotlight {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.13) 0%, rgba(34,211,238,0.04) 40%, transparent 70%);
  pointer-events: none;
}

/* Animated badge with rotating conic border */
@property --pill-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes pillSpin { to { --pill-angle: 360deg; } }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  cursor: default;
  letter-spacing: 0.01em;
}
.hero-pill::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from var(--pill-angle), transparent 50%, rgba(37,99,235,0.6) 68%, rgba(34,211,238,0.5) 80%, transparent 100%);
  animation: pillSpin 5s linear infinite;
  z-index: -1;
}
.hero-pill::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: #0d0d14;
  z-index: -1;
}
.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.pill-arrow {
  color: var(--text-dim);
  margin-left: 4px;
}

/* Hero centered layout */
.hero-center {
  max-width: 780px;
  margin: 0 auto;
  padding: 140px 32px 80px;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* HEADLINE — no awkward line breaks, generous sizing */
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 7.5vw, 92px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0;
}
.hero-headline .line-2 {
  display: block;
  margin-top: 4px;
}

/* Headline accent — solid color, weight contrast (gradient text is banned) */
.shimmer-text {
  color: var(--cyan);
  font-weight: 800;
}

/* Hero subheading */
.hero-sub-new {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(250,250,250,0.52);
  line-height: 1.65;
  max-width: 540px;
  font-weight: 300;
}

/* CTA row */
.hero-cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-decoration: none;
}
.cta-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(37,99,235,0.4);
}
.cta-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}
.cta-primary:hover::after { left: 140%; }

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.cta-secondary:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

/* Trust line */
.hero-trust-line {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  color: var(--text-dim);
}
.htl-check {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.htl-check svg { color: var(--green); flex-shrink: 0; }
.htl-dot { color: var(--text-dim); opacity: 0.3; margin: 0 6px; }

/* Stats bar — full width, 4 items */
.hero-stats-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}
.hsb-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.hsb-item:last-child { border-right: none; }
.hsb-item:hover { background: rgba(255,255,255,0.025); }
.hsb-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hsb-label {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
  margin-top: 7px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Quote section — moves quote widget OUT of hero into its own stripe */
.quote-section {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
}
.quote-section-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.quote-section-inner .section-label {
  justify-content: center;
  margin-bottom: 12px;
}
.quote-section-inner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  color: var(--text);
}
.quote-widget-centered {
  max-width: 680px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-center { padding: 80px 20px 56px; gap: 24px; }
  .hero-headline { font-size: clamp(38px, 11vw, 56px); }
  .hero-cta-row { flex-direction: column; width: 100%; }
  .cta-primary, .cta-secondary { width: 100%; justify-content: center; }
  .hero-trust-line { gap: 4px; }
  .hero-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .hsb-item { border-bottom: 1px solid var(--border); }
  .hsb-item:nth-child(even) { border-right: none; }
  .hsb-item:nth-last-child(-n+2) { border-bottom: none; }
  .quote-section { padding: 48px 20px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: clamp(32px, 10vw, 44px); }
}
.qp-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  white-space: nowrap;
}

.quote-price-display {
  text-align: center;
  padding: 24px 0 20px;
}
.quote-price-display #qPrice {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.quote-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
}
.quote-guarantee::before {
  content: '✓';
}

.quote-ctas {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.quote-ctas .btn-primary,
.quote-ctas .btn-ghost {
  flex: 1;
  justify-content: center;
  font-size: 14px;
  padding: 11px 16px;
}

.quote-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 14px;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 0;
}
.quote-back:hover { color: var(--text-muted); }

.quote-progress {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}
.quote-progress .qp {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s, width 0.3s;
}
.quote-progress .qp.active {
  background: var(--blue);
  width: 18px;
  border-radius: 3px;
}

/* ── HERO ORBS (parallax) ── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  will-change: transform;
}

/* ── DOUBLE MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.marquee-row {
  overflow: hidden;
  padding: 10px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
}
.marquee-row:first-child .marquee-track {
  animation: marquee 30s linear infinite;
}
.marquee-row.marquee-reverse .marquee-track {
  animation: marqueeRev 30s linear infinite;
}
@keyframes marqueeRev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.marquee-item svg { color: var(--blue); flex-shrink: 0; }
.marquee-sep {
  width: 4px;
  height: 4px;
  background: var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  margin: 0 4px;
}

/* Testimonial marquee cards */
.testimonial-marquee-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  min-width: 300px;
  max-width: 320px;
  margin: 0 10px;
  flex-shrink: 0;
}
.t-stars { color: var(--amber); font-size: 14px; letter-spacing: 1px; margin-bottom: 10px; }
.t-quote { font-size: 14px; color: var(--text-muted); line-height: 1.65; font-style: italic; margin-bottom: 14px; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar { width: 32px; height: 32px; border-radius: 50%; background: rgba(37,99,235,0.2); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--blue); flex-shrink: 0; }
.t-name { font-size: 13px; font-weight: 600; color: var(--text); }
.t-service { font-size: 12px; color: var(--text-dim); }

/* ── HERO LAYOUT UPDATE ── */
.hero-split {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── HERO BADGE ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 20px;
}

/* ── RESPONSIVE UPDATES ── */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; padding: 80px 32px 60px; }
  .quote-widget { max-width: 100%; min-width: auto; }
}
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
  .hero-split { padding: 60px 20px 40px; }
  .quote-devices { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .testimonial-marquee-card { min-width: 260px; }
}

/* ==========================================================
   WHITE NAVBAR — logo GIF blends naturally
   ========================================================== */
.navbar {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.07) !important;
}
.nav-links a {
  color: #374151 !important;
}
.nav-links a:hover {
  color: var(--blue) !important;
  background: #eff6ff !important;
}
.nav-links a.active {
  color: var(--blue) !important;
  background: #eff6ff !important;
}
.hamburger span {
  background: #374151 !important;
}
.mobile-nav {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07) !important;
}
.mobile-nav a {
  color: #374151 !important;
}
.mobile-nav a:hover {
  color: var(--blue) !important;
  background: #eff6ff !important;
}
.mobile-nav a.active {
  color: var(--blue) !important;
  background: #eff6ff !important;
}
.mobile-nav-cta {
  border-top: 1px solid rgba(0,0,0,0.08) !important;
}

/* Hero image styles */
.hero-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap img {
  width: 100%;
  max-width: 500px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite;
}
.hero-img-glow {
  position: absolute;
  width: 80%;
  height: 60%;
  bottom: -10%;
  left: 10%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.3) 0%, transparent 70%);
  filter: blur(32px);
  z-index: 1;
  pointer-events: none;
}

/* Hero left content (for split layout) */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  text-align: left;
}
.hero-left .hero-pill { align-self: flex-start; }
.hero-left .hero-cta-row { justify-content: flex-start; }
.hero-left .hero-trust-line { justify-content: flex-start; }

/* Service card image */
.service-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 4px;
  opacity: 0.92;
}
.service-card-img-sm {
  width: 72px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 4px;
}

@media (max-width: 960px) {
  .hero-img-wrap { display: none; }
  .hero-left { align-items: center; text-align: center; }
  .hero-left .hero-cta-row { justify-content: center; }
  .hero-left .hero-trust-line { justify-content: center; }
}

/* Footer logo wrapper — footer is now white so no background needed */
.footer-logo-wrap {
  display: inline-block;
  margin-bottom: 16px;
}

/* About section */
.about-section {
  padding: 100px 0;
  background: var(--bg);
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 30%;
  border: 1px solid var(--border);
  display: block;
}
.about-img-sm {
  border-radius: var(--radius);
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center center;
  border: 1px solid var(--border);
  display: block;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  font-family: var(--font-display);
  color: var(--text);
}
.about-content p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 16px;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.about-stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.about-stat-num {
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat-label {
  font-size: 13px;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .about-section { padding: 64px 0; }
}

/* ==========================================================
   POLISH LAYER — Animations, Mobile, Interactions
   ========================================================== */

/* ── Hero entrance keyframes ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Hero entrance animations ── */
.hero-pill   { animation: heroFadeUp 0.6s var(--ease-out) both; animation-delay: 0.1s; }
.hero-headline { animation: heroFadeUp 0.7s var(--ease-out) both; animation-delay: 0.22s; }
.hero-sub-new  { animation: heroFadeUp 0.7s var(--ease-out) both; animation-delay: 0.34s; }
.hero-cta-row  { animation: heroFadeUp 0.7s var(--ease-out) both; animation-delay: 0.44s; }
.hero-trust-line { animation: heroFadeUp 0.6s var(--ease-out) both; animation-delay: 0.54s; }
.hero-img-wrap { animation: slideInRight 0.9s var(--ease-out) both; animation-delay: 0.3s; }
.hero-stats-bar { animation: heroFadeUp 0.6s var(--ease-out) both; animation-delay: 0.6s; }

/* ── Better fade-up ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out),
              transform 0.6s var(--ease-out);
  will-change: opacity, transform;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── Button interactions ── */
.btn-primary {
  transition: background 0.2s, transform 0.15s var(--ease-out),
              box-shadow 0.2s !important;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 12px 32px rgba(37,99,235,0.4) !important;
}
.btn-primary:active { transform: translateY(0) scale(0.98) !important; transition-duration: 0.1s !important; }

.btn-ghost {
  transition: background 0.2s, border-color 0.2s,
              transform 0.15s var(--ease-out) !important;
}
.btn-ghost:hover { transform: translateY(-2px) !important; }
.btn-ghost:active { transform: translateY(0) scale(0.98) !important; transition-duration: 0.1s !important; }

/* ── Card hover ── */
.glow-card {
  transition: border-color 0.25s, box-shadow 0.25s,
              transform 0.25s var(--ease-out) !important;
}
.glow-card:hover { transform: translateY(-4px) !important; }

/* ── CTA primary button (hero / section) ── */
.cta-primary {
  transition: transform 0.15s var(--ease-out),
              box-shadow 0.2s !important;
}
.cta-primary:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 14px 36px rgba(37,99,235,0.45) !important;
}
.cta-primary:active { transform: scale(0.97) !important; }

.cta-secondary:hover { transform: translateX(3px) !important; }

/* ── Section header ── */
.section-header {
  animation: none; /* handled by fade-up JS */
}

/* ── Stats bar ── */
.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hsb-item {
  padding: 20px 0;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.hsb-item:last-child { border-right: none; }
.hsb-item:hover { background: rgba(255,255,255,0.02); }

/* ── Hero — fix inline styles, make fully responsive ── */
.hero-grid-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(64px, 10vw, 112px) clamp(20px, 5vw, 48px) clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── Fluid hero headline ── */
.hero-headline {
  font-size: clamp(34px, 5.5vw, 68px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.025em;
}

/* ── Hero — single column at tablet ── */
@media (max-width: 900px) {
  .hero-grid-layout {
    grid-template-columns: 1fr !important;
    padding: 72px 24px 48px !important;
    text-align: center;
  }
  .hero-left { align-items: center !important; }
  .hero-cta-row { justify-content: center !important; flex-wrap: wrap; gap: 12px; }
  .hero-trust-line { justify-content: center !important; flex-wrap: wrap; }
  .hero-img-wrap { display: none !important; }
  .hero-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .hsb-item:nth-child(2) { border-right: none; }
}

/* ── Hero — mobile ── */
@media (max-width: 600px) {
  .hero { display: block !important; }
  .hero-grid-layout { padding: 56px 20px 36px !important; }
  .hero-headline { font-size: clamp(30px, 9vw, 46px) !important; }
  .hero-pill { font-size: 12px; flex-wrap: nowrap; white-space: nowrap; overflow: hidden; align-self: center; }
  .hero-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .hsb-num { font-size: clamp(22px, 6vw, 32px); }
  .hero-cta-row { flex-direction: column; width: 100%; }
  .cta-primary, .cta-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ── Service cards ── */
.service-card {
  transition: border-color 0.25s, box-shadow 0.25s,
              transform 0.3s var(--ease-out) !important;
}
.service-card h3 {
  font-size: clamp(16px, 2vw, 20px);
  font-family: var(--font-display);
  font-weight: 700;
}
.service-card p { font-size: 14px; line-height: 1.65; }

/* ── Bento grid responsive ── */
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr !important; gap: 16px !important; }
  .bento-2, .bento-3, .bento-4, .bento-6 { grid-column: span 1 !important; }
  .service-card { padding: 24px !important; }
}

/* ── Why grid ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* ── About section mobile ── */
@media (max-width: 640px) {
  .about-images { grid-template-columns: 1fr; }
  .about-img-sm { height: 130px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stat-num { font-size: 26px; }
  .about-content h2 { font-size: clamp(24px, 7vw, 36px); }
}

/* ── Testimonial marquee speed mobile ── */
@media (max-width: 640px) {
  .marquee-track { animation-duration: 28s !important; }
}

/* ── Section headings fluid ── */
.section-title {
  font-size: clamp(24px, 4vw, 42px) !important;
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: clamp(14px, 1.6vw, 17px) !important;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Quote widget mobile ── */
@media (max-width: 600px) {
  .quote-widget { padding: 24px 20px !important; max-width: 100% !important; }
  .quote-devices { gap: 10px !important; }
  .quote-device-btn { padding: 18px 12px !important; font-size: 13px; gap: 8px !important; }
  .quote-device-btn svg { width: 24px !important; height: 24px !important; }
}

/* ── Footer mobile ── */
@media (max-width: 600px) {
  .footer-inner { padding: 48px 20px 24px !important; }
  .footer-grid { gap: 32px !important; }
}

/* ── CTA section ── */
.cta-section h2 {
  font-size: clamp(26px, 4vw, 44px) !important;
  font-family: var(--font-display) !important;
  font-weight: 800;
}
@media (max-width: 600px) {
  .cta-section { padding: 64px 20px !important; }
  .cta-buttons { flex-direction: column; align-items: stretch !important; }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-ghost { justify-content: center !important; }
}

/* ── Mobile CTA bar shadow ── */
.mobile-cta-bar {
  box-shadow: 0 -8px 32px rgba(0,0,0,0.5),
              0 -1px 0 rgba(255,255,255,0.05) !important;
}

/* ── Touch targets ── */
@media (max-width: 768px) {
  .nav-links a,
  .mobile-nav a,
  .info-link,
  .card-link { min-height: 44px; display: flex; align-items: center; }
  .hamburger { min-width: 44px; min-height: 44px; justify-content: center; }
}

/* ── Scroll progress bar always on top ── */
.scroll-progress { z-index: 10000 !important; }

/* ── Page transitions ── */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
  .section-header > * { transition-property: opacity, transform; }
}

/* ── Improved mobile nav — use visibility instead of display so transitions work ── */
.mobile-nav {
  display: flex !important;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.98);
  transition: opacity 0.22s ease,
              transform 0.28s var(--ease-out),
              visibility 0s linear 0.28s !important;
}
.mobile-nav.open {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
  transition: opacity 0.22s ease,
              transform 0.28s var(--ease-out),
              visibility 0s !important;
}

/* ── Info cards ── */
@media (max-width: 640px) {
  .info-card { padding: 24px !important; }
  .contact-chip { padding: 14px 16px !important; }
  .contact-chips { gap: 10px !important; }
}

/* ── Why cards ── */
.why-card {
  padding: clamp(20px, 3vw, 32px) !important;
  gap: 16px;
}

/* ── Process steps mobile ── */
@media (max-width: 640px) {
  .process-steps {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .process-step { padding: 24px !important; }
}

/* ── Marquee mobile hide on very small ── */
@media (max-width: 360px) {
  .marquee-row .marquee-item { font-size: 12px; }
}

/* ==========================================================
   FRONTEND-DESIGN ENHANCEMENT LAYER
   Atmospheric depth, workshop-light cards, stronger hero
   ========================================================== */

/* ── Hero: richer multi-layer background ── */
.hero {
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(37,99,235,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(34,211,238,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 90%, rgba(37,99,235,0.06) 0%, transparent 60%),
    #080810 !important;
  animation: none !important;
}

/* ── Dot grid: mask-faded so it fades toward edges ── */
.dot-grid {
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px) !important;
  background-size: 24px 24px !important;
  -webkit-mask-image: radial-gradient(ellipse 90% 85% at 50% 40%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 85% at 50% 40%, black 30%, transparent 100%);
}

/* ── Hero spotlight: tighter, more dramatic beam ── */
.hero-spotlight {
  top: 0 !important;
  width: 900px !important;
  height: 600px !important;
  background: radial-gradient(ellipse at 50% 0%, rgba(37,99,235,0.22) 0%, rgba(37,99,235,0.08) 35%, transparent 65%) !important;
}

/* ── Hero headline: tighter tracking, stronger presence ── */
.hero-headline {
  letter-spacing: -0.035em !important;
  line-height: 1.02 !important;
}

/* ── Hero pill: slightly more refined ── */
.hero-pill {
  background: rgba(255,255,255,0.04) !important;
  backdrop-filter: blur(8px) !important;
}

/* ── Service cards: workshop-light glow from top on hover ── */
.service-card {
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 140%;
  height: 60%;
  background: radial-gradient(ellipse at 50% 0%, rgba(37,99,235,0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}
.service-card:hover::after { opacity: 1; }

/* ── Service card featured: subtle top accent line ── */
.service-card.featured {
  border-top: 1px solid rgba(37,99,235,0.3) !important;
}

/* ── Why cards: atmospheric hover with directional light ── */
.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.why-card:hover::after { opacity: 1; }

/* ── Stats bar: stronger visual presence ── */
.hero-stats-bar {
  background: rgba(10,10,20,0.6) !important;
  backdrop-filter: blur(12px) !important;
  border-top: 1px solid rgba(37,99,235,0.15) !important;
}
.hsb-num {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hsb-label {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Section label: more refined dash ── */
.section-label::before {
  width: 16px !important;
  height: 1.5px !important;
  background: linear-gradient(90deg, var(--blue-light), var(--cyan)) !important;
}

/* ── CTA section: dramatic radial treatment over the image ── */
.cta-section {
  position: relative;
}
.cta-section > div[style] {
  background: linear-gradient(180deg,
    rgba(10,10,20,0.75) 0%,
    rgba(8,8,20,0.88) 60%,
    rgba(8,8,20,0.96) 100%) !important;
}

/* ── Review cards: subtle top border accent ── */
.review-card {
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out) !important;
}
.review-card:hover {
  border-top-color: rgba(37,99,235,0.3) !important;
}
.review-card p {
  font-style: normal !important;
  color: var(--text-muted) !important;
  font-size: 15px;
  line-height: 1.75;
}

/* ── About section: image subtle overlay ── */
.about-img-main,
.about-img-sm {
  transition: transform 0.4s var(--ease-out), filter 0.3s var(--ease-out);
}
.about-images:hover .about-img-main {
  transform: scale(1.02);
}
.about-images:hover .about-img-sm {
  transform: scale(1.015);
}

/* ── Glow card base: stronger hover shadow ── */
.glow-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(37,99,235,0.12) !important;
  transform: translateY(-3px) !important;
}

/* ── Quote section: slightly warmer surface ── */
.quote-section {
  background: linear-gradient(180deg, var(--surface) 0%, rgba(12,12,20,0.98) 100%) !important;
}

/* ── Topbar: subtle gradient ── */
.topbar {
  background: linear-gradient(180deg, rgba(6,6,14,0.98) 0%, rgba(8,8,16,0.95) 100%) !important;
}

/* ── Reviews rating summary ── */
.reviews-rating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 12px;
}
.reviews-score {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.reviews-stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
}
.reviews-count {
  font-size: 14px;
  color: var(--text-dim);
}

/* ── Reviews carousel ── */
.reviews-carousel-wrap {
  margin-top: 48px;
  position: relative;
}
.reviews-track-outer {
  overflow: hidden;
}
.reviews-carousel {
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
}
.review-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  transition: opacity 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.review-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 1px;
}
.review-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
  font-style: italic;
}
.review-card footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.review-card footer strong {
  color: var(--text);
  font-weight: 600;
}
.google-icon {
  margin-left: auto;
  flex-shrink: 0;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.carousel-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-btn:hover {
  background: rgba(37,99,235,0.2);
  border-color: rgba(37,99,235,0.4);
}
.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  padding: 0;
}
.carousel-dot.active {
  background: var(--blue);
  transform: scale(1.25);
}
@media (max-width: 900px) {
  .review-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 600px) {
  .review-card { flex: 0 0 100%; padding: 24px; }
  .reviews-carousel { gap: 16px; }
}

/* ==========================================================
   IMPECCABLE PASS — layout, animate, delight, adapt, polish
   ========================================================== */

/* ── Dot on carousel active should use --blue ── */
.carousel-dot.active { background: var(--blue); }
.carousel-btn:hover { background: oklch(54% 0.225 264 / 0.2); border-color: oklch(54% 0.225 264 / 0.4); }

/* ── Stars use amber token ── */
.review-stars { color: var(--amber); }

/* ── Review card — lift + ring on hover (it's a link) ── */
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px oklch(54% 0.225 264 / 0.15), 0 0 0 1px oklch(54% 0.225 264 / 0.2) !important;
  transition: transform 0.25s var(--ease-quint), box-shadow 0.25s var(--ease-quint);
}
.review-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* ── Body text line length cap ── */
.hero-sub-new, .about-content p, .service-intro, .page-intro, .quote-section > p {
  max-width: 62ch;
}

/* ── Section spacing rhythm — vary between tight and generous ── */
.section { padding-block: var(--sp-20); }
.section.section-tight { padding-block: var(--sp-12); }
.section.section-wide  { padding-block: var(--sp-24); }

/* ── Section label — more distinctive ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 5px 12px;
  border: 1px solid oklch(54% 0.225 264 / 0.3);
  border-radius: 100px;
  background: oklch(54% 0.225 264 / 0.08);
}

/* ── CTA primary — stronger active press ── */
.cta-primary, .btn-primary {
  transition: transform 0.15s var(--ease-quint), box-shadow 0.15s var(--ease-quint), background 0.2s;
}
.cta-primary:hover, .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px oklch(54% 0.225 264 / 0.35);
}
.cta-primary:active, .btn-primary:active {
  transform: translateY(0px) scale(0.98);
  box-shadow: 0 2px 8px oklch(54% 0.225 264 / 0.2);
}

/* ── CTA secondary — active state ── */
.cta-secondary:active { transform: scale(0.97); }

/* ── Universal focus ring — WCAG AA ── */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Touch targets — 44px minimum ── */
@media (pointer: coarse) {
  .topbar-right a,
  .nav-links a,
  .carousel-btn,
  .carousel-dot,
  .quote-device-btn {
    min-height: 44px;
    min-width: 44px;
  }
}

/* ── Hero stats number — larger, stronger contrast ── */
.hsb-num {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  font-family: var(--font-display);
  line-height: 1;
}
.hsb-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ── Hero trust line — better spacing ── */
.hero-trust-line {
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}
.htl-check {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-muted);
}
.htl-check svg { color: var(--green); flex-shrink: 0; }

/* ── Glow cards — richer hover shadow ── */
.glow-card {
  transition: transform 0.25s var(--ease-quint), box-shadow 0.25s var(--ease-quint), border-color 0.2s;
}

/* ── About stat numbers — match hero ── */
.about-stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}

/* ── Reviews rating summary — better visual weight ── */
.reviews-rating-summary {
  margin-top: var(--sp-4);
  gap: var(--sp-3);
}
.reviews-score {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.reviews-stars { font-size: 20px; letter-spacing: 3px; }
.reviews-count { color: var(--text-dim); font-size: 13px; }

/* ── Stagger fade-up for grid children ── */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.10s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.20s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.25s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.30s; }

/* ── Page transitions — smooth entrance ── */
@keyframes pageEntrance {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero { animation: pageEntrance 0.6s var(--ease-quint) both; }

/* ── Navbar scrolled state — tighter, more defined ── */
.navbar.scrolled {
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px oklch(0% 0 0 / 0.3);
}

/* ── Better topbar ── */
.topbar-dot { box-shadow: 0 0 6px var(--green); }

/* ── Mobile: better hero spacing ── */
@media (max-width: 600px) {
  .hero-cta-row { flex-direction: column; }
  .cta-primary, .cta-secondary { width: 100%; justify-content: center; }
  .hero-pill { font-size: 11px; }
  .hsb-item { text-align: center; }
}

/* ── Reduced motion — accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── Developer delight: console easter egg (visual trace) ── */
/* See main.js for console.log message */
