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

:root {
  /* Phase 4 premium refresh: white-led, exact MFS logo hexes (red/gold/black on soft white) */
  --red: #e2231a;              /* brand red, logo-exact — fills, CTAs, accents */
  --red-deep: #c41a12;         /* gradient base / hover — deepens white-text contrast */
  --red-hover: #c41a12;
  --red-text: #c41a12;         /* red for small text/links on white (~4.6:1 AA) */
  --red-glow: rgba(226,35,26,0.30);
  --gold: #c8962e;             /* brand gold, logo-exact — fills, large accents */
  --gold-light: #e0b24f;
  --gold-text: #8a6a1f;        /* darkened gold for small text on white (AA) */
  --black: #111111;
  --charcoal: #111111;         /* var name kept; logo black for headings */
  --charcoal-light: #1d1d1d;
  --ink: #15171a;              /* near-black headings */
  /* Navy chrome — header, footer, mobile menu, small accents */
  --navy: #0f2547;
  --navy-light: #1b3a66;
  --navy-dark: #0a1c38;
  /* Emerald — the standout "Request a Call Back" CTA (distinct from WhatsApp green) */
  --cta: #10b981;
  --cta-deep: #0a7a52;
  --cta-hover: #0c8f63;
  --cta-glow: rgba(16,185,129,0.34);
  /* Soft premium off-white — never pure #fff on backgrounds */
  --white: #fafaf8;            /* page background */
  --surface: #ffffff;          /* cards lift cleanly above the off-white base */
  --off-white: #f3f2ec;        /* alternating sections, subtle warm neutral */
  --text: #2c2d30;
  --text-muted: #5c5e63;
  --border: #e9e6dd;
  --whatsapp: #25d366;         /* WhatsApp brand green — icon-only use */
  --whatsapp-btn: #0d8a3f;     /* darker green: white button text passes AA */
  --whatsapp-btn-hover: #0b7434;
  --green: #10b981;
  --green-dark: #0b8a5f;
  --radius: 14px;
  --shadow: 0 2px 14px rgba(17,17,17,0.05), 0 1px 3px rgba(17,17,17,0.04);
  --shadow-lg: 0 18px 50px rgba(17,17,17,0.10);
  --ease-sharp: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Kill the grey rectangular tap-flash mobile browsers draw on links/buttons */
a, button, .btn, .faq-q, input, select, .service-card, .contact-route {
  -webkit-tap-highlight-color: transparent;
}

/* Visible keyboard focus everywhere (mouse clicks unaffected).
   No fixed radius — the ring follows each element's own shape, so pills stay round. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.btn:focus-visible { outline-offset: 4px; }

/* Skip link for keyboard / screen-reader users */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--charcoal);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS (modern, soft-rounded, glossy; red primary wins) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.005em;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.18s var(--ease-sharp), box-shadow 0.25s var(--ease-sharp), border-color 0.2s, color 0.2s;
  text-align: center;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
/* Soft sheen sweeping the upper half — gives the pill real depth, not a flat box */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.06) 46%, rgba(0,0,0,0) 54%, rgba(0,0,0,0.05) 100%);
  pointer-events: none;
}
.btn:active { transform: scale(0.97); }

/* Trailing arrow on red conversion buttons — nudges forward on hover */
.btn-red::after {
  content: '\2192';
  font-size: 1.08em;
  line-height: 1;
  transition: transform 0.25s var(--ease-sharp);
}
.btn-red:hover::after { transform: translateX(4px); }
/* Suppress arrow when button carries its own contextual icon */
.btn-icon::after { display: none; }

/* PRIMARY (form / assessment) — solid red, soft glow, layered depth, hover lift */
.btn-red {
  background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  box-shadow: 0 1px 1px rgba(0,0,0,0.12), 0 8px 22px rgba(226,35,26,0.3), 0 2px 6px rgba(226,35,26,0.28);
}
.btn-red:hover {
  background: linear-gradient(180deg, #ec2c22 0%, var(--red) 100%);
  box-shadow: 0 1px 1px rgba(0,0,0,0.12), 0 14px 34px rgba(226,35,26,0.4), 0 3px 8px rgba(226,35,26,0.3);
  transform: translateY(-3px);
}
.btn-red:active { transform: translateY(-1px) scale(0.98); }

/* STANDOUT (Request a Call Back) — emerald, glossy, strong glow */
.btn-cta {
  background: linear-gradient(180deg, var(--cta) 0%, var(--cta-deep) 100%);
  color: #fff;
  box-shadow: 0 1px 1px rgba(0,0,0,0.12), 0 8px 22px var(--cta-glow), 0 2px 6px rgba(10,122,82,0.3);
}
.btn-cta:hover {
  background: linear-gradient(180deg, #18c98c 0%, var(--cta-hover) 100%);
  box-shadow: 0 1px 1px rgba(0,0,0,0.12), 0 14px 34px var(--cta-glow), 0 3px 8px rgba(10,122,82,0.3);
  transform: translateY(-3px);
}
.btn-cta:active { transform: translateY(-1px) scale(0.98); }

/* Gold — secondary emphasis */
.btn-gold {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--black);
  box-shadow: 0 1px 1px rgba(0,0,0,0.1), 0 7px 20px rgba(200,150,46,0.32);
}
.btn-gold:hover {
  background: linear-gradient(180deg, #e8bd5c 0%, #cf9d34 100%);
  box-shadow: 0 1px 1px rgba(0,0,0,0.1), 0 12px 28px rgba(200,150,46,0.44);
  transform: translateY(-3px);
}
.btn-whatsapp {
  background: linear-gradient(180deg, #109247 0%, var(--whatsapp-btn) 100%);
  color: #fff;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1), 0 7px 20px rgba(13,138,63,0.3);
}
.btn-whatsapp:hover {
  background: linear-gradient(180deg, var(--whatsapp-btn) 0%, var(--whatsapp-btn-hover) 100%);
  box-shadow: 0 1px 1px rgba(0,0,0,0.1), 0 12px 28px rgba(13,138,63,0.42);
  transform: translateY(-3px);
}
.btn-green {
  background: linear-gradient(180deg, #0c915c 0%, #097a4d 100%);
  color: #fff;
  box-shadow: 0 7px 20px rgba(11,138,87,0.3);
}
.btn-green:hover {
  background: linear-gradient(180deg, #0b8a57 0%, #086b44 100%);
  box-shadow: 0 12px 28px rgba(11,138,87,0.42);
  transform: translateY(-3px);
}

/* Secondary / ghost — lighter so the primary always wins attention */
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(17,17,17,0.2);
}
.btn-outline::before { display: none; }
.btn-outline:hover {
  background: rgba(17,17,17,0.04);
  border-color: var(--ink);
  transform: translateY(-3px);
}
.btn-lg { padding: 17px 40px; font-size: 17px; }
.btn-full { width: 100%; }

/* ===== TOP UTILITY BAR (navy) ===== */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.72);
  font-size: 12px;
}
.topbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-group { display: flex; align-items: center; gap: 18px; }
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  transition: color 0.2s;
}
.topbar a:hover { color: #fff; }
.topbar svg { color: var(--gold-light); flex-shrink: 0; }
.topbar .topbar-wa svg { color: var(--cta); }
.topbar-hours { display: none; align-items: center; gap: 6px; }
.topbar-label { display: none; }
@media (min-width: 480px) { .topbar-label { display: inline; } }
@media (min-width: 768px) { .topbar-hours { display: inline-flex; } }

/* ===== NAV (navy, sharpens shadow on scroll) ===== */
nav {
  background: linear-gradient(180deg, var(--navy) 0%, #0d2140 100%);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s var(--ease-sharp);
}
nav.scrolled {
  box-shadow: 0 8px 28px rgba(10,28,56,0.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo { max-width: 55%; overflow: hidden; }
.nav-logo img { height: 48px; width: auto; }
/* Wordmark shown only if the logo image is missing (graceful fallback) */
.logo-fallback {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #fff;
}
.nav-logo .logo-fallback { color: #fff; }
.nav-logo .logo-fallback::first-letter { color: var(--gold-light); }
.footer-brand .logo-fallback { display: inline-block; margin-bottom: 14px; color: #fff; }
.nav-links {
  display: none;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links { gap: 24px; }
/* Refined gold underline grow on hover (sharp micro-interaction) */
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -5px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-sharp);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
/* CTA stays visible on mobile (locked header spec) — compact size, full size from 768px */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  margin-right: 10px;
  padding: 10px 18px;
  font-size: 13px;
  white-space: nowrap;
}
.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 16px 20px 20px;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 15px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-mobile-cta {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
  border-radius: 999px;
  padding: 12px 20px;
  text-align: center;
  border-bottom: none;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { margin-left: 0; margin-right: 0; padding: 13px 26px; font-size: 15px; }
  .nav-hamburger { display: none; }
}

/* ===== HERO (light, spacious; red/gold used sparingly) ===== */
.hero {
  background: var(--white);
  color: var(--ink);
  padding: 80px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,150,46,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -160px; left: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,35,26,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,150,46,0.10);
  border: 1px solid rgba(200,150,46,0.32);
  color: var(--gold-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  width: fit-content;
}
.hero-badge svg { color: var(--red); }
.hero h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 1px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(1);
  transform-origin: left;
}
.hero-sub {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; padding-top: 8px; }
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.hero-trust-item svg { color: var(--gold-text); flex-shrink: 0; }

/* Hero becomes two columns from 900px: copy left, owner video right */
.hero > .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero > .container { grid-template-columns: 1.05fr 0.95fr; gap: 52px; }
}

/* Owner video card (placeholder link until the real video/embed is supplied) */
.hero-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 70%, #24508c 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}
.hero-media::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,150,46,0.30), transparent 70%);
  pointer-events: none;
}
.media-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(226,35,26,0.5);
  transition: transform 0.3s var(--ease-sharp), box-shadow 0.3s;
}
.media-play svg { color: #fff; margin-left: 4px; }
.hero-media:hover .media-play { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 14px 36px rgba(226,35,26,0.6); }
.media-play::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(226,35,26,0.5);
  opacity: 0;
}
/* Ring expands only while hovering the card — no perpetual idle animation */
@media (prefers-reduced-motion: no-preference) {
  .hero-media:hover .media-play::after { animation: media-pulse 1.6s ease-out infinite; }
}
@keyframes media-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { opacity: 0; }
}
.media-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold-light);
  padding: 5px 10px;
  border-radius: 99px;
}
.media-label {
  position: absolute;
  left: 18px; bottom: 16px;
  right: 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* ===== PAGE HERO (inner pages — bolder gold/red accents allowed) ===== */
.page-hero {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  color: var(--ink);
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,35,26,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-top: 14px;
  color: var(--ink);
}
.page-hero h1 em { font-style: normal; color: var(--red); }
.page-hero p {
  font-size: clamp(14px, 2.5vw, 17px);
  color: var(--text-muted);
  max-width: 560px;
  margin-top: 14px;
  line-height: 1.65;
}
.page-hero .hero-actions { margin-top: 28px; }

/* ===== SECTION COMMON ===== */
section { padding: 80px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-text);
  margin-bottom: 12px;
}
/* Signature editorial marker: a short gold rule leads every eyebrow */
.section-label::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.65;
}
.section-header { margin-bottom: 48px; }

/* ===== PAIN SECTION ===== */
.pain { background: var(--off-white); }
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 44px;
}
.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease-sharp), box-shadow 0.25s var(--ease-sharp);
}
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pain-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.pain-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.pain-reassure {
  /* Premium light accent card with gold top rule */
  background: linear-gradient(135deg, var(--surface) 0%, var(--off-white) 100%);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.pain-reassure h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.pain-reassure p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) { .pain-grid { grid-template-columns: 1fr 1fr; } }

/* ===== SERVICES OVERVIEW ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color 0.25s, box-shadow 0.25s var(--ease-sharp), transform 0.25s var(--ease-sharp);
  cursor: pointer;
  overflow: hidden;
}
/* Gold accent rule draws across the top edge on hover (signature micro-interaction) */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-sharp);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon {
  width: 46px;
  height: 46px;
  background: rgba(200,150,46,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
  transition: transform 0.25s var(--ease-sharp);
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-3deg); }
.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.service-card p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
/* Mid-grid conversion card: catches "not sure" users inside the long services list */
.service-card-cta {
  background: linear-gradient(135deg, rgba(226,35,26,0.06), rgba(200,150,46,0.08));
  border: 1px solid rgba(226,35,26,0.22);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card-cta:hover { border-color: var(--whatsapp-btn); }
.service-card-cta .faux-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #109247, var(--whatsapp-btn));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 12px;
  margin-top: 14px;
  width: fit-content;
  box-shadow: 0 5px 16px rgba(13,138,63,0.26);
}
.services-cta { text-align: center; margin-top: 40px; }

@media (min-width: 480px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== SERVICE DETAIL (services.html) ===== */
.service-detail { border-bottom: 1px solid var(--border); }
.service-detail.alt { background: linear-gradient(180deg, var(--off-white), #f6f4ec); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 820px) { .service-detail-grid { grid-template-columns: 1fr 1fr; } }
.service-detail .service-icon { width: 54px; height: 54px; margin-bottom: 18px; }
.service-detail h2 {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.service-detail .lede { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.sd-block {
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 16px;
}
.sd-block h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sd-block p { font-size: 14px; line-height: 1.7; }
.sd-problem {
  background: rgba(226,35,26,0.05);
  border: 1px solid rgba(226,35,26,0.2);
}
.sd-problem h3 { color: var(--red-text); }
.sd-fix {
  background: rgba(200,150,46,0.08);
  border: 1px solid rgba(200,150,46,0.3);
}
.sd-fix h3 { color: var(--gold-text); }
.sd-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }

/* ===== HOW IT WORKS (light) ===== */
.how { background: var(--white); }
.how .section-title { color: var(--ink); }
.how .section-sub { color: var(--text-muted); }
.steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.step { display: flex; gap: 20px; padding-bottom: 36px; position: relative; }
.step:last-child { padding-bottom: 0; }
.step-line { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 16px rgba(200,150,46,0.3);
}
.step-connector {
  width: 2px;
  flex: 1;
  background: rgba(200,150,46,0.35);
  margin-top: 6px;
  min-height: 24px;
}
.step:last-child .step-connector { display: none; }
.step-body { padding-top: 9px; }
.step-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.step-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

@media (min-width: 768px) {
  .steps { flex-direction: row; gap: 0; }
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding-bottom: 0;
    padding-right: 20px;
  }
  .step:last-child { padding-right: 0; }
  .step-line { flex-direction: row; width: 100%; margin-bottom: 16px; }
  .step-connector {
    width: auto;
    height: 2px;
    flex: 1;
    margin-top: 0;
    margin-left: 6px;
    min-height: unset;
  }
  .step-body { padding-top: 0; }
}

/* ===== TRUST SECTION ===== */
.trust { background: var(--off-white); }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 44px;
}
.trust-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.trust-stat .number {
  font-size: 34px;
  font-weight: 800;
  color: var(--gold-text);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.trust-stat .label { font-size: 13px; color: var(--text-muted); }
.trust-stat .placeholder-note {
  font-size: 10px;
  color: var(--text-muted);
  opacity: 0.85;
  margin-top: 4px;
}
.testimonials { display: grid; grid-template-columns: 1fr; gap: 16px; }
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.testimonial blockquote {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 14px;
}
.testimonial cite {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  font-style: normal;
}
.testimonial .placeholder-note {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.85;
  margin-top: 6px;
}

@media (min-width: 640px) { .testimonials { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease-sharp);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--off-white); }
.faq-q svg { flex-shrink: 0; color: var(--red); transition: transform 0.3s var(--ease-sharp); }
.faq-q[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-a.open { display: block; }

/* ===== LEAD FORM (light) ===== */
.lead-form-section {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  color: var(--ink);
}
.lead-form-section .section-title { color: var(--ink); }
.lead-form-section .section-sub { color: var(--text-muted); }
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 24px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.form-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-card .form-note { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(226,35,26,0.12);
}
.form-group .select-wrap { position: relative; }
.form-group .select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--text-muted);
  pointer-events: none;
}
.form-submit-btn { margin-top: 8px; }
.form-privacy {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 16px 0;
}
.form-success.show { display: flex; }
.form-success svg { color: var(--whatsapp-btn); }
.form-success h3 { font-size: 20px; font-weight: 700; color: var(--ink); }
.form-success p { font-size: 14px; color: var(--text-muted); }

/* ===== FINAL CTA BANNER (the one bold red anchor) ===== */
.cta-banner {
  background: radial-gradient(120% 130% at 50% 0%, #ef3023 0%, var(--red) 48%, var(--red-deep) 100%);
  color: #fff;
  padding: 56px 0;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}
.cta-banner h2 {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.cta-banner p {
  font-size: 15px;
  opacity: 0.92;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
/* Ghost button on the red banner reads as white outline */
.cta-banner .btn-outline { color: #fff; border-color: rgba(255,255,255,0.55); }
.cta-banner .btn-outline:hover { background: #fff; color: var(--red-text); border-color: #fff; }

/* ===== FOOTER (navy) ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand img { height: 40px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.65; max-width: 260px; }
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; }
.footer-contact-item svg { color: var(--gold-light); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom p { font-size: 12px; }
.footer-disclaimer { font-size: 11px; opacity: 0.5; line-height: 1.65; }

@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

/* ===== FLOATING WHATSAPP ===== */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 200;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s var(--ease-sharp), box-shadow 0.2s;
}
.fab-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
@keyframes fab-pulse {
  0% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.45); }
  70% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}
.fab-whatsapp { animation: fab-pulse 2.4s ease-out 6; }
@media (prefers-reduced-motion: reduce) {
  .fab-whatsapp { animation: none; }
  html { scroll-behavior: auto; }
}
.fab-whatsapp svg { color: var(--white); position: relative; }
.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: radial-gradient(80% 55% at 50% 22%, rgba(255,255,255,0.4), rgba(255,255,255,0) 65%);
  pointer-events: none;
}
.fab-tooltip {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: var(--charcoal);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.fab-whatsapp:hover .fab-tooltip { opacity: 1; }

/* ===== SOFT ACCENT BLOBS & GLASS (red/gold only, very subtle) ===== */
.has-blobs { position: relative; overflow: hidden; }
.has-blobs > .container { position: relative; z-index: 1; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.22;
}
.blob-gold { background: radial-gradient(circle, rgba(200,150,46,0.55), transparent 70%); }
.blob-green { background: radial-gradient(circle, rgba(200,150,46,0.4), transparent 70%); }
.blob-red { background: radial-gradient(circle, rgba(226,35,26,0.4), transparent 70%); }

.glass {
  background: rgba(255,255,255,0.9) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow);
}

/* ===== CALCULATOR ===== */
.calc { background: linear-gradient(160deg, #f6f4ec 0%, #f3f2ec 55%, #f7f5ef 100%); }
.calc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
@media (min-width: 820px) { .calc-grid { grid-template-columns: 1fr 1fr; } }
.calc-card { border-radius: 16px; padding: 28px 24px; }
.calc-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}
.calc-field { margin-bottom: 20px; }
.calc-field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.calc-field label output {
  font-size: 15px;
  font-weight: 800;
  color: var(--red-text);
}
.calc-field input[type="range"] { width: 100%; accent-color: var(--red); cursor: pointer; }
.calc-results { display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.calc-result-row {
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.calc-result-row .label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.calc-result-row .value { font-size: 20px; font-weight: 800; color: var(--ink); white-space: nowrap; }
.calc-result-row.highlight {
  background: linear-gradient(135deg, rgba(200,150,46,0.18), rgba(200,150,46,0.08));
  border: 1px solid rgba(200,150,46,0.4);
}
.calc-result-row.highlight .value { color: var(--gold-text); font-size: 24px; }
.calc-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 860px;
  margin: 20px auto 0;
  text-align: center;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }
.contact-routes { display: flex; flex-direction: column; gap: 14px; }
.contact-route {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: transform 0.25s var(--ease-sharp), box-shadow 0.25s var(--ease-sharp);
}
.contact-route:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-route .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-route .icon-gold { background: rgba(200,150,46,0.14); color: var(--gold); }
.contact-route .icon-green { background: rgba(37,211,102,0.14); color: var(--whatsapp-btn); }
.contact-route .icon-red { background: rgba(226,35,26,0.10); color: var(--red); }
.contact-route h3 { font-size: 14px; font-weight: 700; color: var(--ink); }
.contact-route p { font-size: 13px; color: var(--text-muted); }
.contact-route .detail { font-size: 15px; font-weight: 700; color: var(--ink); }
.map-placeholder {
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1.5px dashed var(--border);
  padding: 36px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 28px;
}

/* ===== ABOUT PAGE ===== */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  border-radius: var(--radius);
  padding: 26px 24px;
  text-align: center;
}
.value-card .service-icon { margin: 0 auto 14px; }
.value-card h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 820px) { .story-grid { grid-template-columns: 1.2fr 1fr; } }
.story-text p { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 16px; }
.story-aside { border-radius: 16px; padding: 28px; }
.story-aside h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.story-aside ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.story-aside li { display: flex; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.6; }
.story-aside li svg { color: var(--gold-text); flex-shrink: 0; margin-top: 3px; }
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: 1fr 1fr; } }
.team-card {
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold-light);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.team-card h3 { font-size: 16px; font-weight: 700; color: var(--ink); }
.team-card .role { font-size: 13px; color: var(--gold-text); font-weight: 600; margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== MOBILE TAP TARGETS ===== */
@media (max-width: 480px) {
  .hero-actions .btn,
  .sd-cta .btn,
  .cta-banner .btn-actions .btn,
  .pain-reassure .btn,
  .services-cta .btn,
  .text-center > .btn {
    width: 100%;
  }

  /* Hero CTAs: WhatsApp only on mobile — assessment moved to hamburger menu */
  .hero-actions .btn-red {
    display: none;
  }
}

/* ===== MOTION ===== */
/* Signature hero reveal — sharp clip-and-rise, staggered (home hero feels fast & premium) */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(26px); clip-path: inset(0 0 100% 0); }
  55%  { clip-path: inset(0 0 0 0); }
  to   { opacity: 1; transform: translateY(0); clip-path: inset(0 0 0 0); }
}
@keyframes underlineSweep { from { transform: scaleX(0); } to { transform: scaleX(1); } }

@media (prefers-reduced-motion: no-preference) {
  .js .hero-inner > * { animation: heroRise 0.7s var(--ease-sharp) both; }
  .js .hero-inner > *:nth-child(1) { animation-delay: 0.02s; }
  .js .hero-inner > *:nth-child(2) { animation-delay: 0.10s; }
  .js .hero-inner > *:nth-child(3) { animation-delay: 0.18s; }
  .js .hero-inner > *:nth-child(4) { animation-delay: 0.26s; }
  .js .hero-inner > *:nth-child(5) { animation-delay: 0.34s; }
  /* Gold underline draws under the accent word after the headline settles */
  .js .hero h1 em::after { transform: scaleX(0); animation: underlineSweep 0.55s var(--ease-sharp) 0.5s forwards; }

  /* Calmer scroll reveals elsewhere — refined rise, not the generic template fade */
  .js .reveal { opacity: 0; transform: translateY(20px); }
  .js .reveal.in-view {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s var(--ease-sharp), transform 0.6s var(--ease-sharp);
  }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-8 { margin-top: 32px; }
