:root {
  --green: #009B4D;
  --green-deep: #006C36;
  --green-light: #42C878;
  --white: #FFFFFF;
  --anthracite: #2B2F33;
  --grey-light: #EAEFF2;
  --grey-mid: #C7D0D6;
  --font-display: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --max-w: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-display);
  color: var(--anthracite);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* ---------- Header ---------- */
header.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-light);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 48px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 50px; width: auto; }
@media (max-width: 640px) {
  .brand img { height: 42px; }
}
.bio-card { flex-direction: row; }
@media (max-width: 560px) {
  .bio-card { flex-direction: column !important; text-align: center; }
  .bio-card img { margin: 0 auto; }
}
nav.main-nav { display: flex; align-items: center; gap: 30px; }
nav.main-nav a {
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--anthracite); position: relative; padding: 6px 0;
}
nav.main-nav a.active, nav.main-nav a:hover { color: var(--green-deep); }
nav.main-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--green);
}
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-size: 14px; font-weight: 600; color: var(--anthracite); padding: 6px 0;
}
.nav-dropdown.active .nav-dropdown-toggle { color: var(--green-deep); }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--white); border: 1px solid var(--grey-light); border-radius: 10px;
  box-shadow: 0 12px 24px rgba(20,30,25,.1); min-width: 200px; padding: 8px; z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 10px 12px; font-size: 14px; border-radius: 6px; }
.nav-dropdown-menu a:hover { background: var(--grey-light); }
.btn {
  display: inline-block; font-weight: 700; font-size: 13.5px;
  letter-spacing: 0.02em; padding: 11px 24px; border-radius: 999px;
  white-space: nowrap; line-height: 1.3;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,155,77,.28); }
nav.main-nav a.btn-primary { color: var(--white) !important; padding: 11px 26px; }
nav.main-nav a.btn-primary:hover { color: var(--white) !important; }
.btn-outline { border: 1.5px solid var(--anthracite); color: var(--anthracite); }
.btn-outline:hover { border-color: var(--green-deep); color: var(--green-deep); }
.btn-ghost-white { border: 1.5px solid rgba(255,255,255,.7); color: var(--white); }
.btn-ghost-white:hover { background: rgba(255,255,255,.12); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px; padding: 0;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--anthracite); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero with network canvas signature ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #071b12 0%, #0b2a1c 55%, var(--green-deep) 140%);
  color: var(--white);
}
.hero canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .55; }
.hero .hero-photo {
  position: absolute; inset: 0;
  opacity: .5;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(66,200,120,.35) 0, transparent 45%),
    radial-gradient(circle at 82% 70%, rgba(0,155,77,.3) 0, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='2' cy='2' r='1.4' fill='%2342C878' fill-opacity='0.35'/%3E%3C/svg%3E");
  background-size: cover, cover, 60px 60px;
}

/* Self-contained illustrative panels (replace external photos) */
.visual-panel {
  border-radius: 20px; overflow: hidden; position: relative;
  min-height: 320px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(155deg, #06170f 0%, var(--green-deep) 60%, var(--green) 130%);
}
.visual-panel svg { width: 82%; height: auto; position: relative; z-index: 2; }
.visual-panel::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: radial-gradient(circle at 25% 30%, rgba(255,255,255,.12) 0, transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='1.5' cy='1.5' r='1.2' fill='%23ffffff' fill-opacity='0.18'/%3E%3C/svg%3E");
  background-size: cover, 40px 40px;
}
.visual-panel.light { background: linear-gradient(155deg, #f2f6f4 0%, var(--grey-light) 100%); }
.visual-panel.light::before { display: none; }
.visual-panel.light svg { filter: none; }

/* Photographic banners (real photos, hosted — require internet to load; gradient fallback shows if not) */
.photo-band {
  position: relative; border-radius: 20px; overflow: hidden;
  min-height: 340px; background: linear-gradient(155deg, #06170f 0%, var(--green-deep) 65%, var(--green) 130%);
}
.photo-band img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.photo-band .caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(3,15,9,.85) 0%, transparent 100%);
  color: #fff; padding: 26px 28px 18px; font-size: 13.5px; font-weight: 600;
}
.hero .hero-inner {
  position: relative; z-index: 2;
  padding-top: 150px; padding-bottom: 110px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green-light); box-shadow: 0 0 0 4px rgba(66,200,120,.25); }
.hero h1 {
  font-size: clamp(34px, 5.2vw, 58px); font-weight: 800; line-height: 1.08;
  margin: 0 0 22px; max-width: 780px; letter-spacing: -0.01em;
}
.hero p.lead {
  font-size: 18px; max-width: 600px; color: rgba(255,255,255,.82); margin: 0 0 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Stat strip ---------- */
.stat-strip {
  background: var(--anthracite); color: var(--white);
  padding: 30px 0;
}
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-grid .stat { text-align: left; }
.stat .num { font-size: clamp(22px, 2.4vw, 32px); font-weight: 800; color: var(--green-light); line-height: 1; }
.stat .label { font-size: 12.5px; color: rgba(255,255,255,.65); margin-top: 8px; }
.stat .src { font-size: 10.5px; color: rgba(255,255,255,.4); margin-top: 4px; display: block; }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
.section-head { max-width: 680px; margin-bottom: 52px; }
.kicker {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-deep); margin-bottom: 14px; display: block;
}
h2.section-title { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; margin: 0 0 16px; letter-spacing: -0.01em; }
.section-head p { font-size: 16.5px; color: #52585e; margin: 0; }
.bg-grey { background: var(--grey-light); }
.bg-anthracite { background: var(--anthracite); color: var(--white); }
.bg-anthracite .section-head p { color: rgba(255,255,255,.7); }
.bg-anthracite .kicker { color: var(--green-light); }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card {
  background: var(--white); border: 1px solid var(--grey-light); border-radius: 16px;
  padding: 32px; box-shadow: 0 1px 2px rgba(20,30,25,.03);
}
.card .icon-num {
  width: 40px; height: 40px; border-radius: 10px; background: var(--grey-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--green-deep); font-size: 15px; margin-bottom: 20px;
}
.card h3 { font-size: 18px; margin: 0 0 10px; font-weight: 700; }
.card p { font-size: 14.5px; color: #565c62; margin: 0; }

/* ---------- Photo blocks ---------- */
.photo-panel {
  border-radius: 20px; overflow: hidden; position: relative;
  min-height: 320px; background-size: cover; background-position: center;
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .photo-panel { order: 2; }
.split h2 { font-size: clamp(24px,3vw,32px); font-weight: 800; margin: 0 0 18px; }
.split p { color: #4d5359; font-size: 15.5px; }
ul.check-list { list-style: none; margin: 22px 0 0; padding: 0; }
ul.check-list li {
  padding-left: 30px; position: relative; margin-bottom: 14px; font-size: 15px; color: #3b4046;
}
ul.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%; background: var(--green);
  color: #fff; font-size: 12px; display: flex; align-items: center; justify-content: center;
}

/* ---------- Timeline (roadmap) ---------- */
.roadmap { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.roadmap .phase {
  border-top: 3px solid var(--green); padding-top: 16px;
}
.roadmap .phase .n { font-size: 12px; font-weight: 800; color: var(--green-deep); letter-spacing: .06em; }
.roadmap .phase h4 { font-size: 14.5px; margin: 8px 0 6px; }
.roadmap .phase p { font-size: 12.5px; color: #656b71; margin: 0; }

/* ---------- Table ---------- */
table.data { width: 100%; border-collapse: collapse; font-size: 14.5px; }
table.data th, table.data td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--grey-light); }
table.data th { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: #6b7177; }
table.data td.num { font-weight: 700; color: var(--green-deep); }

/* ---------- Risk accordion-ish list ---------- */
.risk-item { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--grey-light); }
.risk-item h4 { margin: 0; font-size: 15px; color: var(--green-deep); }
.risk-item p { margin: 0; font-size: 14.5px; color: #4d5359; }

/* ---------- Note / legal ---------- */
.note-box {
  background: var(--grey-light); border-left: 3px solid var(--green);
  border-radius: 4px; padding: 18px 22px; font-size: 13.5px; color: #4a5056;
}
.legal-banner { background: #f4f6f7; border-top: 1px solid var(--grey-mid); padding: 22px 0; font-size: 12.5px; color: #6b7177; }

/* ---------- Launch banner (bandeau "Bientôt disponible") ---------- */
.launch-banner {
  background: var(--anthracite); text-align: center; padding: 10px 0;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); letter-spacing: .01em;
}
.launch-banner strong { color: var(--green-light); font-weight: 800; }

/* ---------- Credibility badge ---------- */
.badge-credibility {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.35);
  color: #fff; font-size: 13.5px; font-weight: 700;
  padding: 10px 18px; border-radius: 999px; margin: 22px 0 6px;
}
.badge-credibility.on-light {
  background: rgba(0,155,77,.08); border-color: rgba(0,155,77,.25); color: var(--green-deep);
}

/* ---------- Forms ---------- */
.site-form { max-width: 560px; }
.site-form .form-row { margin-bottom: 18px; }
.site-form label {
  display: block; font-size: 13px; font-weight: 700; color: var(--anthracite);
  margin-bottom: 7px; letter-spacing: .01em;
}
.site-form input, .site-form textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--grey-mid); border-radius: 8px;
  font-family: var(--font-display); font-size: 15px; color: var(--anthracite); background: var(--white);
  transition: border-color .15s ease;
}
.site-form input:focus, .site-form textarea:focus { outline: none; border-color: var(--green); }
.site-form textarea { resize: vertical; min-height: 120px; }
.site-form .btn { border: none; cursor: pointer; width: 100%; font-size: 15.5px; padding: 15px 22px; }
.site-form .form-note { font-size: 13px; color: #6b7177; margin-top: 14px; text-align: center; }
.site-form .form-status { font-size: 14px; font-weight: 600; margin-top: 16px; text-align: center; min-height: 20px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* ---------- Offer cards ---------- */
.offer-note { font-size: 13.5px; color: #6b7177; font-style: italic; margin-top: 18px; }

/* ---------- Persistent MVNO badge banner ---------- */
.mvno-banner {
  background: var(--green-deep); text-align: center;
}
.mvno-banner a {
  display: block; color: #fff; font-size: 13px; font-weight: 700;
  padding: 10px 0; letter-spacing: 0.01em;
}
.mvno-banner a:hover { background: var(--green); }
@media (max-width: 640px) {
  .mvno-banner a { font-size: 11.5px; padding: 9px 12px; }
}

/* ---------- Sticky primary CTA ---------- */
.sticky-cta {
  position: fixed; right: 24px; bottom: 24px; z-index: 200;
  box-shadow: 0 10px 30px rgba(0,60,30,.28);
  border-radius: 999px;
}
.sticky-cta .btn { font-size: 13.5px; padding: 13px 22px; }
@media (max-width: 640px) {
  .sticky-cta { right: 14px; bottom: 14px; }
  .sticky-cta .btn { padding: 10px 16px; font-size: 12px; box-shadow: 0 6px 16px rgba(0,60,30,.35); }
}
@media (max-width: 640px) {
  section:last-of-type, .cta-band { padding-bottom: 110px; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: radial-gradient(120% 140% at 20% 0%, var(--green-deep), #04140c 78%);
  color: var(--white); text-align: center; padding: 90px 0; position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(26px,3.4vw,36px); font-weight: 800; margin: 0 0 16px; }
.cta-band p { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 34px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--anthracite); color: rgba(255,255,255,.65); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h5 { color: var(--white); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin: 0 0 16px; }
.footer-grid a, .footer-grid p { font-size: 13.5px; color: rgba(255,255,255,.6); display: block; margin-bottom: 10px; }
.footer-grid a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px;
  display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 10px;
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.tag {
  display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  background: rgba(0,155,77,.1); color: var(--green-deep); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .roadmap { grid-template-columns: repeat(2,1fr); }
  .split, .footer-grid { grid-template-columns: 1fr; }
  .split.reverse .photo-panel { order: 0; }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 24px; }
  .nav-row { position: relative; }
  .nav-toggle { display: flex; }
  nav.main-nav {
    display: none;
    position: absolute; top: calc(100% + 1px); left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--grey-light);
    box-shadow: 0 12px 24px rgba(20,30,25,.08);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 24px 18px;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a:not(.btn) {
    padding: 13px 0; border-bottom: 1px solid var(--grey-light);
    font-size: 15px;
  }
  nav.main-nav a.btn { margin-top: 14px; text-align: center; }
  .nav-dropdown-menu {
    display: block; position: static; box-shadow: none; border: none;
    padding: 0 0 0 16px; margin-top: 2px;
  }
  .nav-dropdown-toggle { display: block; padding: 13px 0; border-bottom: 1px solid var(--grey-light); }
  .nav-dropdown-menu a { padding: 10px 0; font-size: 14px; border-bottom: none; }

  .grid-3, .grid-2, .roadmap { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat .num { font-size: 26px; word-break: break-word; }
  .hero .hero-inner { padding-top: 110px; padding-bottom: 80px; }
  .hero { min-height: 420px !important; }
  section { padding: 56px 0; }

  .risk-item { grid-template-columns: 1fr; gap: 6px; padding: 18px 4px; }
  .risk-item h4 { font-size: 15.5px; padding-left: 2px; }
  .risk-item p { padding-left: 2px; }
  .card { padding: 26px 22px; }
  .note-box { padding: 18px 20px; margin-left: 2px; margin-right: 2px; }
  .roadmap .phase { padding-left: 2px; padding-right: 2px; }
  .cta-band, .cta-band .wrap { padding-left: 24px; padding-right: 24px; }
  .split, .footer-grid { padding-left: 2px; padding-right: 2px; }

  .table-scroll { overflow-x: visible; margin: 0; padding: 0; }
  .table-scroll table.data,
  .table-scroll table.data thead,
  .table-scroll table.data tbody,
  .table-scroll table.data th,
  .table-scroll table.data td,
  .table-scroll table.data tr { display: block; width: 100%; min-width: 0; }
  .table-scroll table.data thead { display: none; }
  .table-scroll table.data tr { border-bottom: 1px solid var(--grey-light); padding: 14px 0; }
  .table-scroll table.data td { padding: 3px 0; border: none; white-space: normal; }
  .table-scroll table.data td:first-child { font-weight: 700; color: var(--anthracite); font-size: 15px; }
}
@media (max-width: 400px) {
  .wrap { padding: 0 20px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero canvas { display: none; }
}


/* Ajustements page unique */
.launch-banner { background: var(--anthracite); text-align: center; padding: 10px 0; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); }
.launch-banner strong { color: var(--green-light); font-weight: 800; }


/* ---------- Accessibilité : navigation clavier ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--green-deep); color: #fff; padding: 14px 22px;
  border-radius: 0 0 8px 0; font-weight: 700; font-size: 14px;
}
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--green-light); outline-offset: 2px;
}

/* ---------- Bandeau de consentement cookies ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 500;
  background: var(--anthracite); color: rgba(255,255,255,.9);
  padding: 20px 24px; display: none;
  box-shadow: 0 -8px 24px rgba(0,0,0,.25);
}
.cookie-banner.visible { display: block; }
.cookie-banner-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cookie-banner p { margin: 0; font-size: 13.5px; max-width: 640px; color: rgba(255,255,255,.75); }
.cookie-banner a { text-decoration: underline; color: #fff; cursor: pointer; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-actions button {
  border: none; cursor: pointer; font-family: var(--font-display); font-weight: 700;
  font-size: 13.5px; padding: 11px 20px; border-radius: 999px;
}
.cookie-accept { background: var(--green); color: #fff; }
.cookie-decline { background: transparent; color: rgba(255,255,255,.75); border: 1.5px solid rgba(255,255,255,.35) !important; }
@media (max-width: 640px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-actions { justify-content: center; }
}

/* ---------- Section Pourquoi EasyCom (cartes + photo) ---------- */
.pourquoi-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.pourquoi-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-content: start; }
.pourquoi-photo { position: relative; border-radius: 20px; overflow: hidden; min-height: 100%; background: var(--grey-light); }
.pourquoi-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; position: absolute; inset: 0; }
.pourquoi-photo .caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(3,15,9,.85) 0%, transparent 100%);
  color: #fff; padding: 30px 26px 20px; font-size: 13.5px; font-weight: 600; line-height: 1.5;
}
@media (max-width: 800px) {
  .pourquoi-layout { grid-template-columns: 1fr; }
  .pourquoi-cards { grid-template-columns: 1fr 1fr; }
  .pourquoi-photo { min-height: 320px; }
}

/* ---------- Icônes d'offres (remplace les emojis) ---------- */
.offer-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(0,155,77,.09); color: var(--green-deep);
  margin-bottom: 16px;
}
.offer-icon svg { width: 26px; height: 26px; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--grey-mid); padding: 22px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 17px; margin: 0 0 10px; color: var(--anthracite); }
.faq-item p { margin: 0; color: #565c62; font-size: 15px; }

/* ---------- Case de consentement DCP ---------- */
.consent-row { margin-bottom: 22px !important; }
.consent-label {
  display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
  font-size: 13.5px; line-height: 1.5; color: #4a5157; font-weight: 400 !important;
}
.consent-label input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px; margin-top: 2px; accent-color: var(--green); cursor: pointer;
}
.consent-label a { color: var(--green-deep); font-weight: 700; text-decoration: underline; cursor: pointer; }

/* ---------- Page teasing pré-lancement ---------- */
.teasing-banner {
  background: var(--anthracite); text-align: center; padding: 13px 0;
  font-size: 15px; font-weight: 700; letter-spacing: 0.03em; color: rgba(255,255,255,.9);
}
.teasing-banner strong { color: var(--green-light); font-weight: 800; }
.teasing-header { padding: 28px 0; text-align: center; }
.teasing-header img { height: 46px; }
.teasing-combined { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; max-width: 1100px; margin: 0 auto; }
.teasing-signature { position: relative; border-radius: 20px; overflow: hidden; min-height: 480px; }
.teasing-signature img { width: 100%; height: 100%; object-fit: cover; object-position: top center; position: absolute; inset: 0; }
.teasing-signature .caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(3,15,9,.88) 0%, transparent 100%);
  color: #fff; padding: 34px 28px 22px; font-size: 13.5px; font-weight: 600; line-height: 1.5;
}
@media (max-width: 800px) {
  .teasing-combined { grid-template-columns: 1fr; }
  .teasing-signature { min-height: 380px; }
}
