/* ============================================================
   Lux Auto Valeting — Design Tokens
   ============================================================ */
:root {
  --black: #000000;
  --bg: #07090c;
  --surface: #0e1116;
  --surface-2: #14181f;
  --surface-3: #1c212a;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --cyan: #00e5ff;
  --cyan-dim: #00a8bf;
  --cyan-soft: rgba(0, 229, 255, 0.12);
  --cyan-glow: rgba(0, 229, 255, 0.35);

  --amber: #ffb020;
  --amber-soft: rgba(255, 176, 32, 0.12);
  --amber-glow: rgba(255, 176, 32, 0.35);

  --white: #ffffff;
  --text: #f4f6f8;
  --muted: #a7afba;
  --muted-2: #767f8c;
  --success: #4aa485;

  --font-head: "Montserrat", sans-serif;
  --font-body: "Lato", sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@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; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { position: relative; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Focus states — kept visible everywhere per accessibility requirements */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--cyan); color: #001014; }

/* ============================================================
   Utility text styles
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--cyan);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-8);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 2.75rem);
  margin-top: var(--space-3);
}
.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: var(--space-4);
}

.text-cyan { color: var(--cyan); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
  min-height: 48px;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, #00f0ff, #00b8d4);
  color: #001217;
  box-shadow: 0 8px 30px -8px var(--cyan-glow);
}
.btn-primary:hover { box-shadow: 0 14px 40px -10px var(--cyan-glow); }

.btn-outline {
  background: rgba(255,255,255,0.02);
  color: var(--white);
  border-color: var(--border-strong);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 0.85rem; min-height: 40px; }

/* ============================================================
   Top utility bar
   ============================================================ */
.topbar {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: 9px;
  padding-bottom: 9px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: var(--space-5); }
.topbar a { display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.topbar a:hover { color: var(--cyan); }
.topbar svg { width: 14px; height: 14px; color: var(--cyan); flex: none; }
.topbar-socials { display: flex; gap: var(--space-3); }
.topbar-socials svg { width: 16px; height: 16px; color: var(--muted); }
.topbar-socials a:hover svg { color: var(--cyan); }

@media (max-width: 720px) {
  .topbar-item-hours { display: none; }
}
@media (max-width: 560px) {
  .topbar .container { justify-content: center; }
  .topbar-right { display: none; }
}

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 7, 10, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(5, 7, 10, 0.92);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { height: 46px; width: auto; }
.brand-word {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--white);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--text);
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.current { color: var(--cyan); }
.nav-links a.current::after { transform: scaleX(1); }
.mobile-nav-cta { display: none; }

.header-cta { display: flex; align-items: center; gap: var(--space-4); }
.header-call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
}
.header-call svg { width: 18px; height: 18px; color: var(--cyan); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-open .nav-toggle .icon-menu { display: none; }
.nav-open .nav-toggle .icon-close { display: block; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .header-call span { display: none; }
  .header-cta > .btn-primary { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--bg);
    padding: 110px var(--gutter) var(--space-8);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 90;
    font-size: 1.4rem;
    overflow-y: auto;
  }
  .nav-open .nav-links.mobile-nav { transform: translateX(0); }
  .nav-links.mobile-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.mobile-nav a::after { display: none; }
  .mobile-nav-cta { margin-top: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); }
}

@media (max-width: 460px) {
  .brand-word { font-size: 0.8rem; letter-spacing: 0.02em; }
  .brand img { height: 38px; }
}
@media (max-width: 380px) {
  .brand-word { font-size: 0.68rem; }
  .brand img { height: 34px; }
  .brand { gap: 8px; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(64px, 12vh, 140px);
  padding-bottom: clamp(64px, 10vh, 120px);
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,7,10,0.55) 0%, rgba(5,7,10,0.78) 55%, var(--bg) 100%),
    linear-gradient(100deg, rgba(5,7,10,0.92) 0%, rgba(5,7,10,0.55) 42%, rgba(5,7,10,0.35) 100%);
}
.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
  top: -280px;
  right: -220px;
  z-index: -1;
  opacity: 0.6;
  pointer-events: none;
}

.hero-inner { max-width: 720px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(14, 17, 22, 0.7);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
  padding: 9px 18px 9px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: var(--space-6);
}
.hero-badge .stars { color: #ffb020; letter-spacing: 1px; font-size: 0.8rem; }
.hero-badge .google-g {
  width: 22px; height: 22px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.hero-badge .google-g svg { width: 13px; height: 13px; }

.hero h1 {
  font-size: clamp(2.4rem, 1.4rem + 4.4vw, 4.1rem);
  color: var(--white);
}
.hero h1 em {
  font-style: normal;
  color: var(--cyan);
  text-shadow: 0 0 34px var(--cyan-glow);
}

.hero-lead {
  margin-top: var(--space-5);
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 560px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-6);
  margin-top: var(--space-6);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}
.hero-facts li { display: flex; align-items: center; gap: 8px; }
.hero-facts svg { width: 17px; height: 17px; color: var(--cyan); flex: none; }

.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-7); }

.hero-stats {
  margin-top: var(--space-9);
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: var(--space-7);
}
.hero-stats .stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 1.1rem + 1.4vw, 2.1rem);
  font-weight: 800;
  color: var(--white);
}
.hero-stats .stat-num .text-cyan { display: inline; }
.hero-stats .stat-label { font-size: 0.8rem; color: var(--muted-2); margin-top: 4px; }

@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, auto); row-gap: var(--space-5); }
}
@media (max-width: 400px) {
  .hero-cta .btn { width: 100%; }
}

/* ============================================================
   Mobile valeting & detailing intro (van photo + trust badges)
   ============================================================ */
.mobile-intro {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-9) 0;
}
.mobile-intro-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-9);
  align-items: center;
}
.mobile-intro-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 3 / 4;
}
.mobile-intro-media img { width: 100%; height: 100%; object-fit: cover; }
.mobile-intro-body h2 {
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 2.6rem);
  margin-top: 12px;
  margin-bottom: var(--space-4);
  color: var(--white);
}
.mobile-intro-body > p { color: var(--muted); font-size: 1.02rem; margin-bottom: var(--space-6); max-width: 560px; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-7);
}
.trust-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}
.trust-icon {
  flex: none;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--cyan-soft);
  border: 1px solid rgba(0,229,255,0.25);
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 24px; height: 24px; color: var(--cyan); }
.trust-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.trust-card p { font-size: 0.88rem; color: var(--muted); margin: 0; }

@media (max-width: 980px) {
  .mobile-intro-layout { grid-template-columns: 1fr; }
  .mobile-intro-media { max-width: 420px; margin: 0 auto; }
  .mobile-intro-body { text-align: center; }
  .mobile-intro-body > p { margin-left: auto; margin-right: auto; }
  .trust-card { text-align: left; }
}
@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Services
   ============================================================ */
.services { padding: var(--space-8) 0; }
.services .section-head { margin-bottom: var(--space-6); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.services-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  gap: var(--space-5);
  margin: 0 auto;
}

.service-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,229,255,0.35);
  box-shadow: 0 24px 60px -24px rgba(0,229,255,0.25);
}
.service-card.featured {
  border-color: rgba(0,229,255,0.45);
  background: linear-gradient(180deg, #10222a 0%, var(--surface-2) 60%);
}
.service-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-media img { transform: scale(1.06); }
.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,8,11,0.9) 0%, rgba(6,8,11,0.05) 55%, transparent 100%);
}
.service-badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 1;
  background: var(--cyan);
  color: #001217;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.service-body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--cyan-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
}
.service-icon svg { width: 26px; height: 26px; color: var(--cyan); }
.service-price {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 2px;
}
.service-price strong { font-size: 1.4rem; color: var(--white); display: inline-block; margin-left: 6px; }
.service-body h3 { font-size: 1.1rem; margin-bottom: var(--space-2); }
.service-body > p { color: var(--muted); font-size: 0.86rem; margin: 0 0 var(--space-4); }
.service-list { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-4); flex: 1; }
.service-list li { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; }
.service-list svg { width: 15px; height: 15px; color: var(--cyan); flex: none; }
.service-list li a { color: var(--text); transition: color 0.2s; }
.service-list li a:hover { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 980px) {
  .services-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ============================================================
   Why choose us
   ============================================================ */
.why { padding-bottom: var(--space-10); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover { border-color: rgba(0,229,255,0.3); transform: translateY(-4px); }
.why-card .num {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: var(--space-4);
}
.why-card h3 { font-size: 1.05rem; margin-bottom: var(--space-2); }
.why-card p { color: var(--muted); font-size: 0.9rem; margin: 0; }

@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Gallery
   ============================================================ */
.gallery { padding: var(--space-10) 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}
.filter-btn {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--muted);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.25s;
}
.filter-btn:hover { color: var(--white); border-color: var(--cyan); }
.filter-btn.active { background: var(--cyan); color: #001217; border-color: var(--cyan); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--surface-3);
  border: 1px solid var(--border);
  cursor: pointer;
}
.gallery-item:nth-child(3n+1) { aspect-ratio: 4/5; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: var(--space-4) var(--space-3) var(--space-3);
  background: linear-gradient(0deg, rgba(0,0,0,0.88) 0%, transparent 100%);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .caption { opacity: 1; transform: translateY(0); }
.gallery-item .expand-icon {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .expand-icon { opacity: 1; }
.gallery-item .expand-icon svg { width: 15px; height: 15px; color: #fff; }

.gallery-item.is-hidden { display: none; }

.gallery-more { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-7); }

@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(3,4,6,0.94);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-6);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-inner { max-width: 900px; max-height: 86vh; position: relative; }
.lightbox-inner img { max-height: 86vh; width: auto; margin: 0 auto; border-radius: var(--radius-md); }
.lightbox-caption { text-align: center; margin-top: var(--space-4); color: var(--muted); font-weight: 600; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-strong);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { border-color: var(--cyan); background: rgba(0,229,255,0.12); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }
.lightbox-close { top: -56px; right: 0; }
.lightbox-prev { left: -56px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: -56px; top: 50%; transform: translateY(-50%); }
@media (max-width: 900px) {
  .lightbox-close { top: -50px; right: 0; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { padding: var(--space-10) 0; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
}
.testi-stars { color: #ffb020; letter-spacing: 2px; font-size: 0.95rem; margin-bottom: var(--space-4); }
.testi-card p.quote { font-size: 0.98rem; color: var(--text); flex: 1; margin: 0 0 var(--space-5); }
.testi-meta { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--cyan-soft);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 0.95rem;
  flex: none;
}
.testi-name { font-weight: 700; font-size: 0.92rem; }
.testi-service { font-size: 0.8rem; color: var(--muted-2); }

.testi-footer { text-align: center; margin-top: var(--space-7); }
.testi-footer a { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-family: var(--font-head); color: var(--cyan); font-size: 0.92rem; }
.testi-footer svg { width: 16px; height: 16px; }

@media (max-width: 980px) { .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ============================================================
   Service areas
   ============================================================ */
.areas {
  padding: var(--space-10) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.areas-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-9);
  align-items: center;
}
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--space-6); }
.area-chips li { display: flex; }
.area-chips li.main,
.area-chips li > a {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.area-chips li > a:hover { border-color: rgba(0,229,255,0.4); color: var(--cyan); }
.area-chips li.main { background: var(--cyan-soft); border-color: rgba(0,229,255,0.4); color: var(--cyan); }
.area-chips svg { width: 13px; height: 13px; color: var(--cyan); flex: none; }

.areas-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1/1;
}
.areas-visual img { width: 100%; height: 100%; object-fit: cover; }
.areas-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(5,7,10,0.85) 100%); }
.areas-visual-badge {
  position: absolute; left: var(--space-5); bottom: var(--space-5); right: var(--space-5);
  background: rgba(10,12,16,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex; align-items: center; gap: var(--space-4);
}
.areas-visual-badge svg { width: 30px; height: 30px; color: var(--cyan); flex: none; }
.areas-visual-badge strong { display: block; font-family: var(--font-head); font-size: 1rem; }
.areas-visual-badge span { font-size: 0.82rem; color: var(--muted); }

@media (max-width: 900px) {
  .areas-layout { grid-template-columns: 1fr; }
  .areas-visual { max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: var(--space-10) 0; }
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: var(--space-9); }
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
}
.faq-question .plus {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.faq-question .plus svg { width: 14px; height: 14px; color: var(--cyan); transition: transform 0.3s; }
.faq-item.open .faq-question .plus { background: var(--cyan); border-color: var(--cyan); }
.faq-item.open .faq-question .plus svg { color: #001217; transform: rotate(135deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq-answer-inner { overflow: hidden; }
.faq-answer p { margin: 0 var(--space-6) var(--space-5); color: var(--muted); font-size: 0.94rem; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }

@media (max-width: 900px) { .faq-layout { grid-template-columns: 1fr; } }

/* ============================================================
   Contact / Booking
   ============================================================ */
.contact {
  padding: var(--space-10) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: start;
}

.contact-form {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-field { margin-bottom: var(--space-5); }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.form-field .req { color: var(--cyan); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  min-height: 48px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-soft);
  outline: none;
}
.form-field small { display: block; margin-top: 6px; color: var(--muted-2); font-size: 0.78rem; }
.form-note { font-size: 0.82rem; color: var(--muted-2); margin-top: var(--space-4); text-align: center; }
.form-status {
  display: none;
  margin-top: var(--space-4);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(74,164,133,0.15); border: 1px solid rgba(74,164,133,0.4); color: #8fe0c4; }
.form-status.error { background: rgba(255,90,90,0.12); border: 1px solid rgba(255,90,90,0.35); color: #ffb0b0; }

.contact-side { display: flex; flex-direction: column; gap: var(--space-5); }
.contact-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  transition: border-color 0.25s, transform 0.25s;
}
.contact-card:hover { border-color: rgba(0,229,255,0.35); transform: translateY(-3px); }
.contact-card .icon {
  flex: none;
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--cyan-soft);
  display: flex; align-items: center; justify-content: center;
}
.contact-card .icon svg { width: 23px; height: 23px; color: var(--cyan); }
.contact-card strong { display: block; font-family: var(--font-head); font-size: 1rem; }
.contact-card span { font-size: 0.85rem; color: var(--muted); }

.promise-list { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-2); }
.promise-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--muted); }
.promise-list svg { width: 18px; height: 18px; color: var(--success); flex: none; margin-top: 1px; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta {
  padding: var(--space-9) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta h2 { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 2.9rem); max-width: 720px; margin: 0 auto; }
.final-cta p { color: var(--muted); margin-top: var(--space-4); font-size: 1.05rem; }
.final-cta-actions { display: flex; justify-content: center; gap: var(--space-4); margin-top: var(--space-7); flex-wrap: wrap; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: var(--space-9) 0 var(--space-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr 0.9fr;
  gap: var(--space-6);
}
.footer-brand .brand { margin-bottom: var(--space-4); }
.footer-brand p { color: var(--muted); font-size: 0.9rem; max-width: 300px; }
.footer-socials { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s, color 0.25s;
}
.footer-socials svg { width: 17px; height: 17px; }
.footer-socials a:hover { border-color: var(--cyan); color: var(--cyan); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: var(--space-5);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a, .footer-col span { font-size: 0.92rem; color: var(--muted); }
.footer-col a:hover { color: var(--cyan); }

.footer-bottom a { color: var(--muted-2); text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--cyan); }
.footer-bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: 0.82rem;
  color: var(--muted-2);
}

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   Floating WhatsApp button
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 150;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(37,211,102,0.55);
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }

/* ============================================================
   Scroll reveal
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   Touch device: enable tap-highlight-free interactions
   ============================================================ */
a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

/* ============================================================
   Skip link
   ============================================================ */
.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 300;
  background: var(--cyan);
  color: #001217;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb {
  padding: 20px 0;
  font-size: 0.84rem;
  color: var(--muted-2);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb .sep { margin: 0 8px; color: var(--muted-2); }
.breadcrumb .current { color: var(--text); font-weight: 600; }

/* ============================================================
   Package hero
   ============================================================ */
.pkg-hero {
  position: relative;
  padding: var(--space-8) 0 var(--space-7);
  overflow: hidden;
  isolation: isolate;
}
.pkg-hero-media { position: absolute; inset: 0; z-index: -2; }
.pkg-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.pkg-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,7,10,0.6) 0%, rgba(5,7,10,0.85) 60%, var(--bg) 100%),
    linear-gradient(100deg, rgba(5,7,10,0.94) 0%, rgba(5,7,10,0.55) 45%, rgba(5,7,10,0.35) 100%);
}
.pkg-hero-inner { max-width: 700px; }
.pkg-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan-soft);
  border: 1px solid rgba(0,229,255,0.3);
  color: var(--cyan);
  padding: 7px 16px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}
.pkg-hero h1 {
  font-size: clamp(2.1rem, 1.3rem + 3.4vw, 3.4rem);
  color: var(--white);
}
.pkg-hero-lead { margin-top: var(--space-4); font-size: 1.08rem; color: var(--muted); max-width: 560px; }
.pkg-quickfacts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-6);
}
.pkg-quickfact { display: flex; flex-direction: column; }
.pkg-quickfact .label { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-2); font-weight: 700; margin-bottom: 4px; }
.pkg-quickfact .value { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--white); }
.pkg-quickfact .value .text-cyan { display: inline; }
.pkg-hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-7); }

/* ============================================================
   Package value props (3-up)
   ============================================================ */
.pkg-props { padding: var(--space-7) 0; }
.pkg-props-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.pkg-prop {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}
.pkg-prop .num { font-family: var(--font-head); font-size: 0.8rem; font-weight: 800; color: var(--cyan); margin-bottom: var(--space-3); }
.pkg-prop h3 { font-size: 1.05rem; margin-bottom: var(--space-2); }
.pkg-prop p { color: var(--muted); font-size: 0.9rem; margin: 0; }

@media (max-width: 900px) { .pkg-props-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Package: what's included
   ============================================================ */
.pkg-included { padding: var(--space-8) 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pkg-included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
}
.pkg-included-grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.pkg-included-grid .check {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--cyan-soft);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.pkg-included-grid .check svg { width: 13px; height: 13px; color: var(--cyan); }

@media (max-width: 720px) { .pkg-included-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Package: process steps
   ============================================================ */
.pkg-process { padding: var(--space-8) 0; }
.pkg-steps { display: flex; flex-direction: column; }
.pkg-step {
  display: flex;
  gap: var(--space-5);
  padding-bottom: var(--space-6);
  position: relative;
}
.pkg-step::before {
  content: "";
  position: absolute;
  left: 21px; top: 44px; bottom: 0;
  width: 1px;
  background: var(--border-strong);
}
.pkg-step:last-child::before { display: none; }
.pkg-step:last-child { padding-bottom: 0; }
.pkg-step-num {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--cyan);
  font-family: var(--font-head);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.pkg-step-body h3 { font-size: 1.02rem; margin-bottom: 4px; }
.pkg-step-body p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ============================================================
   Package: pricing table
   ============================================================ */
.pkg-pricing { padding: var(--space-8) 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pkg-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.pkg-price-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.pkg-price-card:hover { border-color: rgba(0,229,255,0.35); transform: translateY(-4px); }
.pkg-price-card .size-label { font-family: var(--font-head); font-weight: 800; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--space-2); }
.pkg-price-card .size-example { font-size: 0.8rem; color: var(--muted-2); margin-bottom: var(--space-4); min-height: 2.4em; }
.pkg-price-card .amount { font-family: var(--font-head); font-size: 2.1rem; font-weight: 900; color: var(--white); }
.pkg-price-card .amount .text-cyan { display: inline; }

@media (max-width: 720px) { .pkg-price-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; } }

.pkg-price-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
  flex-wrap: wrap;
  text-align: center;
}
.pkg-price-note p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ============================================================
   Package: eligibility / business-rule callout
   ============================================================ */
.pkg-callout {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background: var(--cyan-soft);
  border: 1px solid rgba(0,229,255,0.3);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  margin-top: var(--space-6);
}
.pkg-callout svg { width: 22px; height: 22px; color: var(--cyan); flex: none; margin-top: 2px; }
.pkg-callout p { margin: 0; font-size: 0.92rem; color: var(--text); }
.pkg-callout strong { color: var(--cyan); }

/* ============================================================
   Package: add-ons & extras
   ============================================================ */
.pkg-addons { padding: var(--space-8) 0; }
.pkg-addons-list { display: flex; flex-direction: column; }
.pkg-addon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.pkg-addon-row .name { font-weight: 600; font-size: 0.96rem; }
.pkg-addon-row .price { font-family: var(--font-head); font-weight: 800; color: var(--cyan); white-space: nowrap; }

/* ============================================================
   Package: editorial content
   ============================================================ */
.pkg-editorial { padding: var(--space-8) 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pkg-editorial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-7) var(--space-8); }
.pkg-editorial-block h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--cyan);
  margin-bottom: var(--space-3);
}
.pkg-editorial-block p { color: var(--muted); font-size: 0.96rem; margin: 0 0 var(--space-3); }
.pkg-editorial-block p:last-child { margin-bottom: 0; }
.pkg-editorial-block a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 900px) { .pkg-editorial-grid { grid-template-columns: 1fr; gap: var(--space-6); } }

/* ============================================================
   Package: compare other packages
   ============================================================ */
.pkg-compare { padding: var(--space-8) 0; }
.pkg-compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }

@media (max-width: 980px) { .pkg-compare-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* ============================================================
   Explainer (What machine polishing, ceramic coating etc. mean)
   ============================================================ */
.explain { padding: var(--space-9) 0; }
.explain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.explain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.explain-card:hover { border-color: rgba(0,229,255,0.3); transform: translateY(-4px); }
.explain-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--cyan-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4);
}
.explain-icon svg { width: 22px; height: 22px; color: var(--cyan); }
.explain-card h3 { font-size: 1.05rem; margin-bottom: var(--space-2); }
.explain-card p { color: var(--muted); font-size: 0.9rem; margin: 0 0 var(--space-4); flex: 1; }
.explain-card a { color: var(--cyan); font-weight: 700; font-size: 0.84rem; display: inline-flex; align-items: center; gap: 6px; }
.explain-card a:hover { text-decoration: underline; text-underline-offset: 3px; }
.explain-card a svg { width: 13px; height: 13px; }

@media (max-width: 980px) { .explain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .explain-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Packages hub
   ============================================================ */
.coating-choice { margin-top: var(--space-7); }
.coating-choice h3 { text-align: center; font-size: 1.1rem; margin-bottom: var(--space-5); }
.coating-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); max-width: 640px; margin: 0 auto; }
.coating-option {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  text-align: center;
}
.coating-option.selected { border-color: rgba(0,229,255,0.4); background: var(--cyan-soft); }
.coating-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: var(--space-3);
  background: var(--cyan);
  color: #001217;
}
.coating-badge.upgrade { background: var(--surface-3); color: var(--cyan); border: 1px solid rgba(0,229,255,0.4); }
.coating-name { font-family: var(--font-head); font-weight: 800; font-size: 1.02rem; margin-bottom: var(--space-2); }
.coating-desc { color: var(--muted); font-size: 0.85rem; }

@media (max-width: 560px) { .coating-choice-grid { grid-template-columns: 1fr; } }

.packages-hero { padding: var(--space-8) 0 var(--space-7); text-align: center; }
.packages-hero .eyebrow { justify-content: center; }
.packages-hero h1 { font-size: clamp(2.2rem, 1.3rem + 3.6vw, 3.6rem); margin-top: var(--space-3); }
.packages-hero p { color: var(--muted); font-size: 1.08rem; max-width: 620px; margin: var(--space-4) auto 0; }

.packages-grid { padding-bottom: var(--space-9); }
#valeting, #detailing { scroll-margin-top: 90px; }
.packages-grid-alt { padding-top: var(--space-8); background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.packages-grid-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.pkg-card-tier { position: absolute; top: 16px; left: 16px; z-index: 1; background: rgba(6,8,11,0.75); backdrop-filter: blur(6px); color: var(--white); font-family: var(--font-head); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--border-strong); }
.pkg-card-tier.limited, .pkg-tier-badge.limited { background: var(--amber); color: #2a1400; border-color: var(--amber); }

@media (max-width: 980px) { .packages-grid-inner { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ============================================================
   Area pages: services mini-grid
   ============================================================ */
.area-services { padding: var(--space-8) 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.area-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.area-service-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.area-service-card:hover { border-color: rgba(0,229,255,0.35); transform: translateY(-3px); }
.area-service-card h3 { font-size: 1rem; margin-bottom: var(--space-2); }
.area-service-card p { color: var(--muted); font-size: 0.86rem; margin: 0 0 var(--space-4); flex: 1; }
.area-service-card .row { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }
.area-service-card .price { font-family: var(--font-head); font-weight: 800; color: var(--cyan); font-size: 1.05rem; }
.area-service-card .price span { font-size: 0.7rem; text-transform: uppercase; color: var(--muted-2); font-weight: 700; display: block; }
.area-service-card .link-arrow { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; transition: border-color 0.25s, background 0.25s; flex: none; }
.area-service-card .link-arrow svg { width: 15px; height: 15px; color: var(--cyan); }
.area-service-card:hover .link-arrow { border-color: var(--cyan); background: var(--cyan-soft); }

@media (max-width: 980px) { .area-services-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ============================================================
   Area pages: pricing table
   ============================================================ */
.area-pricing { padding: var(--space-8) 0; }
.price-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-md); }
.price-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.price-table th, .price-table td { padding: 16px 20px; text-align: left; font-size: 0.92rem; }
.price-table thead th {
  background: var(--surface-2);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-bottom: 1px solid var(--border-strong);
}
.price-table thead th:not(:first-child) { text-align: center; }
.price-table tbody td:not(:first-child) { text-align: center; font-family: var(--font-head); font-weight: 800; color: var(--white); }
.price-table tbody tr { border-bottom: 1px solid var(--border); }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.price-table tbody td:first-child a { color: var(--text); font-weight: 600; transition: color 0.2s; }
.price-table tbody td:first-child a:hover { color: var(--cyan); }
.price-table-note { margin-top: var(--space-5); color: var(--muted); font-size: 0.88rem; text-align: center; }

/* ============================================================
   Area pages: why-choose checklist (reuses pkg-included pattern)
   ============================================================ */
.area-why { padding: var(--space-8) 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ============================================================
   Area pages: coverage / nearby areas
   ============================================================ */
.area-coverage { padding: var(--space-8) 0; }
.area-coverage p.lead { color: var(--muted); font-size: 1rem; max-width: 820px; margin: 0 0 var(--space-6); }

/* ============================================================
   Areas hub grid (list of area links)
   ============================================================ */
.area-links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.area-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-weight: 700;
  font-size: 0.94rem;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
.area-link-card svg { width: 15px; height: 15px; color: var(--cyan); flex: none; transition: transform 0.25s; }
.area-link-card:hover { border-color: rgba(0,229,255,0.4); color: var(--cyan); transform: translateY(-2px); }
.area-link-card:hover svg { transform: translateX(3px); }

@media (max-width: 900px) { .area-links-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .area-links-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Legal / Terms & Conditions page
   ============================================================ */
.legal-hero { padding: var(--space-8) 0 var(--space-6); }
.legal-hero h1 { font-size: clamp(2rem, 1.2rem + 3vw, 3rem); margin-top: 12px; }
.legal-hero p.updated { color: var(--muted-2); font-size: 0.88rem; margin-top: var(--space-3); }
.legal-body { padding-bottom: var(--space-9); }
.legal-content { max-width: 760px; }
.legal-content section { margin-bottom: var(--space-8); }
.legal-content h2 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border);
}
.legal-content p { color: var(--muted); font-size: 0.98rem; margin: 0 0 var(--space-4); }
.legal-content ul { display: flex; flex-direction: column; gap: 10px; margin: 0 0 var(--space-4); }
.legal-content ul li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 0.96rem;
  padding-left: 0;
}
.legal-content ul li::before {
  content: "";
  flex: none;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  margin-top: 9px;
}
.legal-content strong { color: var(--text); }
.legal-content a { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }
.legal-toc { display: flex; flex-direction: column; gap: 8px; padding: var(--space-5); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: var(--space-8); max-width: 760px; }
.legal-toc a { font-size: 0.9rem; font-weight: 600; color: var(--muted); transition: color 0.2s; }
.legal-toc a:hover { color: var(--cyan); }
