/* =================== TOKENS =================== */
:root {
  --bg: #0c0a05;
  --bg-2: #110d06;
  --bg-3: #17120a;
  --bg-elev: #1c150b;
  --bg-elev-2: #221a0f;
  --border: rgba(255,245,225,.09);
  --border-2: rgba(255,245,225,.13);
  --text: #f4efe4;
  --text-dim: #b3a98f;
  --text-mute: #877d62;

  --blue: #e0a82e;
  --blue-2: #f2c14e;
  --blue-soft: rgba(224,168,46,.12);
  --blue-border: rgba(224,168,46,.30);

  --green: #22c55e;
  --green-2: #16a34a;
  --green-soft: rgba(34,197,94,.14);
  --green-border: rgba(34,197,94,.35);

  --amber: #fbbf24;
  --amber-2: #f59e0b;
  --amber-soft: rgba(251,191,36,.14);
  --amber-border: rgba(251,191,36,.35);

  --red: #ef4444;
  --red-soft: rgba(239,68,68,.14);
  --red-border: rgba(239,68,68,.32);

  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,.6);
  --shadow-glow-green: 0 18px 50px -12px rgba(34,197,94,.45);
  --shadow-glow-amber: 0 18px 50px -12px rgba(251,191,36,.45);

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
section[id] { scroll-margin-top: 84px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--blue-2); }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; letter-spacing: -.02em; }
p { margin: 0; }
button, input { font: inherit; color: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 920px; }

/* =================== ACCENT SPANS =================== */
.accent-blue { color: var(--blue-2); }
.accent-green { color: var(--green); }
.accent-amber { color: var(--amber); }
.accent-red { color: var(--red); }
.muted { color: var(--text-dim); }
.muted-sm { color: var(--text-dim); font-size: 13.5px; }

/* =================== PILLS / BADGES =================== */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
  border: 1px solid transparent;
}
.pill-live {
  background: var(--green-soft);
  color: #67e58d;
  border-color: var(--green-border);
}
.pill-urgent {
  background: var(--red-soft);
  color: #ffb1b1;
  border-color: var(--red-border);
  letter-spacing: .04em;
}
.pill-mini {
  font-size: 9.5px; font-weight: 700; letter-spacing: .08em;
  padding: 2px 6px; border-radius: 4px;
  background: var(--red-soft); color: #ffb1b1;
  border: 1px solid var(--red-border);
  margin-left: 6px;
}
.dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
}
.dot-green { background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.18); }
.dot-red { background: #ef4444; box-shadow: 0 0 0 4px rgba(239,68,68,.18); animation: pulse-red 1.6s ease-in-out infinite; }
.dot-white { background: #fff; }
@keyframes pulse-red {
  0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,.55); }
  50% { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}

/* =================== HEADER =================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px) saturate(160%);
  background: rgba(12,10,5,.72);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; gap: 28px;
  padding-top: 14px !important; padding-bottom: 14px !important;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo:hover { color: var(--text); }
.logo-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, #f2c14e 0%, #c2871a 100%);
  display: grid; place-items: center;
  color: #1a0f00;
  box-shadow: 0 6px 16px -4px rgba(224,168,46,.55), inset 0 1px 0 rgba(255,255,255,.25);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-weight: 800; font-size: 17px; letter-spacing: -.01em; }
.logo-tag { font-size: 9.5px; color: var(--text-dim); letter-spacing: .14em; margin-top: 4px; font-weight: 600; }

.nav-primary { display: flex; gap: 6px; margin: 0 auto; }
.nav-primary a {
  padding: 10px 14px; border-radius: 10px;
  font-weight: 600; font-size: 14.5px; color: var(--text-dim);
}
.nav-primary a:hover { color: var(--text); background: rgba(255,255,255,.04); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-call-blue {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--blue) 0%, #c2871a 100%);
  color: #1a0f00; font-weight: 700; font-size: 14.5px;
  box-shadow: 0 6px 16px -4px rgba(224,168,46,.55), inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .15s ease;
}
.btn-call-blue:hover { transform: translateY(-1px); color: #1a0f00; }

/* =================== HERO =================== */
.hero { position: relative; overflow: hidden; min-height: 760px; padding-bottom: 80px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-image {
  position: absolute; inset: 0;
  background-image: url('assets/img/hero-bg-chrono.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-image::before { content: none; }
.hero-image::after { content: none; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(12,10,5,.92) 0%, rgba(12,10,5,.75) 35%, rgba(12,10,5,.35) 60%, rgba(12,10,5,.55) 100%),
    linear-gradient(180deg, rgba(12,10,5,.4) 0%, rgba(12,10,5,.85) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding-top: 88px;
}
.hero-copy { max-width: 660px; display: flex; flex-direction: column; gap: 20px; }
.hero-title {
  font-size: clamp(40px, 5.6vw, 76px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .98;
  margin-top: 4px;
}
.hero-lede {
  color: #cfc6b1; font-size: 16px; max-width: 580px;
}
.hero-lede strong { color: #fff; font-weight: 700; }

.cta-call-green {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  background: linear-gradient(180deg, #1fbc54 0%, #16a34a 100%);
  color: white;
  border-radius: 14px;
  box-shadow: var(--shadow-glow-green), inset 0 1px 0 rgba(255,255,255,.25);
  max-width: 500px;
  position: relative;
  transition: transform .15s ease;
}
.cta-call-green:hover { transform: translateY(-1px); color: white; }
.cta-call-green::after {
  content: ""; position: absolute; inset: 0; border-radius: 14px;
  box-shadow: 0 0 0 0 rgba(34,197,94,.4);
  animation: pulse-cta 2s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse-cta {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.45); }
  70% { box-shadow: 0 0 0 16px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.cta-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.18);
  display: grid; place-items: center;
  color: #fff; flex-shrink: 0;
}
.cta-call-body { display: flex; flex-direction: column; line-height: 1.1; flex: 1; }
.cta-call-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .12em; color: rgba(255,255,255,.85); }
.cta-call-number { font-size: 26px; font-weight: 800; letter-spacing: -.02em; margin-top: 4px; }
.cta-call-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  padding: 6px 10px; border-radius: 999px;
  background: rgba(0,0,0,.22);
}

.hero-rating { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; }
.stars { color: var(--amber); letter-spacing: .08em; font-size: 16px; }
.stars-sm { color: var(--amber); letter-spacing: .04em; font-size: 13px; }
.big-stars { color: var(--amber); font-size: 32px; letter-spacing: .08em; margin-top: 6px; }

.hero-bullets {
  display: grid; grid-template-columns: repeat(4, auto); gap: 6px 22px;
  font-size: 13.5px; color: #cfc6b1;
}
.hero-bullets li { display: inline-flex; align-items: center; gap: 8px; }
.check {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--green-soft); border: 1px solid var(--green-border);
  position: relative; flex-shrink: 0;
}
.check::after {
  content: ""; position: absolute;
  left: 5px; top: 2px; width: 4px; height: 8px;
  border: solid #22c55e; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.hero-testimonial {
  display: flex; gap: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  padding: 14px 16px; border-radius: 14px;
  max-width: 520px; margin: 6px 0 0;
}
.hero-testimonial blockquote { margin: 4px 0 0; font-size: 13.5px; color: #ddd4bf; }
.hero-testimonial blockquote a { color: var(--blue-2); }
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 800; color: #1a0f00;
  background: linear-gradient(135deg, #f2c14e, #c2871a);
  flex-shrink: 0;
}
.avatar-md { width: 44px; height: 44px; font-size: 13px; }
.avatar-td { background: linear-gradient(135deg, #f2c14e, #c2871a); }

.scroll-cue {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: -40px;
  opacity: .55;
}
.scroll-mouse {
  display: block; width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.5); border-radius: 12px;
  position: relative;
}
.scroll-wheel {
  position: absolute; left: 50%; top: 7px; transform: translateX(-50%);
  width: 2.5px; height: 6px; border-radius: 2px; background: white;
  animation: scroll-bob 1.6s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%,100% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 8px); opacity: .3; }
}

/* =================== STATS BAR =================== */
.stats-bar {
  background: linear-gradient(180deg, #16110a 0%, #100c06 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat {
  display: grid; grid-template-columns: auto 1fr;
  align-items: center; column-gap: 16px;
  text-align: left; padding: 6px 26px;
}
.stat + .stat { border-left: 1px solid var(--border); }
.stat-icon {
  display: inline-grid; place-items: center; grid-row: 1 / span 2; align-self: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--blue-soft); border: 1px solid var(--blue-border);
  color: var(--blue-2);
}
.stat-value { grid-column: 2; align-self: end; font-size: 40px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.stat-label { grid-column: 2; align-self: start; color: var(--text-dim); font-size: 14px; margin-top: 4px; }

/* =================== SECTIONS =================== */
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: .18em; color: var(--blue-2);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 800; letter-spacing: -.03em;
}
.section-title.align-left { text-align: left; }
.section-lede {
  color: var(--text-dim); font-size: 16px;
  margin-top: 16px;
}

/* =================== SERVICES =================== */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.service-card {
  background: linear-gradient(180deg, #1a140b 0%, #120d06 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  transition: transform .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--border-2); }
.service-img {
  position: relative; width: 210px; flex-shrink: 0; align-self: stretch;
  background: #14100a;
  display: grid; place-items: center;
  overflow: hidden;
}
.service-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.service-img-keys { background: radial-gradient(ellipse at center, #2a2210 0%, #0c0a05 80%); }
.service-img-keys::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle 60px at 50% 50%, rgba(190,165,115,.55), transparent 60%),
    radial-gradient(circle 8px at 35% 40%, rgba(255,255,255,.4), transparent 70%),
    radial-gradient(circle 8px at 60% 45%, rgba(255,255,255,.35), transparent 70%),
    radial-gradient(circle 8px at 50% 65%, rgba(255,255,255,.3), transparent 70%),
    radial-gradient(circle 8px at 30% 60%, rgba(255,255,255,.25), transparent 70%),
    radial-gradient(circle 8px at 65% 65%, rgba(255,255,255,.25), transparent 70%);
}
.service-img-car { background: linear-gradient(135deg, #1c1408, #0c0a05); }
.service-img-car::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 25% at 50% 65%, rgba(224,168,46,.45), transparent 70%),
    radial-gradient(circle 30px at 30% 50%, rgba(255,220,120,.4), transparent 70%);
}
.service-img-door { background: linear-gradient(135deg, #2a1d10 0%, #0a0810 100%); }
.service-img-door::before {
  content: ""; position: absolute; left: 25%; top: 8%; width: 50%; height: 84%;
  background: linear-gradient(180deg, #3a2a18 0%, #1c1208 100%);
  border-radius: 90px 90px 0 0;
  border: 2px solid rgba(160,120,70,.35);
}
.service-img-door::after {
  content: ""; position: absolute; left: 60%; top: 50%; width: 8px; height: 8px;
  /* background: #f5b942; border-radius: 50%;
  box-shadow: 0 0 12px rgba(245,185,66,.7); */
}
.card-badge {
  position: absolute; top: 14px; right: 14px;
  padding: 5px 10px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em;
}
.badge-blue { background: var(--blue-soft); color: var(--blue-2); border: 1px solid var(--blue-border); }
.badge-red { background: var(--red-soft); color: #ffb1b1; border: 1px solid var(--red-border); }

.service-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.service-head { display: flex; gap: 12px; align-items: flex-start; }
.service-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--blue-soft); border: 1px solid var(--blue-border);
  color: var(--blue-2); display: grid; place-items: center;
}
.service-head h3 { font-size: 19px; font-weight: 700; }
.service-sub { color: var(--blue-2); font-size: 13px; margin-top: 4px; }
.service-text { color: var(--text-dim); font-size: 14px; margin: 16px 0 22px; }
.service-foot {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 18px; margin-top: auto;
}
.service-price { color: var(--text-dim); font-size: 14px; }
.service-price strong { color: var(--amber); font-size: 17px; font-weight: 800; margin-left: 4px; }

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px;
  border: 0; border-radius: 10px;
  font-weight: 700; font-size: 14px;
  cursor: pointer; text-decoration: none;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-pill { border-radius: var(--radius-pill); padding: 8px 14px; font-size: 13px; }
.btn-pill-blue {
  background: var(--blue-soft); color: var(--blue-2);
  border: 1px solid var(--blue-border);
}
.btn-pill-blue:hover { background: rgba(224,168,46,.2); color: var(--blue-2); }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(180deg, var(--blue) 0%, #c2871a 100%);
  color: #1a0f00;
  box-shadow: 0 6px 14px -4px rgba(224,168,46,.55);
}
.btn-primary:hover { color: #1a0f00; }
.btn-amber {
  background: linear-gradient(180deg, #fcc536 0%, #f59e0b 100%);
  color: #1a0f00;
  box-shadow: var(--shadow-glow-amber);
}
.btn-amber:hover { color: #1a0f00; }
.btn-ghost {
  background: rgba(255,255,255,.05); color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { background: rgba(255,255,255,.09); color: var(--text); }
.btn-green-lg {
  background: linear-gradient(180deg, #1fbc54 0%, #16a34a 100%);
  color: white; font-size: 16px; padding: 14px 22px;
  box-shadow: var(--shadow-glow-green);
}
.btn-green-lg:hover { color: white; }

/* =================== PROCESS =================== */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  counter-reset: step; position: relative;
}
.process-grid::before {
  content: ""; position: absolute; top: 58px; left: 12.5%; right: 12.5%;
  height: 2px; z-index: 0;
  background: linear-gradient(90deg, transparent, var(--blue-border) 18%, var(--blue-border) 82%, transparent);
}
.process-step {
  position: relative; z-index: 1;
  padding: 0 14px;
  background: transparent; border: none; border-radius: 0;
  text-align: center;
}
.step-num {
  display: block;
  font-family: var(--font); font-size: 12px; font-weight: 800;
  letter-spacing: .18em; color: var(--blue-2);
  margin-bottom: 14px;
}
.step-icon {
  display: grid; place-items: center; margin: 0 auto 20px;
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(180deg, #1c150b 0%, #120d06 100%);
  border: 1px solid var(--blue-border); color: var(--blue-2);
  box-shadow: 0 0 0 7px #0c0a05;
}
.process-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.process-step p { color: var(--text-dim); font-size: 14px; }

/* =================== INSURANCE =================== */
.insurance-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.insurance-copy .section-title { font-size: clamp(32px, 3.8vw, 48px); }
.insurance-lede { color: var(--text-dim); margin: 20px 0 24px; }
.check-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: #ddd4bf; }
.insurance-visual {
  position: relative; aspect-ratio: 16/10;
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(251,191,36,.25), transparent 60%),
    url('assets/img/geometric-forms.webp') center/cover no-repeat,
    linear-gradient(135deg, #1a1505 0%, #0c0a05 60%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
  overflow: hidden;
}
.insurance-visual::before {
  /* hex grid texture */
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle 1px at 25% 25%, rgba(255,200,120,.4), transparent 50%),
    radial-gradient(circle 1px at 75% 65%, rgba(255,200,120,.3), transparent 50%),
    radial-gradient(circle 1px at 45% 80%, rgba(255,200,120,.25), transparent 50%);
  opacity: .8;
}
.insurance-stats {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-left: auto; max-width: 360px;
  margin-top: 12%;
}
.i-stat {
  background: rgba(10,15,30,.7);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  backdrop-filter: blur(6px);
}
.i-stat-value { display: block; font-size: 28px; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.i-stat-label { color: var(--text-dim); font-size: 12px; margin-top: 4px; display: block; }
.i-badge {
  position: absolute; left: 28px; bottom: 28px;
  background: linear-gradient(180deg, #1fbc54, #16a34a);
  color: white; padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800; line-height: 1.1; text-align: center;
  box-shadow: var(--shadow-glow-green);
}
.i-badge small { font-size: 11px; font-weight: 600; opacity: .85; }

/* =================== REVIEWS =================== */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 920px; margin: 0 auto; }
.review-card {
  background: linear-gradient(180deg, #1a140b 0%, #120d06 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  position: relative;
}
.review-google {
  position: absolute; top: 18px; right: 22px;
  font-size: 13px; color: var(--text-mute); font-weight: 700;
  background: linear-gradient(90deg,#4285F4 0,#34A853 25%,#FBBC05 50%,#EA4335 75%,#4285F4 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  opacity: .8;
}
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-name { font-weight: 700; font-size: 15px; }
.review-loc { font-size: 12.5px; color: var(--text-dim); }
.review-card p { color: #ddd4bf; font-size: 14px; margin-top: 8px; }

/* =================== ZONES =================== */
.zones-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 16px; }
.zone-card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #1a140b 0%, #120d06 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  display: flex; flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}
.zone-card:hover { transform: translateY(-3px); border-color: var(--blue-border); color: var(--text); }
.zone-num {
  position: absolute; top: 4px; right: 14px;
  font-size: 56px; font-weight: 800; line-height: 1;
  color: rgba(224,168,46,.13); letter-spacing: -.02em; pointer-events: none;
}
.zone-card strong { font-size: 17px; font-weight: 700; margin-top: 0; display: block; position: relative; }
.zone-card small { color: var(--text-dim); font-size: 12.5px; margin-top: 6px; display: block; }
.zone-time {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  color: var(--green); font-size: 12.5px; font-weight: 600;
}
.zone-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--green-soft); border: 1px solid var(--green-border);
  position: relative;
}
.zone-dot::after {
  content: ""; position: absolute; inset: 2px; border-radius: 50%; background: var(--green);
}

/* =================== BRANDS =================== */
.brands-grid {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px;
}
.brand-tile {
  background: linear-gradient(180deg, #1a140b 0%, #120d06 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px 14px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-dim);
  min-width: 0; text-align: center; overflow-wrap: anywhere;
  transition: border-color .2s ease, color .2s ease;
}
.brand-tile:hover { border-color: var(--blue-border); color: var(--text); }
.brand-img {
  color: var(--text-mute);
  height: 32px;
  display: grid; place-items: center;
}
.brand-img img {
  width: 56px; height: 32px;
  object-fit: contain;
  opacity: .85;
  transition: opacity .2s ease;
}
.brand-tile:hover .brand-img img { opacity: 1; }
.brand-img img.brand-img-color {
  width: 72px; height: 40px;
  opacity: 1;
  background: rgba(255,255,255,.92);
  border-radius: 4px;
  padding: 3px 5px;
}
.brand-mono {
  display: inline-grid; place-items: center;
  min-width: 38px; height: 32px; padding: 0 8px;
  border: 1.5px solid var(--border-2);
  border-radius: 6px;
  color: var(--text);
  font-weight: 800; font-size: 13px;
  letter-spacing: .04em;
  font-family: var(--font);
}
.brands-note { text-align: center; margin-top: 28px; }
.brands-warn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: var(--radius-pill);
  background: var(--blue-soft); border: 1px solid var(--blue-border);
  color: #d9cfb8; font-size: 14px;
}
.brands-warn a { color: var(--blue-2); font-weight: 700; }

/* =================== PRICING =================== */
.pricing-grid { display: grid; grid-template-columns: 1fr 1.12fr 1fr; gap: 22px; max-width: 1120px; margin: 0 auto; align-items: center; }
.price-card {
  background: linear-gradient(180deg, #1a140b 0%, #120d06 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.price-card-featured {
  border-color: var(--amber-border);
  background: linear-gradient(180deg, #1a1408 0%, #120d06 80%);
  box-shadow: 0 30px 60px -20px rgba(251,191,36,.25);
  transform: translateY(-6px) scale(1.03); z-index: 2;
}
.price-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 6px 14px; border-radius: 999px;
  background: linear-gradient(180deg, #fcc536, #f59e0b);
  color: #1a0f00; font-size: 11px; font-weight: 800; letter-spacing: .08em;
  white-space: nowrap;
}
.price-card h3 { font-size: 22px; font-weight: 700; }
.price-sub { color: var(--text-dim); font-size: 14px; margin-top: 6px; }
.price-amount { font-size: 22px; font-weight: 600; color: #cfc6b1; margin-top: 22px; }
.price-amount strong { font-size: 38px; color: white; font-weight: 800; margin-left: 4px; }
.price-amount.accent-amber strong { color: var(--amber); }
.price-note { font-size: 13px; margin-top: 6px; font-weight: 600; }
.price-list { margin: 22px 0 24px; display: flex; flex-direction: column; gap: 12px; }
.price-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #ddd4bf; }

.pricing-note {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  margin-top: 40px;
  padding: 16px 24px;
  background: var(--green-soft);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.pricing-note .shield {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: rgba(34,197,94,.18); color: #4ade80;
  display: grid; place-items: center;
}
.pricing-note strong { display: block; color: #c8f5d4; font-size: 14.5px; }
.pricing-note span { color: #9fd4a8; font-size: 12.5px; margin-top: 2px; }

/* =================== INSURERS =================== */
.insurers-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; max-width: 880px; margin: 0 auto; }
.insurer {
  padding: 12px 22px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 700; color: white;
  border: 1px solid var(--border-2);
}
.chip-visa { background: linear-gradient(135deg, #1a1f71 0%, #2a3290 100%); }
.chip-mc { background: linear-gradient(135deg, #845a17 0%, #b8822b 100%); }
.chip-amex { background: linear-gradient(135deg, #2e77bb 0%, #1c5589 100%); }
.chip-axa { background: linear-gradient(135deg, #0a2e88 0%, #1a3fa8 100%); }
.chip-allianz { background: linear-gradient(135deg, #003781 0%, #0058b7 100%); }
.chip-maif { background: linear-gradient(135deg, #144d3a 0%, #1f6a4f 100%); }
.chip-macif { background: linear-gradient(135deg, #007a3d 0%, #00a050 100%); }
.chip-covea { background: linear-gradient(135deg, #931c1c 0%, #b62828 100%); }
.chip-groupama { background: linear-gradient(135deg, #00633a 0%, #008a52 100%); }
.chip-matmut { background: linear-gradient(135deg, #1a3a8a 0%, #2654b8 100%); }

/* =================== FAQ =================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: linear-gradient(180deg, #1a140b 0%, #120d06 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 18px 22px;
  cursor: pointer; font-weight: 700; font-size: 15px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .caret {
  font-size: 22px; color: var(--text-dim);
  transition: transform .2s ease;
}
.faq-item[open] .caret { transform: rotate(90deg); color: var(--blue-2); }
.faq-item p { padding: 0 22px 20px; color: var(--text-dim); font-size: 14.5px; }
.faq-item:hover { border-color: var(--border-2); }

/* =================== CONTACT =================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1100px; margin: 0 auto; }
.contact-form-card {
  background: linear-gradient(180deg, #1a140b 0%, #120d06 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-form-card h3 { font-size: 22px; font-weight: 700; }
.contact-cta-call {
  display: flex; align-items: center; gap: 14px;
  margin-top: 20px;
  padding: 18px 20px;
  background: rgba(34,197,94,.08);
  border: 1.5px solid var(--green-border);
  border-radius: 14px;
  color: white;
}
.contact-cta-call:hover { color: white; background: rgba(34,197,94,.12); }
.cta-icon-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(180deg, #1fbc54 0%, #16a34a 100%);
  display: grid; place-items: center; color: white;
  flex-shrink: 0;
}
.contact-cta-call > span:nth-child(2) { flex: 1; display: flex; flex-direction: column; line-height: 1.2; }
.contact-cta-call small { font-size: 10.5px; font-weight: 800; letter-spacing: .12em; }
.contact-cta-call strong { font-size: 22px; font-weight: 800; letter-spacing: -.01em; margin-top: 4px; }
.contact-cta-call .arrow { color: var(--green); font-size: 18px; }

.contact-divider {
  display: flex; align-items: center; gap: 14px;
  margin: 24px 0 16px; color: var(--text-mute); font-size: 13px;
}
.contact-divider::before, .contact-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--border);
}

.callback-form { display: flex; flex-direction: column; gap: 12px; }
.callback-form input {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 14.5px;
  outline: none;
  transition: border-color .15s ease;
}
.callback-form input::placeholder { color: var(--text-mute); }
.callback-form input:focus { border-color: var(--blue); }
.form-note { font-size: 12px; color: var(--text-mute); text-align: center; }
.callback-msg {
  padding: 12px 14px; border-radius: 10px;
  font-size: 13.5px; font-weight: 500; text-align: center;
}
.callback-msg--success {
  background: var(--green-soft); color: #67e58d;
  border: 1px solid var(--green-border);
}
.callback-msg--error {
  background: var(--red-soft); color: #ffb1b1;
  border: 1px solid var(--red-border);
}

.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-row {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(180deg, #1a140b 0%, #120d06 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  color: var(--text);
}
a.contact-row:hover { border-color: var(--border-2); color: var(--text); }
.contact-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--blue-soft); border: 1px solid var(--blue-border);
  color: var(--blue-2);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-icon.snap { background: var(--amber-soft); border-color: var(--amber-border); color: var(--amber); }
.contact-body { display: flex; flex-direction: column; flex: 1; line-height: 1.3; }
.contact-body small { color: var(--text-dim); font-size: 12.5px; }
.contact-body strong { font-size: 16px; font-weight: 700; margin-top: 2px; }
.contact-body em { color: var(--text-mute); font-style: normal; font-size: 12px; margin-top: 4px; }
.contact-row .arrow { color: var(--text-mute); font-size: 18px; }

/* =================== WHY US =================== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--border);
}
.why-photo-img {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 30% at 50% 30%, rgba(255,200,140,.18), transparent 60%),
    linear-gradient(180deg, rgba(34,26,12,.35) 0%, rgba(12,10,5,.55) 100%),
    url('assets/img/chrono-serrurier-pro.webp') center/cover no-repeat;
  display: grid; place-items: end center;
  padding: 32px;
}
.placeholder-label {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-mute);
  background: rgba(0,0,0,.5);
  padding: 6px 12px; border-radius: 6px;
  border: 1px solid var(--border);
  letter-spacing: .02em;
}
.why-photo-img::before {
  /* abstract pegboard background w/ keys */
  content: ""; position: absolute; right: 0; top: 0; width: 50%; height: 100%;
  background-image:
    radial-gradient(circle 4px at 20% 15%, rgba(190,165,115,.4), transparent 60%),
    radial-gradient(circle 3px at 35% 25%, rgba(190,165,115,.35), transparent 60%),
    radial-gradient(circle 4px at 55% 18%, rgba(190,165,115,.4), transparent 60%),
    radial-gradient(circle 3px at 75% 28%, rgba(190,165,115,.3), transparent 60%),
    radial-gradient(circle 4px at 20% 45%, rgba(190,165,115,.35), transparent 60%),
    radial-gradient(circle 4px at 50% 50%, rgba(190,165,115,.4), transparent 60%),
    radial-gradient(circle 3px at 80% 55%, rgba(190,165,115,.3), transparent 60%),
    radial-gradient(circle 4px at 30% 75%, rgba(190,165,115,.35), transparent 60%),
    radial-gradient(circle 4px at 65% 80%, rgba(190,165,115,.4), transparent 60%);
}
.why-photo-img::after {
  /* portrait silhouette */
  content: ""; position: absolute; left: 12%; bottom: 0; width: 56%; height: 78%;
  /* background: linear-gradient(180deg, #1f2540 0%, #0a0e1c 100%); */
  border-radius: 40% 40% 0 0;
  /* box-shadow: 0 0 40px rgba(0,0,0,.5); */
}
.why-badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: linear-gradient(180deg, #fcc536, #f59e0b);
  color: #1a0f00; font-weight: 800; font-size: 12px;
  padding: 6px 12px; border-radius: 999px;
  box-shadow: var(--shadow-glow-amber);
}
.why-photo-rating {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,.6); backdrop-filter: blur(8px);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px;
  border: 1px solid var(--border);
}
.why-photo-rating strong { font-weight: 800; }
.why-photo-rating small { color: var(--text-dim); }

.why-copy .section-title { font-size: clamp(32px, 3.6vw, 46px); }
.why-copy > p { color: var(--text-dim); margin: 18px 0 28px; font-size: 15.5px; }
.why-copy > p strong { color: var(--text); }
.why-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.why-features li {
  display: flex; gap: 14px; align-items: flex-start;
  background: linear-gradient(180deg, #1a140b 0%, #120d06 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.why-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center;
}
.why-icon-blue { background: var(--blue-soft); border: 1px solid var(--blue-border); color: var(--blue-2); }
.why-icon-green { background: var(--green-soft); border: 1px solid var(--green-border); color: var(--green); }
.why-icon-amber { background: var(--amber-soft); border: 1px solid var(--amber-border); color: var(--amber); }
.why-icon-purple { background: rgba(167,139,250,.14); border: 1px solid rgba(167,139,250,.32); color: #a78bfa; }
.why-features strong { display: block; font-size: 15px; font-weight: 700; }
.why-features small { color: var(--text-dim); font-size: 13px; display: block; margin-top: 4px; }

/* =================== FINAL CTA =================== */
.final-cta {
  background: linear-gradient(180deg, #181206 0%, #1e1608 100%);
  padding: 96px 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(224,168,46,.08), transparent 70%);
  pointer-events: none;
}
.final-cta-inner { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.final-title {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800; letter-spacing: -.03em;
}
.final-sub { color: var(--text-dim); font-size: 16px; }
.final-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.cta-call-green-sm { padding: 12px 18px; }
.cta-call-green-sm .cta-call-number { font-size: 22px; }

/* =================== FOOTER =================== */
.site-footer {
  background: #080603;
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.logo-footer { margin-bottom: 18px; }
.logo-footer .logo-mark { width: 32px; height: 32px; border-radius: 10px; }
.logo-footer strong { font-size: 16px; }
.footer-blurb { color: var(--text-dim); font-size: 13.5px; line-height: 1.6; }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { color: var(--text-dim); font-size: 13.5px; }
.footer-col ul li a { color: var(--text-dim); }
.footer-col ul li a:hover { color: var(--text); }
.footer-contact li { display: flex; align-items: center; gap: 8px; }
.footer-contact li span { width: 18px; opacity: .7; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
  color: var(--text-mute); font-size: 12.5px;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1100px) {
  .services-grid, .pricing-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .price-card-featured { transform: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
  .stat { padding: 0; }
  .stat + .stat { border-left: none; }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .insurance-grid, .contact-grid, .why-grid, .reviews-grid { grid-template-columns: 1fr; gap: 32px; }
  .insurance-visual { aspect-ratio: 16/8; }
  .why-photo { width: 100%; max-width: 480px; margin: 0 auto; aspect-ratio: 4/3; }
  .why-photo-img { background-position: center, center, 50% 16%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-primary { display: none; }
  .header-actions .pill-live { display: none; }
}

@media (max-width: 700px) {
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .section-tight { padding: 48px 0; }
  .section-head { margin-bottom: 36px; }

  .hero { min-height: 0; padding-bottom: 48px; }
  .hero-inner { padding-top: 56px; }
  .hero-title { font-size: 35px; }
  .hero-bullets { grid-template-columns: 1fr 1fr; gap: 8px 14px; }
  .cta-call-number { font-size: 22px; }
  .cta-call-status { display: none; }
  .hero-copy .cta-call-green { align-self: center; }
  .insurance-copy .btn-amber { align-self: center; margin: 0 auto; display : flex; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .stat { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0; }
  .stat-icon { margin-bottom: 10px; }
  .stat-value { font-size: 34px; }

  .process-grid { grid-template-columns: 1fr; }
  .service-card { flex-direction: column; }
  .service-img { width: auto; align-self: auto; aspect-ratio: 16/10; }
  .zones-grid { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }

  .insurance-visual {
    aspect-ratio: unset;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
  .insurance-stats { max-width: none; margin-top: 0; width: 100%; }
  .i-badge { position: static; align-self: flex-start; box-shadow: none; }
  .insurers-row { gap: 8px; }
  .insurer { font-size: 12.5px; padding: 8px 14px; }

  .contact-form-card { padding: 22px; }
  .contact-cta-call strong { font-size: 18px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .header-inner { gap: 12px; }
  .logo { gap: 9px; }
  .logo-mark { width: 34px; height: 34px; border-radius: 10px; }
  .logo-name { font-size: 14px; }
  .header-actions .btn-call-blue { padding: 8px 11px; font-size: 12.5px; gap: 6px; white-space: nowrap; }
  .header-actions .btn-call-blue svg { width: 14px; height: 14px; }
  .logo-tag { display: none; }

  .scroll-cue { display: none; }

  .brands-warn {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
}

@media (max-width: 380px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .zones-grid { grid-template-columns: 1fr; }
  .hero-bullets { grid-template-columns: 1fr; }
}

/* =================== ENHANCEMENTS & ANIMATIONS =================== */

/* Barre de progression de lecture */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, #c2871a, #f2c14e);
  box-shadow: 0 0 12px rgba(224,168,46,.6);
  z-index: 100; pointer-events: none;
  transition: width .1s linear;
}

/* Apparition au défilement (activée uniquement si JS présent) */
html.js .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .75s cubic-bezier(.22,.61,.36,1),
              transform .75s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
html.js .reveal.in { opacity: 1; transform: none; }

/* En-tête qui se compacte au défilement */
.site-header { transition: background .3s ease, box-shadow .3s ease, border-color .3s ease; }
.site-header.scrolled {
  background: rgba(12,10,5,.85);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.8);
  border-bottom-color: var(--blue-border);
}
.site-header.scrolled .header-inner {
  padding-top: 9px !important; padding-bottom: 9px !important;
  transition: padding .3s ease;
}
.header-inner { transition: padding .3s ease; }

/* Soulignement animé des liens de navigation */
.nav-primary a { position: relative; }
.nav-primary a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, #c2871a, #f2c14e);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
}
.nav-primary a:hover::after { transform: scaleX(1); }

/* Reflet lumineux qui balaie les boutons principaux */
.btn-amber, .btn-primary, .btn-call-blue,
.cta-call-green, .btn-green-lg, .btn-block.btn-ghost {
  position: relative; overflow: hidden;
}
.btn-amber::after, .btn-primary::after, .btn-call-blue::after,
.cta-call-green::after, .btn-green-lg::after, .btn-block.btn-ghost::after {
  content: ""; position: absolute; top: 0; left: -130%;
  width: 55%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-18deg); pointer-events: none;
  transition: left .7s ease;
}
.btn-amber:hover::after, .btn-primary:hover::after, .btn-call-blue:hover::after,
.cta-call-green:hover::after, .btn-green-lg:hover::after, .btn-block.btn-ghost:hover::after {
  left: 150%;
}

/* Chiffres clés en dégradé doré */
.stat-value {
  background: linear-gradient(180deg, #f6cf6a 0%, #c2871a 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.stat-icon { transition: transform .3s ease, box-shadow .3s ease; }
.stat:hover .stat-icon {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 22px -10px rgba(224,168,46,.6);
}

/* Titre du hero — accent en dégradé doré */
.hero-title .accent-blue {
  background: linear-gradient(180deg, #f6cf6a 0%, #d99a23 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* Cartes services — liseré doré + halo au survol */
.service-card { position: relative; transition: transform .25s ease, border-color .25s ease, box-shadow .3s ease; }
.service-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #c2871a, #f2c14e);
  transform: scaleX(0); transform-origin: center;
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
.service-card:hover {
  border-color: var(--blue-border);
  box-shadow: 0 26px 50px -28px rgba(224,168,46,.55);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card .service-photo { transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.service-card:hover .service-photo { transform: scale(1.06); }

/* Cartes tarifs, avis, zones, marques — survol plus vivant */
.price-card, .review-card, .zone-card, .brand-tile, .insurer {
  transition: transform .25s ease, border-color .25s ease, box-shadow .3s ease;
}
.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-border);
  box-shadow: 0 26px 50px -28px rgba(224,168,46,.45);
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-border);
  box-shadow: 0 22px 44px -28px rgba(224,168,46,.4);
}
.zone-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-border);
  box-shadow: 0 18px 36px -24px rgba(224,168,46,.5);
}
.brand-tile:hover, .insurer:hover {
  transform: translateY(-3px);
  border-color: var(--blue-border);
}

/* Animations d'ambiance (désactivées si l'utilisateur préfère moins de mouvement) */
@media (prefers-reduced-motion: no-preference) {
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: none; }
  }
  @keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-7px); }
  }
  @keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(224,168,46,0); }
    50%      { box-shadow: 0 0 26px 2px rgba(224,168,46,.45); }
  }

  /* Entrée échelonnée du contenu du hero */
  .hero-copy > * { animation: fadeUp .8s cubic-bezier(.22,.61,.36,1) both; }
  .hero-copy > *:nth-child(1) { animation-delay: .05s; }
  .hero-copy > *:nth-child(2) { animation-delay: .15s; }
  .hero-copy > *:nth-child(3) { animation-delay: .25s; }
  .hero-copy > *:nth-child(4) { animation-delay: .35s; }
  .hero-copy > *:nth-child(5) { animation-delay: .45s; }
  .hero-copy > *:nth-child(6) { animation-delay: .55s; }
  .hero-copy > *:nth-child(7) { animation-delay: .65s; }

  /* Badges flottants */
  .i-badge, .why-badge { animation: floaty 4.5s ease-in-out infinite; }
  .why-badge { animation-duration: 5.2s; }

  /* Pastille de l'offre tarif la plus demandée */
  .price-card-featured { animation: glowPulse 3.4s ease-in-out infinite; }
}
