/* ============================================
   Essex Headlight Restoration — Main Stylesheet
   ============================================ */

:root {
  /* Color tokens */
  --bg: #0A0D14;
  --bg-2: #131826;
  --bg-3: #1C2237;
  --bg-card: #161B2C;
  --bg-card-hover: #1B2138;

  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --accent: #5EE4F0;
  --accent-bright: #7FF0FB;
  --accent-dim: #3FAFBA;
  --accent-glow: rgba(94, 228, 240, 0.35);
  --accent-glow-soft: rgba(94, 228, 240, 0.12);

  --warning: #FFB547;
  --whatsapp: #25D366;
  --whatsapp-hover: #1FB855;

  --text: #F0F4FA;
  --text-muted: #94A0B7;
  --text-dim: #5B6478;

  /* Type */
  --font-display: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 8px;

  /* Shadows */
  --shadow-glow: 0 0 0 1px var(--accent-glow), 0 20px 60px -20px var(--accent-glow);
  --shadow-card: 0 1px 0 0 rgba(255,255,255,0.04) inset, 0 20px 40px -25px rgba(0,0,0,0.6);
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

::selection { background: var(--accent); color: var(--bg); }

/* ============ Decorative backgrounds ============ */
.beam-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 80% -10%, var(--accent-glow-soft), transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 20%, rgba(94, 228, 240, 0.06), transparent 60%);
}
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ Container ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 20, 0.7);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .logo-img { height: 52px; }
}
/* Legacy text-logo styles (kept for back-compat, no longer used in main header) */
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.logo-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

/* Header right cluster: EHAAT badge + phone CTA */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ehaat-badge {
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.7rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.ehaat-badge:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}
.ehaat-text {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  line-height: 1.15;
  font-weight: 600;
}
.ehaat-badge img {
  height: 32px;
  width: auto;
}
@media (min-width: 820px) {
  .ehaat-badge { display: inline-flex; }
}

/* Footer EHAAT variant */
.ehaat-badge--footer {
  display: inline-flex;
  margin-top: 1.25rem;
  padding: 0.55rem 0.85rem;
}
.ehaat-badge--footer .ehaat-text { font-size: 0.7rem; }
.ehaat-badge--footer img { height: 40px; }

.primary-nav {
  display: none;
  gap: 2rem;
}
@media (min-width: 1000px) {
  .primary-nav { display: flex; }
}
.primary-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.primary-nav a:hover { color: var(--text); }
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.primary-nav a:hover::after { transform: scaleX(1); }

.header-cta-btn { display: none; }
@media (min-width: 600px) {
  .header-cta-btn { display: inline-flex; }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 0 1px var(--accent), 0 10px 30px -10px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 0 0 1px var(--accent-bright), 0 15px 40px -10px var(--accent-glow);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(37, 211, 102, 0.5);
}
.btn-whatsapp:hover { background: var(--whatsapp-hover); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-full { width: 100%; }
.btn-lg { padding: 1.1rem 1.8rem; font-size: 1.05rem; }

/* ============ Hero ============ */
.hero {
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero { padding: 6rem 0 7rem; }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 4.5rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  letter-spacing: 0.01em;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(94, 228, 240, 0.18);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(94, 228, 240, 0.18); }
  50% { box-shadow: 0 0 0 7px rgba(94, 228, 240, 0.05); }
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
  line-height: 1.02;
}
.grad-text {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-bright) 50%, #B8F4FA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 540px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .hero-lead { font-size: 1.18rem; }
}

.hero-ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
@media (min-width: 600px) {
  .hero-trust { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-item strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.trust-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Hero visual */
.hero-visual { position: relative; }
.visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px var(--accent-glow-soft) inset,
    0 40px 80px -40px rgba(0,0,0,0.6),
    0 0 100px -30px var(--accent-glow);
  transform: rotate(-1deg);
  transition: transform 0.5s ease;
}
.visual-frame:hover { transform: rotate(0deg) scale(1.02); }
.visual-frame img {
  width: 100%;
  display: block;
}
.visual-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(10, 13, 20, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.badge-pulse {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}

/* ============ Stats bar ============ */
.stats {
  padding: 3rem 0;
  background: linear-gradient(180deg, transparent, var(--bg-2) 30%, var(--bg-2) 70%, transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}
@media (min-width: 800px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
}
.stat { text-align: left; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.stat-label .src {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.15rem;
}

/* ============ Section heads ============ */
section { padding: 5rem 0; position: relative; }
@media (min-width: 768px) {
  section { padding: 7rem 0; }
}
.section-head {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  background: var(--accent-glow-soft);
  border-radius: 999px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.75rem);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============ Why ============ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 700px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-glow-soft), transparent);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid var(--accent-glow-soft);
}
.why-icon svg { width: 22px; height: 22px; }
.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.015em;
}
.why-card p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============ Process ============ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  counter-reset: step;
}
@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}
.step:hover { border-color: var(--accent-dim); background: var(--bg-card-hover); }

.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
}
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.015em;
}
.step p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}
.step em { color: var(--accent); font-style: normal; font-weight: 600; }

/* ============ Gallery ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.4s ease, border-color 0.3s;
  aspect-ratio: 1 / 1;
}
.gallery-item--wide { aspect-ratio: 2 / 1; grid-column: span 1; }
@media (min-width: 768px) {
  .gallery-item--wide { grid-column: span 2; }
}
.gallery-item:hover { transform: translateY(-3px); border-color: var(--accent-glow); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(10,13,20,0.92), rgba(10,13,20,0.3) 80%, transparent);
  padding: 1.75rem 1rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ============ Pricing ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.price-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.price-card--featured {
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-3) 100%);
  border-color: var(--accent-dim);
  box-shadow: 0 0 80px -20px var(--accent-glow);
}
.price-flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-tier {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.price-headline {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}
.price-currency {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-muted);
}
.price-amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}
.price-card--featured .price-amount { color: var(--accent); }
.price-sub {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  min-height: 2.5em;
}
.price-list {
  margin-bottom: 2rem;
  flex: 1;
}
.price-list li {
  font-size: 0.93rem;
  padding: 0.55rem 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  position: relative;
  padding-left: 1.5rem;
}
.price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235EE4F0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.price-list li:last-child { border-bottom: 1px solid var(--border); }
.price-list li strong { color: var(--text); }

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 2rem;
}

/* ============ What's Included ============ */
.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 700px) { .included-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .included-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
  }
  .included-card--featured { grid-row: span 1; }
}

.included-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
}
.included-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  background: var(--bg-card-hover);
}
.included-card--featured {
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, var(--accent-glow-soft), transparent 70%),
    linear-gradient(165deg, var(--bg-card) 0%, var(--bg-3) 100%);
  border-color: var(--accent-dim);
  box-shadow: 0 0 80px -25px var(--accent-glow);
}
.included-card--featured:hover {
  border-color: var(--accent);
}
.included-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.75rem;
  background: var(--accent);
  color: var(--bg);
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.included-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-glow-soft), transparent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid var(--accent-glow-soft);
  flex-shrink: 0;
}
.included-icon svg { width: 24px; height: 24px; }
.included-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
  letter-spacing: -0.015em;
}
.included-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Quote CTA panel below the grid */
.quote-cta {
  margin-top: 3rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--accent-glow-soft), transparent 70%),
    linear-gradient(180deg, var(--bg-3) 0%, var(--bg-card) 100%);
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  box-shadow: 0 0 80px -30px var(--accent-glow);
}
@media (min-width: 900px) {
  .quote-cta { flex-direction: row; text-align: left; padding: 2.75rem 3rem; }
}
.quote-cta h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.quote-cta > div:first-child { flex: 1; max-width: 600px; }
.quote-cta p {
  color: var(--text-muted);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}
.quote-cta-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  flex-shrink: 0;
}

/* ============ Areas ============ */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 600px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
.area-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.area-card::after {
  content: '→';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.2rem;
  color: var(--text-dim);
  transition: color 0.25s, transform 0.25s;
}
.area-card:hover {
  border-color: var(--accent-dim);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.area-card:hover::after { color: var(--accent); transform: translateX(4px); }
.area-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.015em;
}
.area-postcodes {
  font-size: 0.83rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.areas-more {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.areas-more summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}
.areas-more[open] summary { margin-bottom: 1rem; }
.areas-more p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  line-height: 1.7;
}

/* ============ Reviews ============ */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 800px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.review p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
  color: var(--text);
}
.review footer {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item[open] { border-color: var(--accent-dim); }
.faq-item summary {
  cursor: pointer;
  padding: 1.25rem 3rem 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  user-select: none;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}
.faq-item a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* ============ Final CTA ============ */
.cta-final { padding-bottom: 7rem; }
.cta-card {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--accent-glow-soft), transparent 70%),
    linear-gradient(180deg, var(--bg-3) 0%, var(--bg-card) 100%);
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius-lg);
  padding: 3rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 0 100px -30px var(--accent-glow);
}
@media (min-width: 800px) {
  .cta-card { padding: 4rem 3rem; flex-direction: row; justify-content: space-between; text-align: left; }
}
.cta-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 0.5rem;
}
.cta-card p { color: var(--text-muted); }
.cta-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; }
}
@media (min-width: 1000px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2.5rem; }
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-top: 1rem;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  color: var(--text-muted);
  font-size: 0.93rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  text-align: center;
}
@media (min-width: 600px) {
  .footer-bottom .container { flex-direction: row; }
}
.footer-bottom a { color: var(--text-muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom .sep { margin: 0 0.5rem; color: var(--text-dim); }

/* ============ Mobile floating CTA ============ */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(10, 13, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 0.6rem 0.6rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
  gap: 0.5rem;
}
@media (min-width: 700px) { .mobile-cta { display: none; } }
.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 0.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
}
.mobile-cta-call {
  background: var(--accent);
  color: var(--bg);
}
.mobile-cta-wa {
  background: var(--whatsapp);
  color: #fff;
}

/* ============ Desktop sticky CTA ============ */
.desktop-cta {
  display: none;
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 50;
  flex-direction: column;
  gap: 0.7rem;
}
@media (min-width: 700px) { .desktop-cta { display: flex; } }
.desktop-cta-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.25s;
}
.desktop-cta-btn:hover { transform: scale(1.06); }
.desktop-cta-call {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 8px 24px -6px var(--accent-glow), 0 0 0 1px var(--accent);
}
.desktop-cta-call:hover {
  box-shadow: 0 12px 32px -6px var(--accent-glow), 0 0 0 1px var(--accent-bright);
}
.desktop-cta-wa {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.5);
}
.desktop-cta-wa:hover {
  box-shadow: 0 12px 32px -6px rgba(37, 211, 102, 0.6);
  background: var(--whatsapp-hover);
}

/* ensure mobile CTA doesn't cover content */
@media (max-width: 699px) {
  body { padding-bottom: 80px; }
}

/* ============ Brands grid ============ */
.brands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .brands-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .brands-grid { grid-template-columns: repeat(3, 1fr); } }

.brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  position: relative;
  overflow: hidden;
}
.brand-card::after {
  content: '→';
  position: absolute;
  top: 1.4rem;
  right: 1.5rem;
  font-size: 1.15rem;
  color: var(--text-dim);
  transition: color 0.25s, transform 0.25s;
}
.brand-card:hover {
  border-color: var(--accent-dim);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.brand-card:hover::after { color: var(--accent); transform: translateX(4px); }
.brand-card h3 {
  font-size: 1.15rem;
  letter-spacing: -0.015em;
}
.brand-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.brand-card--other {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-3) 100%);
  border-color: var(--accent-glow-soft);
}

/* ============ Blog teaser ============ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 800px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--accent-dim);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}
.blog-card-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.blog-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}
.blog-card-link {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: auto;
}

/* ============ Sub-page (area) specifics ============ */
.subpage-hero {
  padding: 4rem 0 3rem;
  text-align: center;
}
.subpage-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
}
.subpage-hero .hero-lead { margin: 0 auto 2rem; }
.subpage-hero .hero-ctas { justify-content: center; }
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumbs a { color: var(--accent); }
.breadcrumbs .sep { margin: 0 0.5rem; color: var(--text-dim); }

.content-block {
  max-width: 800px;
  margin: 0 auto;
}
.content-block h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}
.content-block h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  margin-top: 1.75rem;
}
.content-block p {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  line-height: 1.75;
}
.content-block ul {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  list-style: disc;
  color: var(--text-muted);
}
.content-block ul li { margin-bottom: 0.4rem; }
.content-block a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
