/* =========================================================
   AUDIT+ Énergétique — Direction artistique
   Titres : Bricolage Grotesque (variable, expressive)
   Corps  : Inter
   Palette : crème chaud + marine profond + vert + ambre
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Couleurs */
  --navy:        #122c45;
  --navy-deep:   #0c1f31;
  --blue:        #2f7bc4;
  --green:       #4f9d3a;
  --green-deep:  #3c7d2c;
  --amber:       #e9913a;
  --amber-soft:  #f7ead6;

  --ink:         #16242f;
  --muted:       #5e6f7d;
  --line:        #e7e0d4;
  --line-soft:   #efe9de;

  --bg:          #faf7f1;   /* crème chaud */
  --bg-2:        #f2ece1;   /* crème plus dense */
  --surface:     #fffdf9;   /* cartes */

  /* Système */
  --radius:      18px;
  --radius-sm:   12px;
  --radius-lg:   26px;
  --shadow:      0 18px 50px -18px rgba(18,44,69,.28);
  --shadow-sm:   0 8px 24px -12px rgba(18,44,69,.20);
  --maxw:        1550px;

  --display:     'Bricolage Grotesque', Georgia, serif;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --ease:        cubic-bezier(.22,.61,.36,1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--navy); }
::selection { background: var(--green); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.02em;
}
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; position: relative; }
.section--soft { background: var(--bg-2); }
.center { text-align: center; }

/* Eyebrow avec trait */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font);
  font-size: .76rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--green); }
.center .eyebrow { justify-content: center; }

.section-title { font-size: clamp(2rem, 4.2vw, 3.2rem); margin-bottom: 22px; }
.section-lead { color: var(--muted); font-size: 1.12rem; max-width: 660px; }
.center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600; font-size: .97rem;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 14px 28px -10px rgba(79,157,58,.55); }
.btn--primary:hover { background: var(--green-deep); color: #fff; box-shadow: 0 20px 36px -12px rgba(79,157,58,.6); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); background: rgba(18,44,69,.03); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--amber-soft); color: var(--navy); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,241,.82);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 82px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { height: 52px; width: 52px; border-radius: 12px; box-shadow: var(--shadow-sm); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--display); color: var(--navy); font-size: 1.18rem; letter-spacing: -.01em; }
.brand-text span { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--green-deep); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: var(--ink); font-weight: 500; font-size: .95rem;
  padding: 9px 15px; border-radius: 9px; position: relative;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 1.5px;
  background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-links a:not(.btn):hover::after, .nav-links a.active:not(.btn)::after { transform: scaleX(1); }
.nav-links a.active:not(.btn) { color: var(--navy); font-weight: 600; }
.nav-cta { margin-left: 12px; }
.nav-cta::after { display: none; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 3px; transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--bg); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 70% at 82% 18%, rgba(47,123,196,.14), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(79,157,58,.12), transparent 60%);
}
/* Arc décoratif évoquant la jauge du logo */
.hero::after {
  content: ""; position: absolute; z-index: 0;
  width: 620px; height: 620px; right: -160px; top: -160px;
  border: 1.5px dashed rgba(18,44,69,.10); border-radius: 50%;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center;
  padding: 96px 0 104px;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-bottom: 26px; font-weight: 700; }
.hero h1 .accent { color: var(--green); font-style: italic; }
.hero p.lead { font-size: 1.2rem; color: var(--muted); margin-bottom: 36px; max-width: 530px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 14px 30px; margin-top: 42px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--navy); font-weight: 500; }
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(79,157,58,.16); }

.hero-visual {
  position: relative; background: var(--surface);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 36px; border: 1px solid var(--line-soft);
}
.dpe-label {
  font-family: var(--display); font-weight: 800; font-size: .9rem;
  letter-spacing: .18em; color: var(--navy); margin-bottom: 10px;
  text-transform: uppercase;
}
.hero-visual img { border-radius: 16px; margin: 0 auto 26px; width: 130px; height: 130px; }
.dpe-scale { display: flex; flex-direction: column; gap: 7px; }
.dpe-row { display: flex; align-items: center; }
.dpe-bar { height: 27px; border-radius: 6px; color: #fff; font-weight: 700; font-size: .8rem; display: flex; align-items: center; padding: 0 13px; font-family: var(--display); transition: width .8s var(--ease); }
.dpe-a { background: #2f9a3f; width: 42%; }
.dpe-b { background: #62ae3a; width: 52%; }
.dpe-c { background: #b3cf3a; width: 62%; color: #2c3a12; }
.dpe-d { background: #f3d000; width: 72%; color: #4a3d00; }
.dpe-e { background: #f1a712; width: 82%; }
.dpe-f { background: #ea6a25; width: 91%; }
.dpe-g { background: #df231a; width: 100%; }
.dpe-cap { font-size: .82rem; color: var(--muted); margin-top: 18px; text-align: center; }

/* ---------- Strip ---------- */
.strip { background: var(--navy); color: #fff; }
.strip .container { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 22px; padding: 42px 28px; }
.strip-item { text-align: center; }
.strip-item strong { font-family: var(--display); display: block; font-size: 2.3rem; color: #fff; font-weight: 700; letter-spacing: -.02em; }
.strip-item span { font-size: .9rem; color: #aec5da; }

/* ---------- Grilles & cartes ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; background: var(--surface);
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 36px 32px; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card.green::before { background: var(--green); }
.card.orange::before { background: var(--amber); }
.card .ico {
  width: 60px; height: 60px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 22px;
  background: #eaf2fb; color: var(--blue); font-size: 1.6rem;
}
.card.green .ico { background: #e9f5e2; color: var(--green-deep); }
.card.orange .ico { background: var(--amber-soft); color: var(--amber); }
.card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: .99rem; margin-bottom: 16px; }
.card a.more { font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: 8px; color: var(--green-deep); }
.card a.more:hover { gap: 12px; }

.feature-list li { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 13px; color: var(--ink); }
.feature-list li::before {
  content: "✓"; flex: none;
  width: 23px; height: 23px; border-radius: 50%;
  background: #e9f5e2; color: var(--green-deep);
  display: grid; place-items: center; font-size: .78rem; font-weight: 700; margin-top: 3px;
}

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--navy) 0%, #1d4e7e 100%);
  border-radius: var(--radius-lg); min-height: 380px;
  display: grid; place-items: center; color: #fff; padding: 48px; text-align: center;
  box-shadow: var(--shadow);
}
.split-media::after {
  content: ""; position: absolute; width: 360px; height: 360px; right: -120px; bottom: -120px;
  border: 1.5px dashed rgba(255,255,255,.16); border-radius: 50%;
}
.split-media .big { font-size: 3.6rem; margin-bottom: 14px; }
.split-media h3 { color: #fff; }

/* Split media avec photo de fond + voile sombre */
.split-media.has-img { background: var(--navy); }
.split-media.has-img::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  background-image: var(--img);
}
.split-media.has-img::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(110% 90% at 50% 50%, rgba(7,18,30,.66) 0%, rgba(7,18,30,.9) 100%),
    linear-gradient(150deg, rgba(8,20,33,.9) 0%, rgba(11,28,45,.86) 100%);
  border: 0; width: auto; height: auto; right: auto; bottom: auto; border-radius: 0;
}
.split-media.has-img > * { position: relative; z-index: 1; }
.split-media.has-img h3,
.split-media.has-img p { color: #fff;     line-height: 1.2;
    margin-top: 1rem; }
.split-media .tag {
  display: inline-block; font-family: var(--font); font-size: .74rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: #fff;
  background: rgba(255,255,255,.12); backdrop-filter: blur(2px);
  border: 1px solid rgba(255,255,255,.4); border-radius: 50px; padding: 7px 16px;
}

/* Photo dans la carte hero */
.hero-visual .hv-photo { width: 100%; height: 210px; object-fit: cover; border-radius: 16px; margin: 0 0 24px; }

/* Page hero avec photo */
.page-hero.has-img { background: var(--navy-deep); }
.page-hero.has-img::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  background-image: var(--img);
}
.page-hero.has-img > .container { z-index: 2; }
.page-hero.has-img::after { z-index: 1; }
.page-hero .overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(118deg, rgba(8,21,35,.95) 0%, rgba(12,31,49,.88) 48%, rgba(14,36,57,.74) 100%);
}
/* Léger assombrissement de la photo elle-même pour le contraste */
.page-hero.has-img::before, .split-media.has-img::before { filter: brightness(0.75) saturate(.95); }
.split h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 18px; }
.split p { color: var(--muted); margin-bottom: 18px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
.step { position: relative; padding-top: 12px; }
.step .num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--surface); border: 1.5px solid var(--line);
  color: var(--navy); font-family: var(--display); font-weight: 700; font-size: 1.25rem;
  display: grid; place-items: center; margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.step h4 { font-family: var(--display); margin-bottom: 9px; font-size: 1.15rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* ---------- Cibles ---------- */
.target { display: flex; gap: 18px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 28px; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.target:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.target .ti { font-size: 1.9rem; flex: none; }
.target h4 { font-family: var(--display); margin-bottom: 7px; font-size: 1.2rem; }
.target p { color: var(--muted); font-size: .95rem; }

/* ---------- CTA ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #1d4e7e 100%);
  color: #fff; text-align: center; padding: 92px 0;
}
.cta-band::after {
  content: ""; position: absolute; width: 540px; height: 540px; left: 50%; top: -260px; transform: translateX(-50%);
  border: 1.5px dashed rgba(255,255,255,.12); border-radius: 50%;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-band p { color: #cfe0f0; max-width: 600px; margin: 0 auto 32px; font-size: 1.1rem; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--line-soft); border-radius: var(--radius-sm); margin-bottom: 14px; background: var(--surface); overflow: hidden; transition: border-color .3s var(--ease); }
.faq-item.open { border-color: var(--green); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 26px; font-family: var(--display); font-size: 1.1rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .chev { transition: transform .35s var(--ease); flex: none; color: var(--green); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 26px 24px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; }
.contact-info .info-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.contact-info .ii { width: 48px; height: 48px; flex: none; border-radius: 13px; background: #eaf2fb; color: var(--blue); display: grid; place-items: center; font-size: 1.2rem; }
.contact-info h4 { font-family: var(--display); margin-bottom: 3px; }
.contact-info p, .contact-info a { color: var(--muted); }

.form { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 8px; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 11px;
  font-family: inherit; font-size: .98rem; color: var(--ink); background: #fff;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(79,157,58,.14);
}
.field textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 12px; }
.form-success { display: none; background: #e9f5e2; color: var(--green-deep); border: 1px solid #bfe3ad; padding: 17px; border-radius: 12px; margin-bottom: 20px; font-weight: 500; }
.form-success.show { display: block; }

/* ---------- Page hero ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--navy) 0%, #1d4e7e 100%);
  color: #fff; padding: 92px 0 84px;
}
.page-hero::after {
  content: ""; position: absolute; width: 560px; height: 560px; right: -160px; top: -200px;
  border: 1.5px dashed rgba(255,255,255,.13); border-radius: 50%;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero .crumb { font-size: .85rem; color: #aec5da; margin-bottom: 18px; letter-spacing: .03em; }
.page-hero .crumb a { color: #d6e6f5; }
.page-hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.6rem); margin-bottom: 18px; max-width: 800px; }
.page-hero p { color: #cfe0f0; font-size: 1.16rem; max-width: 690px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #c6d6e6; padding: 76px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 48px; }
.site-footer .brand-text strong { color: #fff; }
.site-footer p { color: #92aac1; font-size: .94rem; margin-top: 18px; }
.footer-col h4 { font-family: var(--display); color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer-col a, .footer-col li { color: #a3bad0; font-size: .94rem; margin-bottom: 11px; display: block; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: #7d97af; }

/* ---------- Icônes (Lucide) ---------- */
.card .ico svg { width: 28px; height: 28px; stroke-width: 1.9; }
.target .ti { color: var(--green-deep); display: grid; place-items: center; }
.target .ti svg { width: 28px; height: 28px; stroke-width: 1.9; }
.contact-info .ii svg { width: 21px; height: 21px; stroke-width: 1.9; }
.btn svg { width: 18px; height: 18px; stroke-width: 2; }
.footer-col li { display: flex; align-items: center; gap: 9px; }
.footer-col li svg { width: 16px; height: 16px; stroke-width: 1.9; flex: none; color: #7fa8cf; }
.hero-badge svg { width: 16px; height: 16px; }
/* Évite tout flash avant l'hydratation des icônes */
i[data-lucide] { display: inline-flex; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 440px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 84px 0; }
}
/* Menu burger : bascule dès 1024px pour éviter que la barre ne déborde */
@media (max-width: 1024px) {
  .nav-links {
    position: fixed; top: 82px; right: 0; width: min(80vw, 330px);
    height: calc(100vh - 82px); background: var(--surface); flex-direction: column;
    align-items: stretch; padding: 24px; gap: 4px; box-shadow: -12px 0 40px rgba(0,0,0,.14);
    transform: translateX(100%); transition: transform .4s var(--ease); overflow-y: auto;
  }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 14px 14px; border-radius: 9px; }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-cta { margin: 10px 0 0; }
  .burger { display: flex; }
}
@media (max-width: 720px) {
  .grid-3, .grid-4, .grid-2, .form-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero-grid {     padding: 42px 28px; }
}

/* ---------- Bandeau tarif (encart global) ---------- */
.topbar {
  background: var(--navy-deep);
  color: #eaf2fb;
  font-size: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 9px 28px; text-align: center;
}
.topbar .price-pill {
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: .01em; font-weight: 500;
}
.topbar .price-pill strong {
  background: var(--green); color: #fff; font-weight: 700;
  padding: 3px 12px; border-radius: 999px; letter-spacing: 0;
  box-shadow: 0 6px 16px -8px rgba(79,157,58,.6);
}
.topbar .price-pill svg { width: 15px; height: 15px; color: var(--amber); }
@media (max-width: 480px) {
  .topbar { font-size: .8rem; }
  .topbar .price-pill svg { display: none; }
}

/* ---------- Accessibilité : mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
