/* ===================================================================
   AG SPEEDWASH PUCHONG — stylesheet
   Design language: "reflection" — dark graphite surfaces, a cobalt
   brand accent, and an ice-white gloss tone used only for the mirrored
   type + glow-line dividers that recur through the page. A mono
   "readout" role is reserved for rating/stat data, like an instrument
   gauge. Services render as a menu, not a numbered sequence.
   =================================================================== */

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

:root {
  /* --- surfaces --- */
  --bg: #0d0e11;
  --panel: #1a1c22;
  --panel-2: #21242b;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);

  /* --- text --- */
  --text: #f3f7ff;
  --text-muted: #9aa0b0;
  --text-dim: #6b7080;

  /* --- brand accent (cobalt) --- */
  --cobalt: #3b6bef;
  --cobalt-light: #7ea0f5;
  --cobalt-dark: #2450c2;
  --cobalt-soft: rgba(59,107,239,0.14);

  /* --- functional-only (booking action, not brand identity) --- */
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5d;

  /* --- rating gold --- */
  --gold: #ffc74f;

  /* --- type --- */
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* --- layout --- */
  --container: 1200px;
  --section-pad: clamp(3.25rem, 7vw, 6rem);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img, svg { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

section { position: relative; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--cobalt-light);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ===================== SKIP LINK ===================== */
.skip-link {
  position: absolute;
  left: 1rem; top: -60px;
  background: var(--cobalt);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  z-index: 200;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ===================== SHARED TYPE ===================== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cobalt-light);
  margin: 0 0 1.1rem;
}

.section-head { max-width: 640px; margin: 0 auto; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--text);
  margin: 0 0 1rem;
}
.section-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ===================== GLOSS-LINE DIVIDER (signature) ===================== */
.divider {
  display: flex;
  justify-content: center;
  padding: var(--section-pad) 0 calc(var(--section-pad) * 0.55);
}
.divider span {
  width: min(560px, 60%);
  height: 2px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, transparent, var(--cobalt) 18%, var(--cobalt-light) 50%, var(--cobalt) 82%, transparent);
  box-shadow: 0 0 18px 1px rgba(59,107,239,0.55), 0 0 46px 8px rgba(59,107,239,0.16);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.875rem 1.6rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }

.btn-whatsapp { background: var(--whatsapp); color: #07130d; }
.btn-whatsapp svg { fill: currentColor; stroke: none; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(37,211,102,0.5); }

.btn-outline { background: transparent; border-color: var(--border-strong); color: var(--text); }
.btn-outline:hover { border-color: var(--cobalt-light); background: rgba(59,107,239,0.08); transform: translateY(-2px); }

.btn-lg { padding: 1.05rem 2rem; font-size: 1.0625rem; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.15rem 0;
  border-bottom: 1px solid transparent;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.scrolled {
  padding: 0.7rem 0;
  background: rgba(13,14,17,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.logo { display: inline-flex; align-items: center; gap: 0.65rem; text-decoration: none; color: var(--text); }
.logo-mark {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cobalt), var(--cobalt-dark));
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 20px; height: 20px; color: #fff; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  line-height: 1.05;
  display: flex; flex-direction: column;
}
.logo-sub {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--cobalt-light);
  margin-top: 3px;
}

.nav-desktop { display: none; align-items: center; gap: 2.25rem; }
.nav-desktop a {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--cobalt-light);
  transition: right 0.25s var(--ease);
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--text); }
.nav-desktop a:hover::after, .nav-desktop a.active::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.nav-cta { display: none; }

.menu-toggle {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  cursor: pointer;
}
.menu-toggle svg { width: 20px; height: 20px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.nav-mobile {
  position: fixed; inset: 0;
  z-index: 95;
  background: var(--bg);
  display: flex; flex-direction: column;
  padding: 6.25rem 1.75rem 2.5rem;
  gap: 2rem;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s var(--ease), opacity 0.25s var(--ease), visibility 0.3s;
}
.nav-mobile.open { transform: translateY(0); opacity: 1; visibility: visible; }
.nav-mobile nav { display: flex; flex-direction: column; }
.nav-mobile nav a {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-socials { display: flex; gap: 1rem; margin-top: auto; }
.nav-mobile-socials a {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
}
.nav-mobile-socials a svg { width: 20px; height: 20px; }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none; }
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 7.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 80% 55% at 50% -8%, rgba(59,107,239,0.18), transparent 60%),
    var(--bg);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-glow {
  position: absolute;
  width: 58vw; height: 58vw; max-width: 860px; max-height: 860px;
  top: -22%; right: -12%;
  background: radial-gradient(circle, rgba(59,107,239,0.22), transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 28%, black 35%, transparent 82%);
  mask-image: radial-gradient(ellipse 70% 55% at 50% 28%, black 35%, transparent 82%);
}
.hero-watermark {
  position: absolute;
  width: 46vw; max-width: 620px; min-width: 260px; height: auto;
  right: -9vw; bottom: -13vw;
  color: rgba(255,255,255,0.035);
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 760px;
  padding: 0 1.5rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.eyebrow-mono { text-align: center; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
}
.text-gradient {
  color: var(--cobalt-light);
  background: linear-gradient(120deg, var(--cobalt-light), var(--cobalt));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-reflection {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  transform: scaleY(-1);
  opacity: 0.5;
  margin: 0.3rem 0 0;
  max-height: 2.3em;
  overflow: hidden;
  position: relative;
  user-select: none;
}
.hero-reflection::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 62%);
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.1875rem);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 620px;
  margin: 1.75rem 0 0;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2.25rem; }

.hero-rating {
  display: inline-flex; align-items: center; gap: 0.75rem;
  margin-top: 2.75rem;
  padding: 0.65rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}
.hero-rating:hover { border-color: var(--border-strong); background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.hero-rating-stars { display: inline-flex; gap: 2px; color: var(--gold); }
.hero-rating-stars svg { width: 15px; height: 15px; fill: currentColor; }
.hero-rating-text { font-size: 0.9rem; color: var(--text-muted); }
.hero-rating-text strong { font-family: var(--font-mono); font-weight: 600; color: var(--text); }

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  animation: bob 2.4s ease-in-out infinite;
}
.scroll-cue svg { width: 18px; height: 18px; transform: rotate(180deg); }
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===================== SERVICES ===================== */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .service-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.9rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cobalt-light), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--panel-2); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--cobalt-soft);
  color: var(--cobalt-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.35rem;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--text); margin: 0 0 0.55rem; }
.service-card p { font-size: 0.9rem; line-height: 1.55; color: var(--text-muted); margin: 0 0 1.15rem; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--cobalt-light);
  text-decoration: none;
}
.service-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.service-link:hover svg { transform: translateX(3px); }

/* ===================== BENEFITS ===================== */
.stat-strip {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: clamp(2rem, 6vw, 5rem);
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text);
  line-height: 1;
}
.stat-label {
  display: block; margin-top: 0.6rem;
  font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--text-muted);
}

.benefit-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefit-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent);
  transition: border-color 0.3s, transform 0.3s;
}
.benefit-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.benefit-icon { width: 44px; height: 44px; color: var(--cobalt-light); margin-bottom: 1.1rem; }
.benefit-icon svg { width: 100%; height: 100%; }
.benefit-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--text); margin: 0 0 0.5rem; }
.benefit-card p { font-size: 0.875rem; line-height: 1.55; color: var(--text-muted); margin: 0; }

/* ===================== REVIEWS ===================== */
.review-showcase {
  display: grid; grid-template-columns: 1fr; gap: 2.25rem;
  margin-top: 3rem; align-items: stretch;
}
@media (min-width: 900px) { .review-showcase { grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; } }

.review-score {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center;
}
@media (min-width: 900px) { .review-score { text-align: left; align-items: flex-start; } }
.review-score-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(3.5rem, 8vw, 5rem);
  color: var(--text);
  line-height: 1;
}
.review-score-stars { display: inline-flex; gap: 4px; color: var(--gold); margin: 1rem 0; }
.review-score-stars svg { width: 20px; height: 20px; fill: currentColor; }
.review-score-label { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 1.75rem; }

.review-pillars { display: grid; gap: 1.5rem; align-content: start; }
.pillar { padding-left: 1.3rem; border-left: 2px solid var(--cobalt-soft); }
.pillar h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--text); margin: 0 0 0.4rem; }
.pillar p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 3rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }

.contact-info { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.contact-card:hover { border-color: var(--border-strong); background: var(--panel-2); transform: translateX(4px); }
.contact-card-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--cobalt-soft);
  color: var(--cobalt-light);
  display: flex; align-items: center; justify-content: center;
}
.contact-card-icon svg { width: 21px; height: 21px; }
.contact-card-whatsapp .contact-card-icon { background: rgba(37,211,102,0.14); color: var(--whatsapp); }
.contact-card-body { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.contact-card-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-dim);
}
.contact-card-value { font-size: 0.9375rem; font-weight: 500; color: var(--text); }
.contact-cta { margin-top: 0.75rem; }

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
  background: var(--panel);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; filter: grayscale(0.15) contrast(1.05); }

/* ===================== FOOTER ===================== */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: var(--section-pad);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  background: var(--panel);
}
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (min-width: 800px) { .footer-inner { grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr; gap: 2rem; } }

.footer-brand p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin: 1rem 0 1.5rem; max-width: 320px; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s;
}
.footer-socials a:hover { color: var(--text); border-color: var(--border-strong); }
.footer-socials a svg { width: 18px; height: 18px; }

.footer-heading {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.1rem;
}
.footer-links { display: flex; flex-direction: column; }
.footer-links a, .footer-contact a {
  font-size: 0.9rem; color: var(--text-muted); text-decoration: none;
  padding: 0.35rem 0;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--text); }

.footer-bottom { border-top: 1px solid var(--border); padding: 1.5rem 0; }
.footer-bottom p { font-size: 0.8125rem; color: var(--text-dim); margin: 0; text-align: center; }

/* ===================== FLOATING WHATSAPP ===================== */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #07130d;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(37,211,102,0.55);
  animation: pulse-ring 2.8s ease-out infinite;
  transition: transform 0.2s var(--ease);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }
.whatsapp-float:hover { transform: scale(1.08); }
body.menu-open .whatsapp-float { display: none; }
@keyframes pulse-ring {
  0% { box-shadow: 0 10px 30px -6px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 10px 30px -6px rgba(37,211,102,0.55), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 30px -6px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0); }
}

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ===================== RESPONSIVE TWEAKS ===================== */
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .stat-strip { gap: 1.75rem 2.5rem; }
}
