/* Self-hosted fonts */
@font-face{font-family:"Bebas Neue";font-style:normal;font-weight:400;font-display:swap;src:url(../fonts/bebas-neue-latin-400-normal.woff2) format("woff2"),url(../fonts/bebas-neue-latin-400-normal.woff) format("woff")}
@font-face{font-family:"Barlow";font-style:normal;font-weight:300;font-display:swap;src:url(../fonts/barlow-latin-300-normal.woff2) format("woff2"),url(../fonts/barlow-latin-300-normal.woff) format("woff")}
@font-face{font-family:"Barlow";font-style:normal;font-weight:400;font-display:swap;src:url(../fonts/barlow-latin-400-normal.woff2) format("woff2"),url(../fonts/barlow-latin-400-normal.woff) format("woff")}
@font-face{font-family:"Barlow";font-style:normal;font-weight:500;font-display:swap;src:url(../fonts/barlow-latin-500-normal.woff2) format("woff2"),url(../fonts/barlow-latin-500-normal.woff) format("woff")}
@font-face{font-family:"Barlow";font-style:normal;font-weight:600;font-display:swap;src:url(../fonts/barlow-latin-600-normal.woff2) format("woff2"),url(../fonts/barlow-latin-600-normal.woff) format("woff")}
@font-face{font-family:"Barlow";font-style:normal;font-weight:700;font-display:swap;src:url(../fonts/barlow-latin-700-normal.woff2) format("woff2"),url(../fonts/barlow-latin-700-normal.woff) format("woff")}

/* ===================================================
   GO GARAGE DETAILING - MAIN STYLES
   Dark Luxury Automotive Aesthetic
   =================================================== */

:root {
  --black: #050507;
  --dark: #0c0c10;
  --dark2: #131318;
  --card: #16161c;
  --border: rgba(255,255,255,0.07);
  --border-accent: rgba(212, 167, 60, 0.3);
  --white: #f5f5f0;
  --white-dim: rgba(245,245,240,0.7);
  --white-dimmer: rgba(245,245,240,0.6);
  --gold: #d4a73c;
  --gold-light: #e8c76a;
  --gold-dim: rgba(212,167,60,0.15);
  --red: #c0392b;
  --green-wa: #25d366;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 32px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 40px rgba(212,167,60,0.15);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --header-h: 72px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
address { font-style: normal; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-body); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
em { font-style: normal; color: var(--gold); }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-dark { background: var(--dark2); }

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.section-title {
  margin-bottom: 1.25rem;
  color: var(--white);
}
.section-desc {
  max-width: 600px;
  color: var(--white-dim);
  font-size: 1.05rem;
  margin-bottom: 3.5rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,167,60,0.35);
}
.btn-whatsapp {
  color: #050507 !important;
  background: var(--green-wa);
  color: #fff;
  border-color: var(--green-wa);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(5,5,7,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
  overflow: clip;
}
.site-header.scrolled {
  background: rgba(5,5,7,0.98);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem,4vw,3rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  min-width: 0;
  overflow: clip;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  flex-shrink: 0;
  min-width: 0;
}
.logo-go {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  white-space: nowrap;
}
.logo-garage {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  color: var(--white);
  white-space: nowrap;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--white-dimmer);
  text-transform: uppercase;
  margin-left: 0.5rem;
  align-self: center;
  white-space: nowrap;
}
.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  gap: 0.25rem;
}
.main-nav a {
  padding: 0.5rem 0.7rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white-dim);
  border-radius: 6px;
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.main-nav a.active { color: var(--gold); }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 6px;
  flex-shrink: 0;
  white-space: nowrap;
  transition: all var(--transition);
}
.header-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 4rem;
  padding-left: clamp(1.25rem,4vw,3rem);
  padding-right: clamp(1.25rem,4vw,3rem);
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,167,60,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,167,60,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-glow {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(212,167,60,0.08) 0%, transparent 70%);
  filter: blur(40px);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--gold-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  margin-bottom: 1.75rem;
  width: fit-content;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.4); }
}
.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.75rem;
  line-height: 1;
  word-break: break-word;
  overflow-wrap: break-word;
}
.hero-title .line-accent {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  letter-spacing: 0.2em;
  color: var(--gold);
}
.hero-title .line-main {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 8rem);
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 0.9;
}
.hero-title .line-sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 2rem);
  letter-spacing: 0.12em;
  color: var(--white-dim);
}
.hero-desc {
  max-width: 540px;
  color: var(--white-dim);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-desc strong { color: var(--white); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat { text-align: left; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--white-dimmer);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.25rem,4vw,3rem);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--white-dimmer);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.65;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  color: inherit;
}
.service-card:hover {
  border-color: var(--border-accent);
  background: #1a1a22;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.service-featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  background: linear-gradient(135deg, rgba(212,167,60,0.1) 0%, var(--card) 60%);
  border-color: var(--border-accent);
}
.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-dim);
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition);
}
.service-card:hover .service-num { color: rgba(212,167,60,0.4); }
.service-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-body p { font-size: 0.88rem; color: var(--white-dim); line-height: 1.6; margin-bottom: 0.75rem; }
.service-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.services-cta { text-align: center; }

/* ── PROCESS ── */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 180px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all var(--transition);
}
.process-step:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-content p { font-size: 0.88rem; color: var(--white-dim); line-height: 1.65; }
.process-arrow {
  font-size: 1.5rem;
  color: var(--gold-dim);
  margin-top: 2.5rem;
  flex-shrink: 0;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:has(.faq-q[aria-expanded="true"]) { border-color: var(--border-accent); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-q svg { flex-shrink: 0; transition: transform var(--transition); }
.faq-q[aria-expanded="true"] svg { transform: rotate(180deg); color: var(--gold); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-a.open {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}
.faq-a p { font-size: 0.95rem; color: var(--white-dim); line-height: 1.7; }
.faq-a a { color: var(--gold); text-decoration: underline; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, rgba(212,167,60,0.12) 0%, rgba(212,167,60,0.04) 100%);
  border-top: 1px solid var(--border-accent);
  border-bottom: 1px solid var(--border-accent);
  padding: 3.5rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.5rem; }
.cta-text p { color: var(--white-dim); font-size: 1rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── CONTACT PREVIEW ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contact-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: var(--white-dim);
}
.contact-list svg { flex-shrink: 0; margin-top: 0.15rem; color: var(--gold); }
.contact-list strong { display: block; color: var(--white); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.contact-list a { color: var(--gold); }
.contact-list a:hover { color: var(--gold-light); }
.contact-map iframe { width: 100%; border-radius: var(--radius); border: 1px solid var(--border); }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--white-dimmer);
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
}
.wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 6px;
  color: var(--green-wa);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
}
.wa-badge:hover { background: rgba(37,211,102,0.2); transform: translateY(-2px); }
.footer-nav h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dimmer);
  margin-bottom: 1.25rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
  font-size: 0.9rem;
  color: var(--white-dim);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }
.footer-contact h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dimmer);
  margin-bottom: 1.25rem;
}
.footer-contact address p {
  font-size: 0.9rem;
  color: var(--white-dim);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.footer-contact a { color: var(--gold); }
.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--white-dimmer);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all var(--transition);
  animation: waFloat 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
}
@keyframes waFloat {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: calc(var(--header-h) + 4rem) clamp(1.25rem,4vw,3rem) 4rem;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.page-hero .section-label { justify-content: center; }
.page-hero .page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.page-hero .page-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--white-dim);
  font-size: 1.05rem;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem clamp(1.25rem,4vw,3rem);
}
.breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--white-dimmer);
}
.breadcrumb a { color: var(--white-dim); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── PROSE CONTENT ── */
.content-block { max-width: 840px; }
.content-block h2 { margin: 2.5rem 0 1rem; font-size: 1.6rem; }
.content-block h3 { margin: 2rem 0 0.75rem; font-size: 1.2rem; color: var(--gold); }
.content-block p { color: var(--white-dim); line-height: 1.8; margin-bottom: 1.25rem; }
.content-block ul { margin: 0 0 1.25rem 1.5rem; }
.content-block li { color: var(--white-dim); margin-bottom: 0.5rem; list-style: disc; }
.content-block strong { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .service-featured { grid-column: span 1; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  /* Hide desktop nav and CTA */
  .main-nav { display: none; }
  .header-cta { display: none; }

  /* Show hamburger */
  .hamburger { display: flex; }

  /* Mobile menu overlay */
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(5,5,7,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 999;
    overflow-y: auto;
  }
  .main-nav.open ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    width: 100%;
    padding: 1rem 2rem;
  }
  .main-nav.open ul li {
    width: 100%;
    text-align: center;
  }
  .main-nav.open a {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 1rem 2rem;
    width: 100%;
    border-radius: 8px;
    color: var(--white-dim);
    transition: all var(--transition);
  }
  .main-nav.open a:hover,
  .main-nav.open a.active {
    color: var(--gold);
    background: rgba(212,167,60,0.08);
  }

  /* Reduce header gap on mobile */
  .header-inner { gap: 0; }

  /* Process steps stack */
  .process-steps { flex-direction: column; }
  .process-arrow { display: none; }

  /* Footer stack */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* CTA band stack */
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  /* Hero stats smaller gap */
  .hero-stats { gap: 1rem; }
  .stat-divider { display: none; }

  /* Hero scroll hint hide on mobile */
  .hero-scroll-hint { display: none; }

  /* Containers full width */
  .container { padding: 0 1.25rem; }

  /* Features grid 2 col on tablet */
  .features-grid { grid-template-columns: 1fr 1fr; }

  /* Services grid 1 col */
  .services-grid { grid-template-columns: 1fr; }
  .service-featured { flex-direction: column; }
}

@media (max-width: 480px) {
  /* Full single column */
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  /* Hero actions stack */
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Buttons full width in cta band */
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Logo sub hidden on very small screens */
  .logo-sub { display: none; }

  /* Reduce hero padding */
  .hero { padding-top: calc(var(--header-h) + 2.5rem); min-height: auto; padding-bottom: 3rem; }

  /* Reduce section padding */
  .section { padding: 3rem 0; }

  /* Footer contact grid 2 col */
  .footer-grid { grid-template-columns: 1fr; }

  /* Hero badge wrap */
  .hero-badge { font-size: 0.72rem; }
}

/* ── INLINE GRID MOBILE OVERRIDES ── */
@media (max-width: 900px) {
  /* PPF page: content + sidebar */
  .ppf-content-grid,
  [style*="grid-template-columns:minmax(0,1fr) 340px"],
  [style*="grid-template-columns:minmax(0,1fr) minmax(0,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  /* Sidebar: remove sticky on mobile */
  [style*="position:sticky"] {
    position: relative !important;
    top: auto !important;
  }
}

/* ── GLOBAL OVERFLOW GUARDS ── */
section, header, footer, nav, article, aside {
  max-width: 100%;
  overflow-x: hidden;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  opacity: 0;
  animation: fadeInUp 0.65s cubic-bezier(0.4,0,0.2,1) forwards;
}
.animate-in.delay-1 { animation-delay: 0.1s; }
.animate-in.delay-2 { animation-delay: 0.2s; }
.animate-in.delay-3 { animation-delay: 0.3s; }
.animate-in.delay-4 { animation-delay: 0.4s; }

/* Hide any scrollbar on header area */
.site-header::-webkit-scrollbar,.header-inner::-webkit-scrollbar{display:none}
.site-header,.header-inner{-ms-overflow-style:none;scrollbar-width:none}
