/*
  Pneus Rochelais 17 — Ultra Premium CSS v2.0
  ADN: sombre / rouge performance / premium automobile / local sérieux
  ─────────────────────────────────────────────────────────── */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg-dark:        #0A0C10;
  --bg-card:        #12151B;
  --bg-lighter:     #1A1F2B;
  --bg-glass:       rgba(18, 21, 27, 0.75);
  --accent:         #E53935;
  --accent-hover:   #C62828;
  --accent-glow:    rgba(229,57,53,0.25);
  --accent-subtle:  rgba(229,57,53,0.08);
  --whatsapp:       #25D366;
  --whatsapp-hover: #1DA851;
  --gold:           #F5A623;
  --text-main:      #F0F2F5;
  --text-muted:     #8A90A0;
  --text-dim:       #4A5060;
  --border:         rgba(255,255,255,0.07);
  --border-accent:  rgba(229,57,53,0.3);
  --border-hover:   rgba(255,255,255,0.15);
  --radius-sm:      6px;
  --radius:         12px;
  --radius-lg:      20px;
  --font-heading:   'Outfit', sans-serif;
  --font-body:      'Inter', sans-serif;
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --t:              all 0.3s var(--ease-out);
  --shadow-card:    0 4px 24px rgba(0,0,0,0.5);
  --shadow-glow:    0 0 30px var(--accent-glow);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family:var(--font-heading); font-weight:700; line-height:1.15; }
a { text-decoration:none; color:inherit; transition:var(--t); }
img { max-width:100%; display:block; }
ul { list-style:none; }
button { font-family:var(--font-body); cursor:pointer; }

/* ─── UTILITIES ──────────────────────────────────────────── */
.container { max-width:1200px; margin:0 auto; padding:0 5%; }
.accent { color:var(--accent); }
.text-muted { color:var(--text-muted); }

.text-gradient {
  background: linear-gradient(125deg, #fff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display:inline-block;
}

.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes pulse-red {
  0%   { box-shadow: 0 0 0 0 var(--accent-glow); }
  70%  { box-shadow: 0 0 0 12px rgba(229,57,53,0); }
  100% { box-shadow: 0 0 0 0 rgba(229,57,53,0); }
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
@keyframes wave {
  0%   { transform:scaleY(0.4); opacity:0.5; }
  100% { transform:scaleY(1);   opacity:1;   }
}
@keyframes float {
  0%,100% { transform:translateY(0); }
  50%     { transform:translateY(-8px); }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes spin-slow {
  from { transform:rotate(0deg); }
  to   { transform:rotate(360deg); }
}
@keyframes shimmer {
  0%   { background-position:-200% 0; }
  100% { background-position:200% 0; }
}

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--bg-dark); }
::-webkit-scrollbar-thumb { background:var(--bg-lighter); border-radius:3px; }
::-webkit-scrollbar-thumb:hover { background:var(--accent); }

/* ─── BADGE ──────────────────────────────────────────────── */
.badge {
  display:inline-flex; align-items:center; gap:0.5rem;
  padding:0.35rem 1rem;
  background:var(--accent-subtle);
  border:1px solid var(--border-accent);
  color:var(--accent);
  border-radius:30px;
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:1.5rem;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:0.7rem;
  padding:0.9rem 1.8rem;
  border-radius:var(--radius-sm);
  font-size:0.9rem;
  font-weight:700;
  font-family:var(--font-heading);
  letter-spacing:0.8px;
  text-transform:uppercase;
  border:none;
  cursor:pointer;
  transition:var(--t);
  position:relative;
  overflow:hidden;
  white-space:nowrap;
}
.btn::after {
  content:'';
  position:absolute; inset:0;
  background:rgba(255,255,255,0);
  transition:background 0.2s;
}
.btn:hover::after { background:rgba(255,255,255,0.06); }

.btn-primary {
  background:var(--accent);
  color:#fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  background:var(--accent-hover);
  transform:translateY(-2px);
  box-shadow: 0 8px 28px rgba(229,57,53,0.45);
}
.btn-whatsapp {
  background:var(--whatsapp);
  color:#fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.2);
}
.btn-whatsapp:hover {
  background:var(--whatsapp-hover);
  transform:translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
}
.btn-outline {
  background:transparent;
  border:1.5px solid var(--border-hover);
  color:var(--text-main);
}
.btn-outline:hover {
  border-color:var(--accent);
  color:var(--accent);
  transform:translateY(-2px);
}
.btn-outline-white {
  background:transparent;
  border:1.5px solid rgba(255,255,255,0.3);
  color:#fff;
}
.btn-outline-white:hover {
  background:#fff;
  color:var(--bg-dark);
  border-color:#fff;
  transform:translateY(-2px);
}
.btn-sm { padding:0.6rem 1.2rem; font-size:0.82rem; }
.pulse-btn { animation:pulse-red 2.2s infinite; }

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position:fixed; top:0; width:100%; z-index:200;
  padding:1.1rem 0;
  transition:var(--t);
  border-bottom:1px solid transparent;
}
.navbar.scrolled {
  background:rgba(10,12,16,0.92);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
  padding:0.8rem 0;
  box-shadow:0 4px 30px rgba(0,0,0,0.5);
}
.nav-content { display:flex; justify-content:space-between; align-items:center; }
.logo { display:flex; align-items:center; gap:10px; }
.logo img { height:50px !important; max-height:50px; max-width:200px; width:auto; object-fit:contain; transition:var(--t); display:block; }
.logo:hover img { filter:brightness(1.1); }
.logo-text {
  font-family:var(--font-heading); font-size:1.4rem;
  font-weight:800; letter-spacing:1px;
}
.nav-links { display:flex; align-items:center; gap:2rem; }
.nav-links a {
  font-weight:500; font-size:0.9rem;
  color:var(--text-muted); letter-spacing:0.3px;
  padding-bottom:2px;
  border-bottom:2px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color:#fff; border-bottom-color:var(--accent); }
.nav-btn-outline {
  border:1px solid var(--border);
  padding:0.45rem 1.1rem;
  border-radius:var(--radius-sm);
  border-bottom:1px solid var(--border) !important;
}
.nav-btn-outline:hover { border-color:var(--accent) !important; color:var(--accent) !important; }
.mobile-toggle {
  display:none; background:none; border:none;
  color:#fff; font-size:1.4rem;
}
.mobile-nav-overlay {
  position:fixed; top:0; right:-100%; width:100%; height:100vh;
  background:var(--bg-card); z-index:999;
  display:flex; flex-direction:column;
  justify-content:center; align-items:center; gap:2rem;
  transition:right 0.4s var(--ease-out);
}
.mobile-nav-overlay.active { right:0; }
.mobile-nav-overlay a { font-size:1.6rem; font-family:var(--font-heading); font-weight:600; }
.mobile-nav-overlay a:hover { color:var(--accent); }
.close-mobile {
  position:absolute; top:2rem; right:2rem;
  background:none; border:none; color:#fff; font-size:2rem;
}

/* ─── PAGE HEADER (sub pages) ────────────────────────────── */
.page-header {
  padding:160px 0 80px;
  background: linear-gradient(180deg, var(--bg-lighter) 0%, var(--bg-dark) 100%);
  text-align:center;
  position:relative;
  overflow:hidden;
}
.page-header::before {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--accent-glow) 0%, transparent 70%);
}
.page-header .container { position:relative; z-index:1; }
.page-header h1 { font-size:3rem; margin-bottom:1rem; }
.page-header p { color:var(--text-muted); font-size:1.1rem; max-width:560px; margin:0 auto; }

/* ─── SECTION COMMONS ────────────────────────────────────── */
section { padding:100px 0; }
.section-header { text-align:center; max-width:680px; margin:0 auto 4rem; }
.section-header h2 { font-size:2.4rem; margin-bottom:1rem; }
.section-header p { color:var(--text-muted); font-size:1.05rem; }
.section-label {
  display:block; font-size:0.75rem; font-weight:700;
  letter-spacing:2px; text-transform:uppercase;
  color:var(--accent); margin-bottom:0.8rem;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position:relative; min-height:100vh;
  display:flex; align-items:center;
  padding:140px 0 100px;
  overflow:hidden;
}
.hero-bg {
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 40%, rgba(229,57,53,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(229,57,53,0.06) 0%, transparent 60%),
    var(--bg-dark);
  z-index:0;
}
/* Grid lines */
.hero-bg::before {
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size:60px 60px;
}
/* Decorative tire ring */
.hero-bg::after {
  content:'';
  position:absolute; right:-8%; top:50%;
  transform:translateY(-50%);
  width:580px; height:580px;
  border-radius:50%;
  border:80px solid rgba(229,57,53,0.06);
  box-shadow:
    inset 0 0 60px rgba(229,57,53,0.08),
    0 0 80px rgba(229,57,53,0.05);
  animation:float 8s ease-in-out infinite;
}
.hero-content { display:flex; align-items:center; position:relative; z-index:1; width:100%; }
.hero-text-box { max-width:640px; animation:fadeUp 0.9s var(--ease-out) both; }
.hero h1 { font-size:4.2rem; line-height:1.08; margin-bottom:1.5rem; }
.hero-subtitle { font-size:1.15rem; color:var(--text-muted); margin-bottom:2.5rem; max-width:520px; line-height:1.7; }
.hero-ctas { display:flex; gap:1rem; margin-bottom:3rem; flex-wrap:wrap; }
.trust-indicators { display:flex; gap:2rem; color:var(--text-muted); font-size:0.88rem; flex-wrap:wrap; }
.trust-indicators span { display:flex; align-items:center; gap:0.5rem; }
.trust-indicators i { color:var(--accent); }

/* ─── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  background:var(--bg-card);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:0;
}
.stats-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
}
.stat-item {
  padding:2.5rem 2rem; text-align:center;
  border-right:1px solid var(--border);
  transition:var(--t);
}
.stat-item:last-child { border-right:none; }
.stat-item:hover { background:rgba(229,57,53,0.04); }
.stat-number {
  font-size:2.5rem; font-weight:800;
  font-family:var(--font-heading);
  color:var(--accent); line-height:1;
  margin-bottom:0.3rem;
}
.stat-label { font-size:0.85rem; color:var(--text-muted); font-weight:500; }

/* ─── SERVICES ───────────────────────────────────────────── */
.services { background:var(--bg-dark); }
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:1.5rem; }
.service-card {
  background:var(--bg-card);
  border:1px solid var(--border);
  padding:2.5rem 2rem;
  border-radius:var(--radius);
  transition:var(--t);
  position:relative; overflow:hidden;
}
.service-card::before {
  content:'';
  position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity:0; transition:var(--t);
}
.service-card:hover {
  transform:translateY(-6px);
  border-color:var(--border-accent);
  box-shadow:0 16px 40px rgba(0,0,0,0.6), var(--shadow-glow);
}
.service-card:hover::before { opacity:1; }
.service-icon { font-size:2rem; color:var(--accent); margin-bottom:1.5rem; }
.service-card h3 { font-size:1.2rem; margin-bottom:0.75rem; }
.service-card p { color:var(--text-muted); font-size:0.92rem; line-height:1.7; }
.service-tag {
  display:inline-block; margin-top:1rem;
  padding:0.2rem 0.7rem;
  background:var(--accent-subtle); border-radius:20px;
  font-size:0.75rem; font-weight:600; color:var(--accent);
}

/* ─── SOPHIE ─────────────────────────────────────────────── */
.sophie-section { background:linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-lighter) 100%); }
.sophie-content {
  display:grid; grid-template-columns:1fr 1fr;
  gap:5rem; align-items:center;
}
.sophie-subtitle {
  font-family:var(--font-body); font-weight:500;
  color:rgba(255,255,255,0.9); font-size:1.15rem;
  margin-top:0.8rem; margin-bottom:1.5rem;
}
.sophie-text p { color:var(--text-muted); margin-bottom:1rem; font-size:1.02rem; line-height:1.75; }
.sophie-features { margin:2rem 0; display:flex; flex-direction:column; gap:0.9rem; }
.sophie-features li {
  display:flex; align-items:center; gap:1rem;
  font-weight:500; font-size:0.95rem;
}
.sophie-features i {
  color:var(--accent);
  background:var(--accent-subtle);
  width:36px; height:36px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.sophie-cta { margin-top:2rem; }
.ai-card {
  background:var(--bg-glass);
  backdrop-filter:blur(20px);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:2.5rem;
  text-align:center;
  box-shadow:0 24px 60px rgba(0,0,0,0.5);
  position:relative;
}
.ai-avatar {
  width:76px; height:76px;
  background:linear-gradient(135deg, var(--accent) 0%, #ff6b6b 100%);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.8rem; color:#fff;
  margin:0 auto 1.2rem;
  box-shadow:0 12px 30px rgba(229,57,53,0.4);
  animation:float 4s ease-in-out infinite;
}
.ai-status {
  position:absolute; top:1.2rem; right:1.2rem;
  background:rgba(37,211,102,0.12);
  color:var(--whatsapp);
  padding:0.3rem 0.8rem;
  border-radius:20px;
  font-size:0.75rem; font-weight:600;
  display:flex; align-items:center; gap:0.4rem;
  border:1px solid rgba(37,211,102,0.2);
}
.status-dot {
  width:7px; height:7px;
  background:var(--whatsapp); border-radius:50%;
  animation:blink 1.5s infinite;
}
.ai-waveform {
  display:flex; align-items:center; justify-content:center;
  gap:5px; height:36px; margin:1.5rem 0;
}
.ai-waveform .bar {
  width:4px; background:var(--accent); border-radius:2px;
  animation:wave 0.8s infinite alternate ease-in-out;
}
.ai-waveform .bar:nth-child(1){height:10px;animation-delay:0s}
.ai-waveform .bar:nth-child(2){height:22px;animation-delay:0.1s}
.ai-waveform .bar:nth-child(3){height:34px;animation-delay:0.2s}
.ai-waveform .bar:nth-child(4){height:18px;animation-delay:0.3s}
.ai-waveform .bar:nth-child(5){height:28px;animation-delay:0.4s}
.ai-quote {
  font-style:italic; font-size:1rem;
  color:var(--text-muted); line-height:1.6;
  padding:1rem; border-radius:var(--radius-sm);
  background:rgba(255,255,255,0.03);
  border-left:2px solid var(--accent);
  text-align:left; margin-top:1rem;
}

/* ─── PARCOURS / TIMELINE ────────────────────────────────── */
.parcours { background:var(--bg-dark); }
.timeline {
  display:flex; flex-direction:column;
  max-width:760px; margin:0 auto;
  position:relative;
}
.timeline::before {
  content:'';
  position:absolute; left:24px; top:0; bottom:0;
  width:1px;
  background:linear-gradient(180deg, var(--accent) 0%, var(--border) 100%);
}
.step { display:flex; gap:2rem; margin-bottom:2.5rem; position:relative; }
.step:last-child { margin-bottom:0; }
.step-number {
  width:50px; height:50px; flex-shrink:0;
  background:var(--bg-card);
  border:2px solid var(--accent);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-family:var(--font-heading);
  color:var(--accent); font-size:0.9rem;
  z-index:2; position:relative;
  box-shadow:0 0 0 4px var(--bg-dark), 0 0 20px var(--accent-glow);
}
.step-content {
  background:var(--bg-card);
  border:1px solid var(--border);
  padding:1.75rem 2rem;
  border-radius:var(--radius);
  width:100%;
  transition:var(--t);
}
.step-content:hover { border-color:var(--border-accent); }
.step-content h3 { font-size:1.2rem; margin-bottom:0.5rem; }
.step-content p { color:var(--text-muted); font-size:0.93rem; }

/* ─── TRUST ──────────────────────────────────────────────── */
.trust { background:var(--bg-lighter); }
.trust-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }

/* Premium trust visual — replace with real garage photo once available */
.trust-visual {
  width:100%; height:460px;
  background: linear-gradient(135deg, #0d1117 0%, #16202e 50%, #1a0a0d 100%);
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.trust-visual::before {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse 60% 60% at 70% 70%, rgba(229,57,53,0.12) 0%, transparent 70%);
}
.trust-visual::after {
  content:'';
  position:absolute; bottom:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity:0.4;
}
.trust-visual-inner {
  position:relative; z-index:1;
  text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:1rem;
}
.trust-visual-inner i {
  font-size:4.5rem;
  color:var(--accent); opacity:0.8;
  filter:drop-shadow(0 0 24px rgba(229,57,53,0.4));
}
.trust-visual-inner p {
  font-family:var(--font-heading); font-weight:700;
  font-size:1.1rem; color:var(--text-main); margin:0;
}
.trust-visual-sub {
  font-size:0.82rem !important; color:var(--text-muted) !important;
  font-weight:400 !important;
}

.trust-content h2 { font-size:2.1rem; margin-bottom:1.5rem; }
.trust-content > p { color:var(--text-muted); font-size:1.02rem; margin-bottom:2.5rem; line-height:1.75; }
.trust-points { display:flex; flex-direction:column; gap:1.5rem; }
.trust-item { display:flex; gap:1.5rem; align-items:flex-start; }
.trust-item i { font-size:1.6rem; color:var(--accent); margin-top:4px; flex-shrink:0; }
.trust-item h4 { font-size:1.05rem; margin-bottom:0.3rem; }
.trust-item p { color:var(--text-muted); font-size:0.9rem; }

/* ─── REVIEWS READY ──────────────────────────────────────── */
.reviews-ready {
  background:var(--bg-dark);
  text-align:center;
  padding:80px 0;
}
.reviews-placeholder {
  max-width:480px; margin:0 auto;
  padding:3rem 2rem;
  background:var(--bg-card);
  border:1px dashed var(--border);
  border-radius:var(--radius-lg);
}
.reviews-placeholder i { font-size:3rem; color:var(--text-dim); margin-bottom:1.5rem; }
.reviews-placeholder h3 { font-size:1.1rem; margin-bottom:0.5rem; }
.reviews-placeholder p { color:var(--text-muted); font-size:0.9rem; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background:#06080B;
  padding:80px 0 30px;
  border-top:1px solid var(--border);
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  gap:3rem; margin-bottom:4rem;
}
.footer-brand img { height:40px; margin-bottom:1rem; filter:brightness(0) invert(1); opacity:0.85; }
.footer-desc { color:var(--text-muted); font-size:0.9rem; line-height:1.7; }
.footer-grid h3 { font-size:0.85rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--text-dim); margin-bottom:1.5rem; }
.footer-grid ul li { color:var(--text-muted); margin-bottom:0.8rem; font-size:0.9rem; display:flex; align-items:flex-start; gap:0.6rem; }
.footer-grid ul li i { color:var(--accent); margin-top:3px; flex-shrink:0; width:14px; }
.footer-grid ul a:hover { color:var(--accent); }
.footer-bottom {
  border-top:1px solid var(--border);
  padding-top:2rem;
  display:flex; justify-content:space-between; align-items:center;
  font-size:0.82rem; color:var(--text-dim);
  flex-wrap:wrap; gap:1rem;
}

/* ─── FLOATING CTA ───────────────────────────────────────── */
.floating-contact {
  position:fixed; bottom:2rem; right:2rem;
  display:flex; flex-direction:column; gap:0.75rem;
  z-index:150;
}
.f-btn {
  display:flex; align-items:center; gap:0.6rem;
  padding:0.7rem 1.2rem;
  border-radius:50px;
  font-size:0.85rem; font-weight:700;
  color:#fff;
  box-shadow:0 4px 20px rgba(0,0,0,0.5);
  transition:var(--t);
}
.f-btn:hover { transform:translateY(-3px) scale(1.03); }
.f-btn.whatsapp { background:var(--whatsapp); }
.f-btn.whatsapp:hover { background:var(--whatsapp-hover); box-shadow:0 8px 24px rgba(37,211,102,0.4); }
.f-btn.call { background:var(--accent); }
.f-btn.call:hover { background:var(--accent-hover); box-shadow:0 8px 24px var(--accent-glow); }

/* ─── SERVICES PAGE ──────────────────────────────────────── */
.services-detail { background:var(--bg-dark); }
.service-row {
  padding:5rem 0;
  border-bottom:1px solid var(--border);
}
.service-row:last-child { border-bottom:none; }
.service-row.alt { background:var(--bg-lighter); margin:0 -5%; padding:5rem 5%; }
.service-row-content { max-width:760px; margin:0 auto; }
.service-icon-large {
  font-size:3rem; color:var(--accent);
  background:var(--accent-subtle);
  width:80px; height:80px;
  border-radius:var(--radius);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:2rem;
}
.service-row h2 { font-size:2rem; margin-bottom:1rem; }
.service-lead { font-size:1.1rem; color:var(--text-main); margin-bottom:1rem; font-style:italic; }
.service-row p { color:var(--text-muted); margin-bottom:1rem; line-height:1.8; }
.service-benefits { display:flex; flex-wrap:wrap; gap:0.75rem; margin:1.5rem 0; }
.service-benefits li {
  display:flex; align-items:center; gap:0.5rem;
  background:rgba(229,57,53,0.06);
  border:1px solid var(--border-accent);
  padding:0.5rem 1rem; border-radius:30px;
  font-size:0.88rem; font-weight:500;
}
.service-benefits i { color:var(--accent); font-size:0.8rem; }
.service-meta {
  display:flex; flex-wrap:wrap; gap:0.75rem; margin:1.5rem 0;
}
.service-meta-tag {
  display:flex; align-items:center; gap:0.4rem;
  padding:0.3rem 0.8rem;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:20px; font-size:0.8rem; color:var(--text-muted);
}
.service-meta-tag i { color:var(--accent); font-size:0.75rem; }
.mt-4 { margin-top:1.5rem; }

/* ─── PNEUS / FUNNEL ─────────────────────────────────────── */
.funnel-section { background:var(--bg-dark); }
.funnel-hero {
  padding:160px 0 80px;
  text-align:center;
  background:linear-gradient(180deg, var(--bg-lighter) 0%, var(--bg-dark) 100%);
  position:relative; overflow:hidden;
}
.funnel-hero::before {
  content:'';
  position:absolute; inset:0;
  background:radial-gradient(ellipse 80% 60% at 50% -10%, var(--accent-glow),transparent 60%);
}
.funnel-hero .container { position:relative; z-index:1; }
.funnel-hero h1 { font-size:3rem; margin-bottom:1rem; }
.funnel-hero p { color:var(--text-muted); font-size:1.1rem; max-width:540px; margin:0 auto; }

.funnel-steps { background:var(--bg-dark); padding:80px 0; }
.funnel-steps .container { max-width:860px; }
.funnel-card {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:3rem;
  margin-bottom:2rem;
  transition:var(--t);
}
.funnel-card:hover { border-color:var(--border-accent); }
.funnel-step-id {
  display:inline-flex; align-items:center; gap:0.5rem;
  font-size:0.75rem; font-weight:700; letter-spacing:1.5px;
  text-transform:uppercase; color:var(--accent);
  margin-bottom:1rem;
}
.funnel-card h3 { font-size:1.4rem; margin-bottom:0.5rem; }
.funnel-card p { color:var(--text-muted); margin-bottom:1.5rem; }
.dim-pills { display:flex; flex-wrap:wrap; gap:0.75rem; margin-bottom:1rem; }
.dim-pill {
  padding:0.5rem 1.1rem;
  background:var(--bg-lighter); border:1px solid var(--border);
  border-radius:30px; font-size:0.9rem; font-weight:600;
  cursor:pointer; transition:var(--t);
}
.dim-pill:hover, .dim-pill.active {
  background:var(--accent-subtle);
  border-color:var(--accent); color:var(--accent);
}
.funnel-input {
  width:100%; padding:0.9rem 1.2rem;
  background:var(--bg-lighter); border:1.5px solid var(--border);
  border-radius:var(--radius-sm); color:var(--text-main);
  font-size:1rem; font-family:var(--font-body);
  transition:var(--t); outline:none;
}
.funnel-input:focus { border-color:var(--accent); background:rgba(229,57,53,0.04); }
.funnel-input::placeholder { color:var(--text-dim); }
select.funnel-input option { background: var(--bg-dark); color: #ffffff; }
.funnel-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.season-card {
  padding:1.5rem;
  background:var(--bg-lighter); border:2px solid var(--border);
  border-radius:var(--radius); text-align:center;
  cursor:pointer; transition:var(--t);
}
.season-card:hover, .season-card.active {
  border-color:var(--accent);
  background:var(--accent-subtle);
}
.season-card i { font-size:2rem; color:var(--text-muted); margin-bottom:0.75rem; display:block; }
.season-card.active i, .season-card:hover i { color:var(--accent); }
.season-card span { font-weight:600; font-size:0.9rem; }

.funnel-cta-block {
  background:linear-gradient(135deg, var(--bg-card) 0%, rgba(229,57,53,0.05) 100%);
  border:1px solid var(--border-accent);
  border-radius:var(--radius-lg);
  padding:3rem; text-align:center;
  margin-top:2rem;
}
.funnel-cta-block h3 { font-size:1.6rem; margin-bottom:1rem; }
.funnel-cta-block p { color:var(--text-muted); margin-bottom:2rem; max-width:420px; margin-left:auto; margin-right:auto; }
.funnel-cta-buttons { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* Brands showcase */
.brands-section { background:var(--bg-lighter); padding:60px 0; }
.brands-title { text-align:center; color:var(--text-dim); font-size:0.8rem; letter-spacing:2px; text-transform:uppercase; margin-bottom:2rem; }
.brands-grid { display:flex; flex-wrap:wrap; justify-content:center; gap:1rem; }
.brand-chip {
  padding:0.6rem 1.4rem;
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:30px; font-size:0.9rem; font-weight:600;
  color:var(--text-muted); transition:var(--t);
}
.brand-chip:hover { border-color:var(--border-accent); color:var(--text-main); }

/* tire cats */
.tire-categories { background:var(--bg-dark); }
.categories-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1.5rem; }
.category-card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--radius); padding:2rem;
  text-align:center; transition:var(--t);
}
.category-card:hover { border-color:var(--border-accent); transform:translateY(-4px); }
.category-card i { font-size:2rem; color:var(--accent); display:block; margin-bottom:1rem; }
.category-card h3 { font-size:1.1rem; margin-bottom:0.5rem; }
.category-card p { color:var(--text-muted); font-size:0.87rem; }

/* ─── RENDEZVOUS ─────────────────────────────────────────── */
.rdv-options { background:var(--bg-dark); padding:80px 0; }
.rdv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.rdv-card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:2.5rem 2rem;
  text-align:center; transition:var(--t); position:relative;
}
.rdv-card:hover { transform:translateY(-6px); border-color:var(--border-hover); box-shadow:var(--shadow-card); }
.rdv-card.featured { border-color:var(--accent); background:rgba(229,57,53,0.05); }
.rdv-card.featured::before {
  content:'RECOMMANDÉ';
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:var(--accent); color:#fff;
  padding:0.3rem 1rem; border-radius:20px;
  font-size:0.7rem; font-weight:700; letter-spacing:1px;
}
.rdv-icon { font-size:2.5rem; margin-bottom:1.2rem; }
.rdv-card h3 { font-size:1.2rem; margin-bottom:0.75rem; }
.rdv-card p { color:var(--text-muted); font-size:0.9rem; margin-bottom:1.5rem; line-height:1.7; }
.rdv-card .response-time { color:var(--text-dim); font-size:0.8rem; margin-top:0.75rem; }
.rdv-card .response-time i { color:var(--gold); }

.rdv-form-section { background:var(--bg-lighter); padding:80px 0; }
.form-card {
  max-width:680px; margin:0 auto;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:3rem;
}
.form-card h2 { font-size:1.8rem; margin-bottom:0.5rem; }
.form-card > p { color:var(--text-muted); margin-bottom:2.5rem; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
.form-group { display:flex; flex-direction:column; gap:0.5rem; }
.form-group.full { grid-column:1/-1; }
.form-group label { font-size:0.85rem; font-weight:600; color:var(--text-muted); letter-spacing:0.3px; }
.form-input, .form-select, .form-textarea {
  width:100%; padding:0.85rem 1rem;
  background:var(--bg-lighter); border:1.5px solid var(--border);
  border-radius:var(--radius-sm); color:var(--text-main);
  font-size:0.95rem; font-family:var(--font-body);
  outline:none; transition:var(--t);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color:var(--accent); background:rgba(229,57,53,0.04);
}
.form-input::placeholder, .form-textarea::placeholder { color:var(--text-dim); }
.form-select { cursor:pointer; appearance:none; }
.form-select option { background:var(--bg-card); }
.form-textarea { resize:vertical; min-height:100px; }
.form-note { font-size:0.82rem; color:var(--text-dim); }
.form-note i { color:var(--accent); }

#rdv-success {
  display:none; text-align:center; padding:3rem;
  background:rgba(37,211,102,0.06); border:1px solid rgba(37,211,102,0.2);
  border-radius:var(--radius); margin-top:2rem;
}
#rdv-success i { font-size:3rem; color:var(--whatsapp); margin-bottom:1rem; }
#rdv-success h3 { font-size:1.4rem; margin-bottom:0.5rem; }
#rdv-success p { color:var(--text-muted); }
#rdv-error {
  display:none; padding:1rem 1.5rem;
  background:rgba(229,57,53,0.08); border:1px solid var(--border-accent);
  border-radius:var(--radius-sm); color:var(--accent);
  font-size:0.9rem; margin-top:1rem;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-intro { background:linear-gradient(180deg,var(--bg-lighter) 0%,var(--bg-dark) 100%); }
.faq-section { background:var(--bg-dark); padding:80px 0; }
.faq-inner { max-width:760px; margin:0 auto; }
.faq-group { margin-bottom:3rem; }
.faq-group-title {
  font-size:0.75rem; font-weight:700; letter-spacing:2px;
  text-transform:uppercase; color:var(--accent);
  margin-bottom:1.5rem; padding-bottom:0.75rem;
  border-bottom:1px solid var(--border);
}
.faq-item {
  border-bottom:1px solid var(--border);
}
.faq-q {
  display:flex; justify-content:space-between; align-items:center;
  gap:1rem; padding:1.25rem 0;
  cursor:pointer; transition:var(--t);
}
.faq-q:hover { color:var(--accent); }
.faq-q span { font-size:1rem; font-weight:600; flex:1; }
.faq-q i { color:var(--accent); transition:transform 0.3s; flex-shrink:0; }
.faq-item.open .faq-q i { transform:rotate(45deg); }
.faq-a {
  max-height:0; overflow:hidden;
  transition:max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq-item.open .faq-a { max-height:300px; }
.faq-a p { color:var(--text-muted); font-size:0.95rem; line-height:1.8; padding-bottom:1.25rem; }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-section { background:var(--bg-dark); padding:80px 0; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }
.contact-info-card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:3rem;
}
.contact-info-card h2 { font-size:1.8rem; margin-bottom:0.5rem; }
.contact-info-card > p { color:var(--text-muted); margin-bottom:2.5rem; }
.contact-items { display:flex; flex-direction:column; gap:1.75rem; }
.contact-item { display:flex; gap:1.5rem; align-items:flex-start; }
.contact-item-icon {
  width:46px; height:46px; flex-shrink:0;
  background:var(--accent-subtle); border-radius:var(--radius-sm);
  display:flex; align-items:center; justify-content:center;
  color:var(--accent); font-size:1.1rem;
}
.contact-item h4 { font-size:0.8rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--text-dim); margin-bottom:0.3rem; }
.contact-item p, .contact-item a { color:var(--text-main); font-size:1rem; }
.contact-item a:hover { color:var(--accent); }

.location-card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--radius-lg); overflow:hidden;
}
.location-visual {
  height:280px;
  background:
    linear-gradient(180deg, rgba(10,12,16,0.18) 0%, rgba(10,12,16,0.78) 100%),
    radial-gradient(circle at 20% 20%, rgba(229,57,53,0.22) 0%, transparent 35%),
    linear-gradient(135deg, #202632 0%, #11141a 100%);
  display:flex; align-items:flex-end;
  padding:2rem;
}
.location-overlay h3 { font-size:1.3rem; margin-bottom:0.3rem; }
.location-overlay p { color:var(--text-muted); font-size:0.9rem; }
.hours-block { padding:2rem; }
.hours-block h4 { font-size:0.8rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--text-dim); margin-bottom:1.25rem; }
.hours-row { display:flex; justify-content:space-between; padding:0.6rem 0; border-bottom:1px solid var(--border); font-size:0.9rem; }
.hours-row:last-child { border-bottom:none; }
.hours-row span:last-child { color:var(--text-muted); }
.hours-row.closed span:last-child { color:var(--accent); }

/* ─── 404 ────────────────────────────────────────────────── */
.error-page { min-height:100vh; display:flex; align-items:center; justify-content:center; text-align:center; }
.error-code { font-size:8rem; font-weight:800; color:var(--accent); opacity:0.2; line-height:1; }
.error-page h1 { font-size:2rem; margin:1rem 0; }
.error-page p { color:var(--text-muted); }

/* ─── PRO / ADMIN ────────────────────────────────────────── */
.admin-only { display:none; }
body.pro-mode .admin-only { display:block; }
.pro-bar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(229,57,53,0.95);
  backdrop-filter:blur(10px);
  padding:0.6rem 5%;
  display:flex; justify-content:space-between; align-items:center;
  font-size:0.82rem; font-weight:600;
  box-shadow:0 4px 20px rgba(229,57,53,0.3);
}
.pro-bar i { margin-right:0.4rem; }
.pro-login {
  min-height:100vh; display:flex; align-items:center; justify-content:center;
  background:var(--bg-dark);
}
.pro-login-card {
  width:100%; max-width:420px;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:3rem;
  box-shadow:0 24px 60px rgba(0,0,0,0.6);
}
.pro-dashboard { background:var(--bg-dark); min-height:100vh; padding:100px 0 60px; }
.dash-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; margin-bottom:2.5rem; }
.dash-card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--radius); padding:1.75rem;
  transition:var(--t);
}
.dash-card:hover { border-color:var(--border-accent); }
.dash-card-label { font-size:0.78rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--text-dim); margin-bottom:0.8rem; }
.dash-card-value { font-size:2.2rem; font-weight:800; font-family:var(--font-heading); color:var(--text-main); }
.dash-card-sub { font-size:0.82rem; color:var(--text-dim); margin-top:0.3rem; }
.dash-card.accent-card { border-color:var(--border-accent); background:rgba(229,57,53,0.05); }
.dash-card.accent-card .dash-card-value { color:var(--accent); }
.empty-state {
  text-align:center; padding:4rem 2rem;
  background:var(--bg-card); border:1px dashed var(--border);
  border-radius:var(--radius-lg);
}
.empty-state i { font-size:3rem; color:var(--text-dim); margin-bottom:1.5rem; }
.empty-state h3 { font-size:1.1rem; margin-bottom:0.5rem; }
.empty-state p { color:var(--text-muted); font-size:0.9rem; }
.data-table { width:100%; border-collapse:collapse; }
.data-table th {
  font-size:0.75rem; font-weight:700; letter-spacing:1px;
  text-transform:uppercase; color:var(--text-dim);
  text-align:left; padding:0.75rem 1rem;
  border-bottom:1px solid var(--border);
}
.data-table td {
  padding:1rem; font-size:0.9rem;
  border-bottom:1px solid var(--border);
  color:var(--text-muted);
}
.data-table tr:last-child td { border-bottom:none; }
.data-table tr:hover td { background:rgba(255,255,255,0.02); color:var(--text-main); }
.status-pill {
  display:inline-block; padding:0.2rem 0.7rem;
  border-radius:20px; font-size:0.75rem; font-weight:600;
}
.status-new     { background:rgba(229,57,53,0.1); color:var(--accent); }
.status-done    { background:rgba(37,211,102,0.1); color:var(--whatsapp); }
.status-pending { background:rgba(245,166,35,0.1); color:var(--gold); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns:1fr 1fr; }
  .trust-grid, .contact-grid { grid-template-columns:1fr; gap:3rem; }
  .dash-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-links { display:none; }
  .mobile-toggle { display:block; }

  .hero h1 { font-size:2.6rem; }
  .hero-bg::after { display:none; }
  .hero-ctas { flex-direction:column; }
  .hero-ctas .btn { justify-content:center; }
  .trust-indicators { gap:1rem; }

  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right:none; }
  .stat-item:nth-child(3) { border-right:1px solid var(--border); }

  .sophie-content { grid-template-columns:1fr; gap:3rem; }
  .page-header h1 { font-size:2.2rem; }
  .funnel-grid { grid-template-columns:1fr; }
  .rdv-grid { grid-template-columns:1fr; }
  .form-grid { grid-template-columns:1fr; }
  .form-group.full { grid-column:1; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; }
  .footer-bottom { justify-content:center; text-align:center; }
  .dash-grid { grid-template-columns:1fr 1fr; }
  .floating-contact { bottom:1.5rem; right:1rem; }
  section { padding:70px 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size:2rem; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .stat-item { border-right:none; border-bottom:1px solid var(--border); }
  .dash-grid { grid-template-columns:1fr; }
  .funnel-card { padding:2rem 1.5rem; }
  .form-card { padding:2rem 1.5rem; }
}

/* ─── GLASS / MISC ───────────────────────────────────────── */
.glass-card { background:var(--bg-glass); backdrop-filter:blur(16px); border:1px solid var(--border); border-radius:var(--radius-lg); }
.flex-center { display:flex; align-items:center; justify-content:center; }
.padding-3 { padding:3rem; }
.img-fluid { max-width:100%; height:auto; }

/* Legacy classes kept for main.js compatibility */
.tire-results, .tire-search, .search-box, .tire-results { display:none; }
.pedagogy, .pedagogy-grid, .pedagogy-text, .pedagogy-image { /* merged into funnel */ }
.tire-card, .tire-categories { /* kept structural */ }
.page-header { /* already defined above */ }

/* Premium commercial pass */
.proof-strip {
  padding:30px 0 18px;
  background:linear-gradient(180deg, rgba(26,31,43,0.9) 0%, var(--bg-dark) 100%);
}
.proof-inline-strip {
  display:flex;
  flex-wrap:wrap;
  gap:0.8rem;
}
.proof-inline-pill {
  display:inline-flex;
  align-items:center;
  gap:0.55rem;
  min-height:48px;
  padding:0.8rem 1rem;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--text-main);
  box-shadow:var(--shadow-card);
  transition:var(--t);
}
.proof-inline-pill:hover {
  border-color:var(--border-accent);
  transform:translateY(-2px);
}
.proof-inline-pill i {
  color:var(--accent);
}
.proof-inline-pill span {
  font-size:0.9rem;
  font-weight:600;
}
.proof-strip-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1rem;
}
.proof-card {
  display:block;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.35rem;
  box-shadow:var(--shadow-card);
  transition:var(--t);
}
.proof-card:hover {
  transform:translateY(-4px);
  border-color:var(--border-accent);
}
.proof-kicker {
  display:inline-flex;
  align-items:center;
  gap:0.45rem;
  font-size:0.72rem;
  font-weight:700;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:0.55rem;
}
.proof-card strong {
  display:block;
  font-size:1.05rem;
  margin-bottom:0.55rem;
}
.proof-card p {
  color:var(--text-muted);
  font-size:0.9rem;
  line-height:1.7;
}

.pricing-overview,
.review-proof-section,
.local-story-section,
.included-section {
  background:var(--bg-dark);
}

.price-card-grid,
.service-pricing-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1rem;
}
.price-panel,
.service-pricing-card {
  background:linear-gradient(180deg, rgba(255,255,255,0.02) 0%, var(--bg-card) 100%);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.5rem;
  transition:var(--t);
}
.price-panel:hover,
.service-pricing-card:hover {
  border-color:var(--border-accent);
  transform:translateY(-4px);
}
.price-kicker,
.service-pricing-card span {
  display:block;
  color:var(--accent);
  font-size:0.76rem;
  font-weight:700;
  letter-spacing:1.4px;
  text-transform:uppercase;
  margin-bottom:0.65rem;
}
.price-panel strong,
.service-pricing-card strong {
  display:block;
  font-family:var(--font-heading);
  font-size:1.45rem;
  margin-bottom:0.55rem;
}
.price-panel p,
.service-pricing-card p {
  color:var(--text-muted);
  font-size:0.92rem;
  line-height:1.7;
}

.pricing-includes,
.includes-strip,
.included-grid {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1rem;
  margin-top:1.5rem;
}
.pricing-includes-card,
.includes-card,
.included-card {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.5rem;
}
.pricing-includes-card h3,
.includes-card h3,
.included-card h3 {
  font-size:1.05rem;
  margin-bottom:0.9rem;
}
.pricing-includes-card ul,
.includes-card ul,
.included-card ul {
  display:flex;
  flex-wrap:wrap;
  gap:0.75rem;
}
.pricing-includes-card li,
.includes-card li,
.included-card li {
  display:inline-flex;
  align-items:center;
  gap:0.7rem;
  background:rgba(255,255,255,0.04);
  border:1px solid var(--border);
  border-radius:999px;
  padding:0.55rem 0.85rem;
  color:var(--text-muted);
  font-size:0.88rem;
}
.pricing-includes-card i,
.includes-card i,
.included-card i {
  color:var(--accent);
  margin-top:0;
}
.included-card .fa-ban,
.includes-card .fa-plus-circle {
  color:var(--gold);
}

.sophie-demo {
  display:grid;
  gap:0.8rem;
  margin-top:1.5rem;
  text-align:left;
}
.sophie-demo-step {
  display:grid;
  grid-template-columns:44px 1fr;
  gap:0.85rem;
  align-items:start;
  background:rgba(255,255,255,0.03);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:0.9rem 1rem;
}
.sophie-demo-step span {
  width:44px;
  height:44px;
  border-radius:50%;
  background:var(--accent-subtle);
  border:1px solid var(--border-accent);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
  font-family:var(--font-heading);
  font-weight:800;
}
.sophie-demo-step p {
  color:var(--text-muted);
  font-size:0.9rem;
  line-height:1.6;
}

.trust-visual-map {
  overflow:hidden;
  padding:0;
  min-height:420px;
}
.trust-visual-map iframe,
.location-map-frame iframe {
  width:100%;
  height:100%;
  min-height:320px;
  border:0;
  display:block;
  filter:grayscale(0.15) contrast(1.02);
}
.location-map-frame {
  min-height:320px;
  background:var(--bg-lighter);
}
.trust-map-actions {
  display:flex;
  gap:0.75rem;
  flex-wrap:wrap;
}

.price-peek-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:1rem;
  margin-bottom:1.25rem;
}
.price-inline-strip {
  display:flex;
  flex-wrap:wrap;
  gap:0.8rem;
  margin-bottom:1rem;
}
.price-inline-pill {
  display:inline-flex;
  align-items:center;
  gap:0.4rem;
  padding:0.7rem 0.95rem;
  background:var(--bg-card);
  border:1px solid rgba(229,57,53,0.18);
  border-radius:999px;
  color:var(--text-main);
  font-size:0.9rem;
  font-weight:600;
  box-shadow:0 8px 22px rgba(0,0,0,0.24);
}
.price-inline-pill strong {
  font-family:var(--font-heading);
  color:#fff;
}
.price-inline-note {
  color:var(--text-muted);
  font-size:0.88rem;
  line-height:1.6;
  margin-bottom:1.8rem;
}
.price-peek-card {
  background:linear-gradient(180deg, rgba(255,255,255,0.02) 0%, var(--bg-card) 100%);
  border:1px solid rgba(229,57,53,0.16);
  border-radius:var(--radius);
  padding:1.1rem 1.15rem;
  box-shadow:0 10px 24px rgba(0,0,0,0.28);
  position:relative;
  overflow:hidden;
}
.price-peek-card::before {
  content:'';
  position:absolute;
  inset:0 0 auto 0;
  height:2px;
  background:linear-gradient(90deg, transparent, var(--accent), transparent);
}
.price-peek-kicker {
  display:block;
  color:var(--accent);
  font-size:0.72rem;
  font-weight:700;
  letter-spacing:1.3px;
  text-transform:uppercase;
  margin-bottom:0.55rem;
}
.price-peek-card strong {
  display:block;
  font-size:1.35rem;
  line-height:1.15;
  margin-bottom:0.35rem;
}
.price-peek-card p {
  color:var(--text-muted);
  font-size:0.8rem;
  line-height:1.45;
}

.service-pricing-strip {
  padding-top:36px;
  padding-bottom:16px;
  background:var(--bg-dark);
}
.service-price-tag {
  border-color:rgba(245,166,35,0.25);
  background:rgba(245,166,35,0.08);
  color:var(--gold);
}

.request-guidance {
  background:rgba(255,255,255,0.03);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1rem 1.1rem;
}
.request-guidance strong {
  display:block;
  margin-bottom:0.35rem;
}
.request-guidance p {
  color:var(--text-muted);
  font-size:0.92rem;
}
.request-summary {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:0.9rem;
  margin-top:1.5rem;
  text-align:left;
}
.request-summary-item {
  background:rgba(255,255,255,0.04);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  padding:0.95rem 1rem;
}
.request-summary-item span {
  display:block;
  color:var(--text-dim);
  font-size:0.76rem;
  font-weight:700;
  letter-spacing:1.2px;
  text-transform:uppercase;
  margin-bottom:0.35rem;
}
.request-summary-item strong {
  display:block;
  line-height:1.5;
}
.request-summary-note {
  margin-top:1rem;
  color:var(--text-muted);
  font-size:0.9rem;
}

.review-proof-section {
  padding-top:40px;
}
.local-story-card {
  background:linear-gradient(135deg, rgba(229,57,53,0.08) 0%, rgba(18,21,27,0.96) 55%);
  border:1px solid var(--border-accent);
  border-radius:var(--radius-lg);
  padding:2.2rem;
  box-shadow:0 18px 44px rgba(0,0,0,0.42);
}
.local-story-card h2 {
  font-size:2rem;
  margin-bottom:1rem;
}
.local-story-card p {
  color:var(--text-muted);
  max-width:760px;
}
.local-story-card p + p {
  margin-top:0.9rem;
}
.local-story-points {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:0.85rem;
  margin-top:1.5rem;
}
.local-story-points div {
  display:flex;
  align-items:flex-start;
  gap:0.7rem;
  background:rgba(255,255,255,0.04);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:0.95rem 1rem;
  color:var(--text-main);
}
.local-story-points i {
  color:var(--accent);
  margin-top:0.2rem;
}

@media (max-width: 1024px) {
  .pricing-includes,
  .includes-strip,
  .included-grid,
  .request-summary {
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px) {
  .proof-inline-strip,
  .price-inline-strip {
    gap:0.65rem;
  }

  .proof-strip-grid,
  .price-peek-grid {
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .price-card-grid,
  .service-pricing-grid,
  .local-story-points {
    grid-template-columns:1fr;
  }

  .trust-map-actions {
    flex-direction:column;
  }

  .trust-map-actions .btn {
    width:100%;
  }

  .local-story-card {
    padding:1.6rem;
  }

  .local-story-card h2 {
    font-size:1.6rem;
  }
}

@media (max-width: 540px) {
  .proof-inline-strip,
  .price-inline-strip {
    flex-direction:column;
  }

  .proof-strip-grid,
  .price-peek-grid {
    grid-template-columns:1fr;
  }
}
