/*
Theme Name: ADTSI CONNECT
Theme URI: https://www.adtsiconnect.fr
Author: ADTSI CONNECT
Description: Thème sur-mesure pour ADTSI CONNECT — bornes de recharge et électricité professionnelle à Paris et alentours. Généré à partir de la maquette validée avec le client.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: adtsi-connect
*/

/* ADTSI CONNECT -- prototype visuel -- feuille de style unique */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Lexend:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0B1B2E;
  --navy-light: #15304C;
  --amber: #2F6FED;
  --amber-dark: #1D4ED8;
  --amber-tint: #E8F0FE;
  --blue-vivid: #2145CC;
  --gold: #E8A93D;
  --teal: #0E7C66;
  --bg: #F5F6F8;
  --bg-card: #FFFFFF;
  --text: #1A1E22;
  --text-secondary: #454F59;
  --border: #E1E4E9;
  --radius: 6px;
  --max: 1160px;
  --font-heading: 'Manrope', -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Lexend', -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.solution-row h3 { color: var(--amber-dark); }

/* ---------- DC product catalog (Virta-style) ---------- */
.dc-catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin: 22px 0 34px; }
.dc-catalog-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.dc-tab { border: 1px solid var(--border); background: #fff; color: var(--navy); font-weight: 700; font-size: 13.5px; padding: 11px 20px; border-radius: 8px; cursor: pointer; }
.dc-tab.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.dc-catalog-search { position: relative; flex: 0 0 320px; max-width: 100%; }
.dc-catalog-search input { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 12px 42px 12px 16px; font-size: 13.5px; font-family: inherit; background: #fff; color: var(--navy); }
.dc-catalog-search input:focus { outline: 2px solid var(--amber); outline-offset: -1px; }
.dc-catalog-search .dc-search-ico { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: #8a97a8; pointer-events: none; }
.dc-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dc-product-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s ease, transform .2s ease; }
.dc-product-card:hover { box-shadow: 0 14px 28px rgba(11,27,46,0.1); transform: translateY(-2px); }
.dc-product-media { background: #F5F6F8; padding: 26px; display: flex; align-items: center; justify-content: center; min-height: 220px; }
.dc-product-media img { max-width: 100%; max-height: 210px; width: auto; object-fit: contain; }
.dc-product-body { padding: 20px 22px 24px; }
.dc-product-brand { font-size: 11.5px; font-weight: 800; letter-spacing: 0.06em; color: var(--amber-dark); margin: 0 0 6px; }
.dc-product-body h3 { font-size: 18px; color: var(--navy); margin: 0 0 12px; }
.dc-product-body h3 span { font-weight: 500; color: var(--text-secondary); font-size: 14px; }
.dc-product-specs { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.dc-product-specs li { font-size: 13px; color: var(--text-secondary); padding-left: 16px; position: relative; }
.dc-product-specs li::before { content: ""; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--amber); }
.dc-product-tag { font-size: 12.5px; font-weight: 700; color: var(--navy); background: var(--amber-tint); display: inline-block; padding: 6px 12px; border-radius: 20px; margin: 0; }
@media (max-width: 960px) { .dc-product-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .dc-product-grid { grid-template-columns: 1fr; } .dc-catalog-search { flex: 1 1 100%; } }

/* ---------- Battery percentage picker ---------- */
.battery-picker { display: flex; align-items: center; gap: 12px; margin-top: 4px; flex-wrap: wrap; }
.battery-bars { display: flex; align-items: center; gap: 3px; border: 2.5px solid var(--navy); border-radius: 7px; padding: 5px; background: #fff; }
.battery-picker .battery-nub { width: 5px; height: 16px; background: var(--navy); border-radius: 0 3px 3px 0; margin-left: -9px; }
.battery-bar { width: 13px; height: 24px; background: #EEF1F5; border-radius: 2px; cursor: pointer; transition: background .15s ease; border: none; padding: 0; }
.battery-bar.is-filled { background: var(--amber); }
.battery-bar:hover { background: var(--amber-tint); }
.battery-bar.is-filled:hover { background: var(--amber-dark); }
.battery-value { font-weight: 800; color: var(--navy); font-size: 15px; min-width: 40px; }
@media (max-width: 380px) { .battery-bar { width: 10px; } }

/* ---------- Icon card list ---------- */
.icon-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.icon-card { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 16px 18px; transition: transform .2s ease, box-shadow .2s ease; }
.icon-card-grid-accent .icon-card { border-color: #BBD3FA; }
.icon-card:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(11,27,46,.07); }
.icon-card .icon-card-ico { flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px; background: var(--amber-tint); color: var(--amber-dark); display: flex; align-items: center; justify-content: center; }
.icon-card .icon-card-ico svg { width: 22px; height: 22px; }
.icon-card > span:last-child { font-size: 14px; color: var(--text); line-height: 1.4; }
@media (max-width: 640px) { .icon-card-grid { grid-template-columns: 1fr; } }

/* ---------- Header ---------- */
header.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container { max-width: 1320px; }
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  flex-wrap: nowrap;
  gap: 16px;
}
.logo {
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo span { color: var(--amber-dark); }

nav.main-nav { display: flex; align-items: center; gap: 2px; flex-shrink: 1; min-width: 0; }
nav.main-nav > ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 0; flex-wrap: nowrap; }
nav.main-nav > ul > li { position: relative; }
nav.main-nav > ul > li > a {
  display: block;
  padding: 14px 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  border-radius: var(--radius);
  white-space: nowrap;
}
nav.main-nav > ul > li > a:hover { background: #F0F2F4; }

.dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(20,43,64,0.12);
  min-width: 300px;
  padding: 8px;
}
nav.main-nav > ul > li:hover .dropdown-panel { display: block; }
.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
}
.dropdown-panel a:hover { background: var(--bg); }
.dropdown-panel a small { display: block; color: var(--text-secondary); font-size: 12px; font-weight: 400; margin-top: 2px; }
.dropdown-group-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-secondary); padding: 10px 12px 4px; }
.dropdown-panel hr { border: none; border-top: 1px solid var(--border); margin: 6px 4px; }

.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone { font-weight: 700; color: var(--navy); font-size: 15px; }
.header-phone i { color: var(--amber-dark); margin-right: 6px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14.5px;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-amber { background: var(--amber); color: #fff; }
.btn-amber:hover { background: var(--amber-dark); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: #EDEFF1; }

.menu-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--navy); cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, #F6F8FA 0%, #EEF1F5 100%);
  color: var(--text);
  padding: 64px 0 76px;
}
.hero .inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.hero h1 { font-size: 44px; line-height: 1.14; margin: 0 0 18px; font-weight: 800; letter-spacing: -0.01em; color: var(--navy); }
.hero p.lead { font-size: 17.5px; color: var(--text-secondary); margin: 0 0 30px; max-width: 46ch; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero .cta-row .tel-link { color: var(--navy); font-weight: 600; font-size: 14.5px; display: inline-flex; align-items: center; gap: 8px; }
.trust-badges { display: flex; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.trust-badges .badge { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-secondary); }
.trust-badges .badge i { color: var(--amber); font-size: 18px; }
.btn-pill { border-radius: 999px; }
.hero-fullbleed { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-fullbleed img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 30% center; z-index: 0; }
.hero-fullbleed .hero-fullbleed-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(11,27,46,0.85) 0%, rgba(11,27,46,0.6) 40%, rgba(11,27,46,0.2) 75%, rgba(11,27,46,0.05) 100%); z-index: 1; }
.hero-fullbleed .container { position: relative; z-index: 2; max-width: 100%; padding: 0 6vw 9vw; }
.hero-fullbleed .hero-fullbleed-content { max-width: 560px; }
.hero-fullbleed .trust-bar-overlay { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; background: #fff; border-top: none; border-bottom: none; padding: 16px 0; overflow: hidden; }
.trust-bar-fade { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; padding: 0 28px; }
.trust-bar-fade .item { flex: 1; min-width: 190px; opacity: 0; animation: heroFadeInUp .7s ease both; }
.trust-bar-fade .item:nth-child(1) { animation-delay: .1s; }
.trust-bar-fade .item:nth-child(2) { animation-delay: .22s; }
.trust-bar-fade .item:nth-child(3) { animation-delay: .34s; }
.trust-bar-fade .item:nth-child(4) { animation-delay: .46s; }
@media (max-width: 720px) { .hero-fullbleed .container { padding: 0 24px 60px; } }
.hero-fullbleed h1 { color: #fff; font-size: 50px; line-height: 1.1; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 20px; }
.hero-fullbleed p.lead { color: #DCE4F0; font-size: 17px; max-width: 46ch; margin: 0 0 30px; }
@media (max-width: 720px) { .hero-fullbleed h1 { font-size: 34px; } }


.hero-art { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 22px; box-shadow: 0 12px 28px rgba(11,27,46,0.08); }
.hero-art-photo { padding: 0; overflow: hidden; line-height: 0; border-radius: 18px; }
.hero-art-photo img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; display: block; }

/* ---------- Photo blocks (DC recap, maintenance, etc.) ---------- */
.dc-photo { border-radius: 18px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 12px 28px rgba(11,27,46,0.08); }
.dc-photo img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }
.dc-photo-sm { max-width: 340px; margin-left: 0; margin-right: auto; }
.dc-photo-sm img { min-height: 230px; max-height: 260px; }
.icon-card-grid-dc { gap: 10px; }
.icon-card-grid-dc .icon-card:last-child { grid-column: 1 / -1; }

.power-table { width: 100%; border-collapse: collapse; margin-top: 14px; }
.power-table th, .power-table td { padding: 10px 12px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border); }
.power-table th { color: var(--navy); font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.03em; }
.power-table td { color: var(--text-secondary); }

/* ---------- Simulateur de recharge ---------- */
.sim-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 28px; }
.sim-row { margin-bottom: 16px; }
.sim-row label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.sim-row input, .sim-row select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 14px; font-family: inherit; color: var(--text); background: #fcfcfd;
}
.sim-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sim-results { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-content: start; }
.sim-result-card { background: var(--bg); border-radius: 8px; padding: 16px; text-align: center; }
.sim-result-card .val { font-size: 24px; font-weight: 800; color: var(--navy); }
.sim-result-card .lbl { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }
.sim-note { grid-column: 1 / -1; font-size: 12.5px; color: var(--text-secondary); margin-top: 6px; }
@media (max-width: 720px) { .sim-wrap { grid-template-columns: 1fr; } }
.sim-compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 22px; }
.sim-compare-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 20px 18px; text-align: center; }
.sim-compare-card.featured { border-color: var(--amber); box-shadow: 0 0 0 1px var(--amber); }
.sim-compare-card .scc-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--text-secondary); margin: 0 0 4px; }
.sim-compare-card .scc-power { font-size: 15px; font-weight: 700; color: var(--navy); margin: 0 0 10px; }
.sim-compare-card .scc-time { font-size: 26px; font-weight: 800; color: var(--blue-vivid); margin: 0 0 10px; }
.sim-compare-card .scc-note { font-size: 12.5px; color: var(--text-secondary); margin: 0; line-height: 1.4; }
.sim-compare-card .scc-icon { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; color: var(--amber); background: var(--amber-tint); border-radius: 10px; margin-bottom: 12px; }
.sim-compare-card .scc-icon svg { width: 22px; height: 22px; }
@media (max-width: 720px) { .sim-compare-grid { grid-template-columns: 1fr; } }

/* ---------- Comparateur de prix par lieu de recharge (simulateur) ---------- */
.price-loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.price-loc-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 22px 18px; text-align: center; }
.price-loc-card .scc-icon { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; color: var(--amber); background: var(--amber-tint); border-radius: 10px; margin-bottom: 12px; }
.price-loc-card .scc-icon svg { width: 22px; height: 22px; }
.price-loc-card .scc-label { font-size: 13px; font-weight: 700; color: var(--navy); margin: 0 0 8px; }
.price-loc-card .price-loc-range { font-size: 13px; color: var(--text-secondary); margin: 0 0 8px; }
.price-loc-card .price-loc-cost { font-size: 19px; font-weight: 800; color: var(--blue-vivid); margin: 0 0 10px; }
.price-loc-card .price-loc-cost span { display: block; font-size: 11px; font-weight: 500; color: var(--text-secondary); margin-top: 2px; }
.price-loc-card .scc-note { font-size: 12.5px; color: var(--text-secondary); margin: 0; line-height: 1.4; }
@media (max-width: 900px) { .price-loc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .price-loc-grid { grid-template-columns: 1fr; } }


/* ---------- Bandeau de confiance (sous le hero) ---------- */
.trust-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 26px 0; }
.trust-bar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.trust-bar .item { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 190px; }
.trust-bar .item .ic { width: 40px; height: 40px; border-radius: 50%; background: var(--amber); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-bar .item strong { display: block; font-size: 14px; color: var(--navy); }
.trust-bar .item span.sub { display: block; font-size: 12.5px; color: var(--text-secondary); }

/* ---------- Choix de profil ---------- */
.segment-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.segment-card {
  border-radius: 10px; padding: 30px 28px; position: relative; overflow: hidden;
}
.segment-card.is-part { background: #fff; border: 1px solid var(--border); }
.segment-card.is-pro { background: var(--navy); color: #fff; }
.segment-card .tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.segment-card.is-part .tag { color: var(--amber-dark); }
.segment-card.is-pro .tag { color: var(--amber); }
.segment-card h3 { font-size: 21px; margin: 10px 0 10px; }
.segment-card.is-part h3 { color: var(--navy); }
.segment-card p { font-size: 14.5px; margin: 0 0 20px; }
.segment-card.is-part p { color: var(--text-secondary); }
.segment-card.is-pro p { color: #CBD6DE; }

/* ---------- Blocs fonctionnalités (type "+") ---------- */
.feature-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-block { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 22px; transition: transform .2s ease, box-shadow .2s ease; }
.feature-block:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(11,27,46,.07); }
.feature-block .num { display: inline-block; background: var(--amber-tint); color: var(--amber-dark); border-radius: 999px; padding: 3px 10px; }
.feature-block .num { font-size: 12px; font-weight: 700; color: var(--amber-dark); letter-spacing: 0.05em; text-transform: uppercase; }
.feature-block h3 { font-size: 16.5px; color: var(--navy); margin: 8px 0 8px; }
.feature-block p { font-size: 14px; color: var(--text-secondary); margin: 0; }

/* ---------- Sections ---------- */
section { padding: 68px 0; }
.section-alt { background: #fff; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.eyebrow { display: inline-block; background: var(--amber-tint); color: var(--amber-dark); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 10px; padding: 6px 14px; border-radius: 999px; }
.section-head h2 { font-size: 28px; margin: 0 0 12px; color: var(--navy); position: relative; display: inline-block; }
.section-head h2::after { content: ""; display: block; width: 56px; height: 3px; background: var(--amber); border-radius: 999px; margin: 12px auto 0; }
.section-head p { color: var(--text-secondary); font-size: 15.5px; margin: 0; }

.grid { display: grid; gap: 22px; }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Galerie réalisations ---------- */
.gallery-tile { border-radius: 10px; overflow: hidden; aspect-ratio: 1/1; border: 1px solid var(--border); }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease; }
.gallery-tile:hover img { transform: scale(1.05); }
.usecase-tile { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 28px 20px; text-align: center; }
.usecase-tile .usecase-ico { width: 44px; height: 44px; margin: 0 auto 16px; color: var(--amber); }
.usecase-tile h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin: 0; }
/* Hero clair (tag + titre + CTA + illustration) */
.page-hero-split { background: var(--bg); padding: 48px 0; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; }
.page-hero-split.hero-compact { min-height: 62vh; min-height: 62svh; }
.page-hero-split .hero-tag { display: inline-block; background: var(--amber-tint); border: 1px solid #cfe0fb; border-radius: 999px; padding: 6px 16px; font-size: 13px; color: var(--amber-dark); font-weight: 700; margin-bottom: 18px; }
.page-hero-split h1 { font-size: 34px; color: var(--navy); margin: 0 0 16px; line-height: 1.2; position: relative; display: inline-block; }
.page-hero-split h1::after { content: ""; display: block; width: 64px; height: 4px; background: var(--amber); border-radius: 999px; margin-top: 14px; }
.page-hero-split p.lead { color: var(--text-secondary); font-size: 15.5px; margin: 0 0 24px; max-width: 46ch; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #16263c; }

/* Cartes cas d'usage façon bump-charge : illustration + titre + description */
.usecase-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.usecase-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.usecase-card img { width: 100%; height: 150px; object-fit: cover; display: block; }
.usecase-card .usecase-card-body { padding: 18px 20px 22px; }
.usecase-card h4 { font-size: 15.5px; font-weight: 700; color: var(--navy); margin: 0 0 8px; }
.usecase-card p { font-size: 13.5px; color: var(--text-secondary); margin: 0; line-height: 1.5; }
@media (max-width: 960px) { .usecase-card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .usecase-card-grid { grid-template-columns: 1fr; } }

/* Tuiles "éparpillées" pour listes de prestations */
.spread-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.spread-tile { background: #fff; border: 1px solid var(--border); border-top: 3px solid var(--amber); border-radius: 12px; padding: 22px 20px; transition: transform .2s ease, box-shadow .2s ease; }
.spread-tile:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(11,27,46,.08); }
.spread-tile .spread-ico { width: 34px; height: 34px; color: var(--amber); margin-bottom: 14px; }
.spread-tile .spread-illus { width: 56px; height: 56px; margin-bottom: 14px; display: block; }
.spread-tile h4 { font-size: 14.5px; font-weight: 700; color: var(--navy); margin: 0 0 6px; }
.spread-tile p { font-size: 13px; color: var(--text-secondary); margin: 0; line-height: 1.5; }
/* Portail de supervision (dark showcase, façon bump-charge) */
.supervision-portal { background: var(--bg); padding: 64px 0; }
.supervision-portal-panel { background: var(--navy); border-radius: 26px; padding: 52px 36px 46px; }
@media (max-width: 640px) { .supervision-portal-panel { padding: 36px 20px 32px; border-radius: 18px; } }
.supervision-portal .section-head p.eyebrow { color: #8CA3C9; }
.supervision-portal .section-head h2 { color: #fff; }
.supervision-portal .section-head p:not(.eyebrow) { color: #B7C2D6; }
.portal-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.portal-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 26px 24px; }
.portal-card h3 { color: #fff; font-size: 17px; margin: 0 0 10px; text-align: center; }
.portal-card p { color: #B7C2D6; font-size: 13.5px; margin: 0 0 20px; text-align: center; line-height: 1.5; }
.portal-card img { width: 100%; border-radius: 8px; display: block; }
@media (max-width: 900px) { .portal-cards { grid-template-columns: 1fr; } }

/* Offres dissociées visuellement */
.offer-tier-standard { background: #fff; border: 1px solid var(--border); }
.offer-tier-premium { background: var(--navy); border: 1px solid var(--navy); }
.offer-tier-premium .eyebrow { color: #8CA3C9 !important; }
.offer-tier-premium h3 { color: #fff !important; }
.offer-tier-premium .side-item { border-bottom-color: rgba(255,255,255,0.12); }
.offer-tier-premium .side-item span { color: #DCE4F0; }
.offer-tier-premium .side-item::before { color: #6FA0F5 !important; }




.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  border-radius: 8px;
  padding: 26px 22px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(11,27,46,.08); }
.card .icon-badge {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--amber-tint); color: var(--amber-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
  transition: background .2s ease, color .2s ease;
}
.card:hover .icon-badge { background: var(--amber); color: #fff; }
.card h3 { font-size: 17px; margin: 0 0 8px; color: var(--navy); }
.card p { font-size: 14.5px; color: var(--text-secondary); margin: 0 0 14px; }
.card a.card-link { font-size: 13.5px; font-weight: 700; color: var(--navy); }
.card a.card-link i { margin-left: 4px; }

/* ---------- Avis ---------- */
.stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.rating-summary {
  display: flex; align-items: center; gap: 20px;
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  padding: 22px 26px; margin-bottom: 36px;
}
.rating-summary .score { font-size: 40px; font-weight: 800; color: var(--navy); }
.testimonial {
  background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 26px 22px 22px; position: relative;
}
.testimonial .quote-mark { font-size: 32px; color: var(--border); font-weight: 800; line-height: 1; margin-bottom: 6px; font-family: Georgia, serif; }
.testimonial p.quote { font-size: 14.5px; color: var(--text); margin: 0 0 16px; }
.testimonial .author { font-size: 13px; color: var(--text-secondary); font-weight: 600; }

/* ---------- Zone / CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--blue-vivid) 0%, var(--amber) 100%);
  color: #fff;
  padding: 52px 0;
  text-align: center;
}
.cta-band h2 { font-size: 26px; margin: 0 0 12px; }
.cta-band p { color: #CBD6DE; margin: 0 0 24px; }

/* ---------- Breadcrumb / page header ---------- */
.page-header { background: var(--navy); color: #fff; padding: 40px 0 46px; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; }
.breadcrumb { font-size: 13px; color: #9FB0BD; margin: 0 0 12px; }
.breadcrumb a { color: #CBD6DE; }
.page-header h1 { font-size: 30px; margin: 0 0 10px; }
.page-header p { color: #CBD6DE; max-width: 60ch; margin: 0; }
.page-header-photo { position: relative; overflow: hidden; padding: 0; min-height: 300px; display: flex; align-items: center; }
.page-header-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-header-photo .page-header-overlay { position: relative; z-index: 1; width: 100%; background: linear-gradient(90deg, rgba(11,27,46,0.94) 0%, rgba(11,27,46,0.8) 50%, rgba(11,27,46,0.45) 100%); padding: 44px 0; }
.page-header-photo .page-header-overlay p { max-width: 62ch; }


.prose { max-width: 760px; }
.prose h2 { color: var(--navy); font-size: 21px; margin: 34px 0 12px; }
.prose p { color: var(--text-secondary); font-size: 15px; }
.prose ul { padding-left: 20px; color: var(--text-secondary); font-size: 15px; }
.prose li { margin-bottom: 8px; }

.two-col { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.solutions-rows { display: flex; flex-direction: column; gap: 18px; }
.solution-row { align-items: center; position: relative; padding: 74px 0; }
.solution-row-reverse > *:first-child { order: 2; }
.solution-row-reverse > *:last-child { order: 1; }
.solution-row .dc-photo { margin: -46px 0; position: relative; z-index: 2; box-shadow: 0 22px 48px rgba(11,27,46,0.16); height: 340px; }
.solution-row .dc-photo img { height: 100%; }
@media (max-width: 720px) { .solution-row-reverse > *:first-child, .solution-row-reverse > *:last-child { order: initial; } .solution-row { padding: 24px 0; } .solution-row .dc-photo { margin: 0; height: 260px; } }


.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 15px; color: var(--text); }
.list-check li i { color: var(--teal); margin-top: 3px; }

.side-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 22px; }
.side-card h3 { font-size: 16px; color: var(--navy); margin: 0 0 12px; }
.side-card .side-item { display: flex; justify-content: space-between; font-size: 14px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.side-card .side-item:last-child { border-bottom: none; }

.content-panel { background: #fff; border-radius: 22px; padding: 44px 40px; box-shadow: 0 12px 34px rgba(11,27,46,.06); border: 1px solid var(--border); }
@media (max-width: 780px) { .content-panel { padding: 30px 22px; border-radius: 16px; } }

/* ---------- Logos clients ---------- */
.logo-strip { display: flex; flex-wrap: wrap; gap: 14px; margin: 18px 0 40px; }
.logo-chip {
  flex: 1; min-width: 140px; display: flex; align-items: center; justify-content: center;
  height: 64px; background: #fff; border: 1px solid var(--border); border-radius: 8px;
  color: var(--text-secondary); font-size: 13px; font-weight: 700; letter-spacing: 0.02em; text-align: center; padding: 0 10px;
}
.logo-chip-img { padding: 10px 18px; }
.logo-chip-img img { max-width: 100%; max-height: 38px; object-fit: contain; }

/* ---------- Blog ---------- */
.post-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; }
.post-card .post-thumb { width: 100%; height: 160px; object-fit: cover; background: var(--amber-tint); }
.post-card .post-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.post-card .post-date { font-size: 12px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.04em; margin: 0 0 8px; }
.post-card h3 { font-size: 16.5px; margin: 0 0 10px; color: var(--navy); }
.post-card h3 a { color: inherit; }
.post-card p.excerpt { font-size: 14px; color: var(--text-secondary); margin: 0 0 16px; flex: 1; }
.pagination-simple { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--border); border-radius: 8px; background: #fff; margin-bottom: 12px; overflow: hidden; }
.faq-item summary { padding: 16px 20px; font-weight: 700; font-size: 15px; color: var(--navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }
.faq-item .faq-body { padding: 14px 20px 18px; color: var(--text-secondary); font-size: 14.5px; }

/* ---------- Formulaire ---------- */
form.devis-form { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 28px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 14.5px; font-family: inherit; color: var(--text); background: #fcfcfd;
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- Footer ---------- */
footer.site-footer { background: #0E1E2C; color: #A9B7C2; padding: 54px 0 26px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-grid h4 { color: #fff; font-size: 14.5px; margin: 0 0 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 13.5px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #22333F; margin-top: 40px; padding-top: 20px;
  display: flex; justify-content: space-between; font-size: 12.5px; flex-wrap: wrap; gap: 10px;
}
.footer-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; padding-top: 26px; border-top: 1px solid #22333F; }
.footer-badges span { font-size: 12px; color: #7E8FA0; border: 1px solid #22333F; border-radius: 6px; padding: 6px 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .inner { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .segment-choice { grid-template-columns: 1fr; }
  .feature-cols { grid-template-columns: 1fr 1fr; }
  .trust-bar .container { justify-content: flex-start; }
}
@media (max-width: 720px) {
  .menu-toggle { display: block; }
  nav.main-nav { position: fixed; inset: 76px 0 0 0; background: #fff; flex-direction: column; align-items: stretch; padding: 12px; display: none; overflow-y: auto; }
  nav.main-nav.open { display: flex; }
  nav.main-nav > ul { flex-direction: column; width: 100%; }
  .dropdown-panel { position: static; box-shadow: none; display: none; border: none; padding: 0 0 0 14px; }
  li.has-dropdown.open .dropdown-panel { display: block; }
  .header-cta .header-phone { display: none; }
  .grid-6, .grid-5, .grid-3, .grid-2, .form-grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .feature-cols { grid-template-columns: 1fr; }
}

/* ---------- Cartes d'offres (bornes de recharge) ---------- */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 26px; }
.offer-list { margin-top: 26px; }
.offer-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.offer-card .offer-banner { background: var(--blue-vivid); color: #fff; font-weight: 800; font-size: 14px; letter-spacing: .03em; text-transform: uppercase; padding: 12px 22px; }
.offer-card .offer-body { padding: 22px; }
.offer-card .offer-img { width: 100%; height: 150px; object-fit: contain; background: var(--bg); border-radius: 8px; padding: 10px; margin: 0 0 14px; }
.offer-card .offer-tag { font-size: 12px; font-weight: 700; color: var(--amber); text-transform: uppercase; letter-spacing: .04em; margin: 0 0 6px; }
.offer-card h3 { margin: 0 0 8px; font-size: 19px; color: var(--navy); }
.offer-card .offer-desc { font-size: 14px; color: var(--text-secondary); margin: 0 0 12px; }
.offer-card .offer-price { font-weight: 700; color: var(--navy); font-size: 14.5px; margin: 0 0 12px; }
.offer-card .offer-specs { list-style: none; margin: 0; padding: 0; font-size: 13px; color: var(--text-secondary); }
.offer-card .offer-specs li { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.offer-card .offer-specs .spec-ico { flex-shrink: 0; display: inline-flex; width: 18px; height: 18px; color: var(--amber); margin-top: 1px; }

/* ---------- Fiches produit v2 (image + panneau highlights) ---------- */
.offer-card-v2 { position: relative; background: #fff; border: 1px solid var(--border); border-radius: 14px; margin-bottom: 24px; padding: 36px 38px 30px; box-shadow: 0 14px 32px rgba(11,27,46,0.09), 0 2px 8px rgba(11,27,46,0.05); transition: transform .2s ease, box-shadow .2s ease; }
.offer-card-v2:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(11,27,46,0.13), 0 4px 10px rgba(11,27,46,0.07); }
.offer-card-v2:last-child { margin-bottom: 0; }
.offer-head { text-align: center; margin-bottom: 26px; }
.offer-badge { display: inline-block; background: var(--amber); color: #fff; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; padding: 6px 16px; border-radius: 999px; margin-bottom: 14px; }
.offer-head .offer-tag { display: block; font-size: 12px; font-weight: 700; color: var(--amber); text-transform: uppercase; letter-spacing: .04em; margin: 0 0 8px; }
.offer-head .offer-name { margin: 0; font-size: 23px; color: var(--navy); font-weight: 800; }
.offer-v2-body { display: grid; grid-template-columns: .85fr 1fr; gap: 34px; align-items: center; }
.offer-v2-media { text-align: center; }
.offer-v2-media img { max-width: 100%; max-height: 220px; object-fit: contain; display: block; margin: 0 auto; }
.feature-checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.feature-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--navy); font-weight: 600; line-height: 1.4; }
.feature-checklist li svg { flex-shrink: 0; width: 19px; height: 19px; color: var(--amber); margin-top: 1px; }
.offer-v2-footer { text-align: center; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.offer-v2-footer .offer-price { font-weight: 700; color: var(--navy); font-size: 16.5px; margin: 0 0 14px; }
.offer-v2-footer .offer-price small { display: block; font-weight: 500; font-size: 12px; color: var(--text-secondary); margin-top: 5px; }
@media (max-width: 900px) { .offer-v2-body { grid-template-columns: 1fr; } .offer-v2-media { margin-bottom: 4px; } }

/* ---------- Bandeau intro avec photo de fond ---------- */
.intro-banner { position: relative; border-radius: 14px; overflow: hidden; margin-bottom: 30px; min-height: 260px; display: flex; align-items: center; }
.intro-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.intro-banner .intro-overlay { position: relative; z-index: 1; background: linear-gradient(90deg, rgba(11,27,46,0.92) 0%, rgba(11,27,46,0.72) 55%, rgba(11,27,46,0.35) 100%); width: 100%; height: 100%; padding: 40px; display: flex; align-items: center; }
.intro-banner .intro-overlay .inner { max-width: 560px; }
.intro-banner h2 { color: #fff; font-size: 26px; margin: 0 0 12px; }
.intro-banner p { color: #DCE4F0; font-size: 15px; margin: 0; }
@media (max-width: 720px) {
  .offer-grid { grid-template-columns: 1fr; }
}

/* ---------- Carrousels génériques (défilement horizontal) ---------- */
.carousel-scroll { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 16px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.carousel-scroll > * { scroll-snap-align: start; flex: 0 0 auto; }

/* Réalisations : petites cartes façon WeWise (image encadrée, coins arrondis) */
.carousel-scroll.gallery-carousel { padding-top: 6px; }
.carousel-scroll.gallery-carousel > .gallery-tile {
  width: 260px;
  aspect-ratio: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(11,27,46,.05);
}
.carousel-scroll.gallery-carousel > .gallery-tile img {
  border-radius: 10px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Réalisations : diaporama une photo à la fois */
.realisation-slideshow { position: relative; max-width: 640px; margin-left: auto; margin-right: auto; border-radius: 18px; overflow: hidden; box-shadow: 0 14px 32px rgba(11,27,46,0.1); aspect-ratio: 4/3; background: #fff; }
.realisation-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.realisation-slide.is-active { opacity: 1; z-index: 1; }
.realisation-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.realisation-dots { position: absolute; left: 0; right: 0; bottom: 14px; z-index: 2; display: flex; justify-content: center; gap: 8px; }
.realisation-dots .realisation-dot { width: 9px; height: 9px; padding: 0; border-radius: 50%; border: none; background: rgba(255,255,255,0.55); cursor: pointer; transition: background .2s ease, transform .2s ease; }
.realisation-dots .realisation-dot.is-active { background: #fff; transform: scale(1.2); }

.carousel-scroll.offer-list { margin-top: 26px; }
.carousel-scroll.offer-list > .offer-card-v2 { width: 420px; margin-bottom: 0; padding: 24px 28px 20px; }
.carousel-scroll.offer-list > .offer-card-v2 .offer-v2-body { grid-template-columns: 1fr; }
.carousel-scroll.offer-list > .offer-card-v2 .offer-v2-media { margin-bottom: 4px; }
.carousel-scroll.offer-list > .offer-card-v2 .offer-v2-media img { max-height: 160px; }
.carousel-scroll.offer-list > .offer-card-v2 .offer-head { margin-bottom: 16px; }
.carousel-scroll.offer-list > .offer-card-v2 .feature-checklist { gap: 10px; }
.carousel-scroll.offer-list > .offer-card-v2 .offer-v2-footer { margin-top: 18px; padding-top: 16px; }

.carousel-scroll.dc-product-grid > .dc-product-card { width: 320px; }

/* ---------- Bande logos en défilement continu (marquee) ---------- */
.marquee-track { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track .logo-strip { display: flex; flex-wrap: nowrap; gap: 14px; width: max-content; animation: marquee-scroll 32s linear infinite; margin: 18px 0 40px; }
.marquee-track:hover .logo-strip { animation-play-state: paused; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* ---------- Animation d'apparition du hero au chargement ---------- */
@keyframes heroFadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-animate { animation: heroFadeInUp .8s ease both; }
.hero-fullbleed-content.hero-animate h1 { animation: heroFadeInUp .7s ease .1s both; }
.hero-fullbleed-content.hero-animate p.lead { animation: heroFadeInUp .7s ease .25s both; }
.hero-fullbleed-content.hero-animate a.btn { animation: heroFadeInUp .7s ease .4s both; }

.page-hero-split .container > div:first-child > * { animation: heroFadeInUp .7s ease both; }
.page-hero-split .container > div:first-child > *:nth-child(1) { animation-delay: .05s; }
.page-hero-split .container > div:first-child > *:nth-child(2) { animation-delay: .18s; }
.page-hero-split .container > div:first-child > *:nth-child(3) { animation-delay: .3s; }
.page-hero-split .container > div:first-child > *:nth-child(4) { animation-delay: .4s; }

/* ---------- Contrat 3 ans: grille sur une ligne + CTA dissocié ---------- */
.spread-tiles-lg { grid-template-columns: repeat(4, 1fr); }
.spread-tiles-lg .spread-illus { width: 68px; height: 68px; margin-bottom: 16px; }
.spread-tiles-lg .spread-tile { padding: 26px 22px; }
.spread-tiles-lg h4 { font-size: 16px; }
.spread-tiles-lg p { font-size: 13.5px; }
@media (max-width: 900px) { .spread-tiles-lg { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .spread-tiles-lg { grid-template-columns: 1fr; } }
.checklist-inline { list-style: none; margin: 0; padding: 0; display: inline-flex; flex-wrap: wrap; gap: 10px 24px; justify-content: center; }
.checklist-inline li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--navy); font-weight: 600; }
.checklist-inline li svg { color: var(--amber); flex: none; }


/* ---------- Animations au scroll (titres, boutons) ---------- */
.reveal-on-scroll { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll { opacity: 1; transform: none; transition: none; }
}