/* =====================================================
   DIABLO STREAMING — BASE THEME
   From scratch 🔥❄️
===================================================== */

:root{
  --bg-night: #0b1324;
  --bg-night-2: #0e1a33;

  --snow: #ffffff;
  --snow-soft: rgba(255,255,255,.85);

  --red: #e11d48;
  --orange: #f97316;

  --text-main: #f8fafc;
  --text-muted: rgba(255,255,255,.7);

  --radius-xl: 28px;
  --radius-lg: 20px;

  --shadow-soft: 0 20px 40px rgba(0,0,0,.25);
}

/* RESET LIGHT */
*{ box-sizing:border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* BASE GRADIENT */
  background:
    radial-gradient(1200px 600px at 20% 15%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(1000px 500px at 80% 25%, rgba(186,230,253,.12), transparent 55%),
    linear-gradient(
      180deg,
      #1e3fa8 0%,
      #1b357f 40%,
      #162a5c 75%,
      #0f1f44 100%
    );

  color: #ffffff;
  position: relative;
  overflow-x: hidden;
}
/* =====================================================
   WINTER SNOW OVERLAY (VISIBLE)
===================================================== */

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;

  background-image: url("/themes/diablostreaming/assets/img/ui/snow-noise.png");
  background-repeat: repeat;
  background-size: 500px 500px;

  opacity: 0.25;
  filter: blur(0.3px);
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;

  background-image: url("/themes/diablostreaming/assets/img/ui/snow-noise.png");
  background-repeat: repeat;
  background-size: 900px 900px;

  opacity: 0.18;
  filter: blur(1.6px);
}



img{ max-width:100%; display:block; }

/* CONTAINER */
.lp-container,
.d-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

/* =====================================================
   NAVBAR
===================================================== */
.d-nav{
  position:sticky;
  top:0;
  z-index:1000;
  background: rgba(11,19,36,.75);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

/* BRAND (logo + texte) */
.d-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;  /* garde l’espace à gauche */
  text-decoration: none;
}

/* le logo lui-même */
.d-brand-icon{
  width:44px;
  height:44px;
  flex: 0 0 44px;
  object-fit: contain;
  display:block;
}

/* fallback emoji même taille */
.d-brand-fallback{
  width:44px;
  height:44px;
  flex: 0 0 44px;
  display:grid;
  place-items:center;
  font-size: 24px;
}

.d-brand-text{
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.d-brand-name{
  font-weight: 800;
  letter-spacing: 1px;
}

.d-brand-sub{
  font-size: 12px;
  letter-spacing: 3px;
  opacity: .85;
}



.d-nav-menu .nav-link{
  color:var(--snow-soft);
  font-weight:600;
  padding:10px 14px;
  border-radius:16px;       /* ✅ au lieu de 999px */
  line-height:1.05;         /* ✅ 2 lignes plus compact */
  text-align:center;        /* ✅ */
  display:flex;             /* ✅ centre vertical */
  align-items:center;
  justify-content:center;
  min-height:44px;          /* ✅ évite les hauteurs différentes */
}

.d-nav-menu .nav-link:hover,
.d-nav-menu .nav-link.active{
  background: rgba(255,255,255,.1);
}

/* pills droite */
.d-pill-btn,
.d-pill-select{
  background: rgba(255,255,255,.1);
  border:none;
  color:white;
  border-radius:999px;
}

/* ===== Header layout fix (stable even if logo missing) ===== */

/* Le container du nav doit matcher la largeur du site */
.d-nav .d-nav-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Bootstrap: on force un layout propre */
.d-nav .navbar-collapse{
  justify-content: space-between;
  align-items: center;
}

/* Réserve une “case” pour l’icône même si l’image ne load pas */
.d-brand-icon,
.d-brand-fallback{
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: block;
}

/* Menu vraiment centré */
.d-nav-menu{
  flex: 1;
  justify-content: center;
}

/* Nav links: alignement propre sur 2 lignes */
.d-nav-menu .nav-link{
  text-align: center;
  line-height: 1.05;
  padding: 10px 12px;
}

/* Empêche que le <br> fasse des hauteurs bizarres */
.d-nav-menu .nav-link br{
  content: "";
}

/* =====================================================
   HERO
===================================================== */
.d-hero{
  background:
    radial-gradient(
      900px 500px at 35% 40%,
      rgba(255,255,255,.14),
      transparent 65%
    );
}
.d-hero{ padding-top: 56px; padding-bottom: 44px; }

.d-hero-right .d-img-card{
  max-width: 720px;
  margin-left: auto;
}

/* Sections restent full width, pas de boîte centrale */
.d-hero,
.d-section{
  background: none;
}
.d-support-grid{
  margin: 22px 0 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 26px;
}

.d-support-grid div{
  font-weight: 700;
  color: rgba(255,255,255,.92);
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.d-support-grid div::before{
  content: "✓";
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  margin-top: 3px;
}

.d-support-cta{
  margin-top: 28px;
  text-align: center;
}

@media (max-width: 768px){
  .d-support-grid{ grid-template-columns: 1fr; }
}


/* Halo full width (optionnel) */
.d-hero{
  background-image:
    radial-gradient(900px 500px at 35% 40%, rgba(255,255,255,.10), transparent 65%);
}

/* Glass panel seulement sur la zone contenu */
.d-hero-inner,
.d-section-inner{
  background: rgba(30, 60, 140, 0.22);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  gap: 48px;
  padding: 24px;
  backdrop-filter: blur(8px);
}


.d-sub{
  color: rgba(255,255,255,.85);
}


.d-hero-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:60px;
  align-items:center;
}

.d-kicker{
  text-transform:uppercase;
  letter-spacing:.15em;
  font-size:12px;
  opacity:.7;
}

.d-title{
  font-size:clamp(36px, 5vw, 56px);
  font-weight:900;
  line-height:1.1;
  margin:16px 0;
}
.d-title-accent{
  color:var(--red);
}

.d-sub{
  max-width:520px;
  color:var(--text-muted);
}

.d-cta{
  display:flex;
  gap:16px;
  margin-top:30px;
}

/* buttons */
.d-btn{
  padding:14px 26px;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.d-btn-primary{
  background: linear-gradient(135deg, var(--red), var(--orange));
  color:white;
  box-shadow: 0 0 30px rgba(249,115,22,.45);
}
.d-btn-primary:hover{
  transform: translateY(-2px);
}

.d-btn-ghost{
  border:1px solid rgba(255,255,255,.25);
  color:white;
}

/* =====================================================
   ALTERNATING SECTIONS
===================================================== */
.d-section{
  padding:100px 0;
}

.d-section-inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:60px;
  align-items:center;
}

/* ✅ Reverse stable: on inverse l'ordre sans RTL */
.d-section.reverse .d-section-inner{
  direction: ltr;        /* important: pas de rtl */
  text-align: left;
}

/* Les 2 colonnes restent pareilles, on switch juste l'ordre visuel */
.d-section.reverse .d-section-inner > .d-img-card{
  order: 2;              /* image à droite */
}

.d-section.reverse .d-section-inner > div{
  order: 1;              /* texte à gauche */
  text-align: left;
}

/* marge visuelle "propre" */
.d-section.reverse .d-section-inner > div{
  padding-right: 14px;   /* petit confort, optionnel */
}


.d-section.s6-right .d-section-inner > div:first-child{
  text-align:right;
}

.d-section h2{
  font-size:42px;
  font-weight:900;
}
.d-section p{
  color:var(--text-muted);
  max-width:520px;
}

/* image card */
.d-img-card{
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.d-section{
  position: relative;
  padding: 100px 0;
  background-color: rgba(30, 60, 140, 0.86); /* baisse = plus tempête */
  background-image:
    radial-gradient(900px 420px at 50% 40%, rgba(56,189,248,.14), transparent 65%);
}

.d-section:nth-of-type(even){
  background-image:
    radial-gradient(900px 420px at 50% 40%, rgba(186,230,253,.14), transparent 65%);
}

.d-text-panel{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 26px 26px;
  backdrop-filter: blur(8px);
}
/* évite de reset le background de TOUTES les sections */
section{
  background: none;
}

main,
section,
nav {
  position: relative;
  z-index: 1;
}

@media (min-width: 1400px){
  .lp-container, .d-container{ max-width: 1320px; }
}
@media (min-width: 1700px){
  .lp-container, .d-container{ max-width: 1380px; }
}
@media (min-width: 1400px){
  .d-title{ font-size: 52px; } /* au lieu de laisser 5vw pousser trop */
}

/* =========================================
   CATEGORIES PAGE (hero + cards)
========================================= */

.hero-home-bg.hero-streaming{
  padding: 70px 0 90px;
}

/* IMPORTANT: l’overlay doit rester "normal", pas absolute */
.categories-overlay{
  position: relative;
  margin-top: 26px;
  padding-bottom: 10px;
}

.service-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 38px rgba(0,0,0,.20);

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-card span{
  padding: 14px 14px 16px;
  font-weight: 800;
  letter-spacing: .02em;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}

.service-link:hover .service-card{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 24px 48px rgba(0,0,0,.28);
}
/* =====================================================
   CATEGORY / PRODUCTS — COMPACT CATALOG MODE
===================================================== */

/* GRID: 4 produits par ligne desktop */
.products-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* fallback tablette */
@media (max-width: 1200px){
  .products-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px){
  .products-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px){
  .products-grid{
    grid-template-columns: 1fr;
  }
}
/* CATEGORY page only – fill the screen so no blue strip under footer */
.hero-products{
  min-height: calc(100vh - 220px); /* ajuste 220px si besoin */
  padding-bottom: 60px;            /* garde un peu d’air avant footer */
}
@media (max-width: 768px){
  .hero-products{ min-height: calc(100vh - 260px); }
}


/* CARD ultra compacte */
.product-card{
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
}

/* IMAGE = vignette */
.product-img-wrapper{
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
}
.product-img{
  height: 115px;          /* ⬅️ clé */
  object-fit: contain;
}

/* TITRE serré */
.product-title{
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  margin: 6px 0 2px;
}

/* DESC très courte */
.product-desc{
  font-size: 12px;
  line-height: 1.35;
  min-height: 32px;
  opacity: .75;
}

/* PRIX compact */
.product-price{
  margin-top: 6px;
}
.promo-price,
.normal-price{
  font-size: 16px;
  font-weight: 800;
}
.old-price{
  font-size: 12px;
}

/* BOUTON discret */
.product-card .btn{
  margin-top: 8px;
  padding: 8px 10px;
  font-size: 13px;
  border-radius: 999px;
}

/* CART page only – fill the screen so no blue strip under footer */
.cart-summary-desktop{
  min-height: calc(100vh - 220px); /* même logique que category */
}

/* le conteneur principal du panier (table + résumé) */
.cart-page,
.cart-wrapper,
.cart-container{
  min-height: calc(100vh - 220px);
  padding-bottom: 60px;
}

/* mobile */
@media (max-width: 768px){
  .cart-summary-desktop,
  .cart-page,
  .cart-wrapper,
  .cart-container{
    min-height: calc(100vh - 260px);
  }
}
/* LOGIN page (fallback) */
.login-wrap{
  min-height: calc(100vh - 220px);
  padding-bottom: 60px;
}

@media (max-width: 768px){
  .login-wrap{ min-height: calc(100vh - 260px); }
}
/* FORGOT PASSWORD – tighter vertical fit */
body .container[style*="max-width:480px"]{
  min-height: calc(100vh - 310px); /* ⬅️ réduit l’espace */
  padding-bottom: 24px;            /* ⬅️ beaucoup moins d’air */
}

@media (max-width: 768px){
  body .container[style*="max-width:480px"]{
    min-height: calc(100vh - 340px);
    padding-bottom: 20px;
  }
}

/* =========================================
   DEVICES PAGE (hero + cards) — like Categories
   - pas de colonne vide à droite
   - cards grid
   - images 100% visibles (no crop)
========================================= */

.hero-devices{
  padding: 70px 0 90px;
  position: relative;
}

/* conteneur glass comme catégories */
.hero-devices-inner{
  max-width: 1180px;            /* ajuste si ton site est plus large */
  margin: 0 auto;
  padding: 26px 26px 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 38px rgba(0,0,0,.20);
}

/* kill le carré vide à droite */
.hero-devices-spacer{
  display: none !important;
}

/* contenu en 1 colonne */
.hero-devices-content{
  width: 100%;
}

/* titre */
.hero-devices-content h1{
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: .01em;
  color: rgba(255,255,255,.96);
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}

/* grille des devices */
.devices-stack{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}

/* carte */
.device-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: rgba(255,255,255,.92);
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* zone image: fixe, mais sans crop */
.device-card img{
  width: 100%;
  height: 300px;                 /* ajuste si tu veux plus haut */
  object-fit: contain;           /* ✅ pas de zoom/crop */
  object-position: center;
  display: block;
  background: rgba(0,0,0,.12);   /* aide les PNG/white bg */
  padding: 6px;                 /* respirer */
}

/* label */
.device-card span{
  width: 100%;
  padding: 14px 14px 16px;
  font-weight: 800;
  letter-spacing: .02em;
  text-align: center;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}

/* hover */
.device-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 24px 48px rgba(0,0,0,.28);
}

/* responsive */
@media (max-width: 900px){
  .devices-stack{
    grid-template-columns: 1fr;
  }
  .hero-devices-inner{
    padding: 20px;
  }
  .device-card img{
    height: 240px;
  }
}
/* DEVICES – fill screen to avoid blue strip under footer */
.hero-devices{
  min-height: calc(100vh - 220px); /* ajuste 220px si besoin */
  padding-bottom: 60px;
}
@media (max-width: 768px){
  .hero-devices{ min-height: calc(100vh - 260px); }
}

/* =========================================
   RESELLER PAGE
========================================= */
.reseller-page{
  padding: 88px 0 110px;
}

.reseller-head{
  text-align:center;
  margin-bottom: 26px;
}

.reseller-title{
  font-weight: 900;
  letter-spacing: .01em;
  font-size: clamp(34px, 4.2vw, 64px);
  margin: 0;
}

.reseller-sub{
  margin: 10px auto 0;
  max-width: 900px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

.reseller-panel{
  margin-top: 26px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
  padding: 26px;
}

.reseller-panel-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}

.reseller-photo{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}

.reseller-photo img{
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
}

.reseller-content h2{
  font-size: 42px;
  font-weight: 900;
  margin: 0 0 14px;
}

.reseller-bullets{
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(255,255,255,.88);
}

.reseller-bullets li{
  margin: 10px 0;
}

.reseller-note{
  margin: 10px 0 18px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.reseller-actions{
  margin-top: 8px;
}

.reseller-login-hint{
  margin-top: 14px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
}

.reseller-login-hint a{
  color: rgba(255,255,255,.92);
  font-weight: 800;
  text-decoration: underline;
}

/* MODE OFFRES REVENDEUR */
.reseller-grid{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 280px));
  gap: 20px;
  justify-content: center;
}


.reseller-card{
  text-decoration: none;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 38px rgba(0,0,0,.20);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  display: flex;
  flex-direction: column;
}

.reseller-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 24px 48px rgba(0,0,0,.28);
}

.reseller-card-media{
  width: 100%;
  height: 190px;
  background: rgba(0,0,0,.15);
  display: grid;
  place-items: center;
}

.reseller-card-media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.reseller-card-foot{
  padding: 14px 14px 16px;
  text-align: center;
}

.reseller-card-name{
  font-weight: 900;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}

.reseller-card-cta{
  margin-top: 10px;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.92);
  font-weight: 800;
  font-size: 13px;
}

/* responsive */
@media (max-width: 1100px){
  .reseller-panel-grid{ grid-template-columns: 1fr; }
  .reseller-photo img{ max-height: 320px; }
  .reseller-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .reseller-grid{ grid-template-columns: 1fr; }
  .reseller-content h2{ font-size: 32px; }
}
/* =====================================================
   LEGAL DISCLAIMER
===================================================== */
.d-legal-section{
  padding: 40px 0 20px;
  background: rgba(0,0,0,.15);
  border-top: 1px solid rgba(255,255,255,.06);
}

.d-legal{
  font-size: 13px;
  opacity: .75;
  line-height: 1.6;
  max-width: 900px;
}

/* =========================================
   HOME SECTIONS — MOBILE STACK FIX
   - 1 colonne
   - image en haut
   - fonctionne aussi en paysage mobile
========================================= */

/* Mobile + tablette: on stack avant que ça devienne "timbre" */
@media (max-width: 900px){
  .d-hero-inner,
  .d-section-inner{
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  /* Image card pleine largeur */
  .d-hero-right .d-img-card,
  .d-section .d-img-card{
    max-width: 100% !important;
    margin: 0 !important;
    width: 100% !important;
  }

  /* Reverse: image en haut, texte en bas */
  .d-section.reverse .d-section-inner > .d-img-card{
    order: 1 !important;
  }
  .d-section.reverse .d-section-inner > div{
    order: 2 !important;
    padding-right: 0 !important; /* enlève ton petit padding "reverse" en mobile */
  }
}

/* Paysage mobile: souvent large, donc max-width ne trigger pas.
   On force le mode "stack" quand la hauteur est petite. */
@media (orientation: landscape) and (max-height: 520px){
  .d-hero-inner,
  .d-section-inner{
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .d-hero-right .d-img-card,
  .d-section .d-img-card{
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .d-section.reverse .d-section-inner > .d-img-card{ order: 1 !important; }
  .d-section.reverse .d-section-inner > div{ order: 2 !important; }
}
/* remove bottom blue band */
main.py-4{ padding-bottom: 0 !important; }
.lp-container{ padding-bottom: 0 !important; }
body{ overflow-x: hidden; }

/* SPORTS-SCHEDULE — remove bottom blue band (tuned) */
.sports-fill{
  min-height: calc(100vh - 170px);
  padding-bottom: 0;
}

@media (max-width: 768px){
  .sports-fill{
    min-height: calc(100vh - 210px);
  }
}
/* FIX logo écrasé (44x1) */
.d-brand-icon{
  width: 94px !important;
  height: 74px !important;
  max-height: 74px !important;
  object-fit: contain !important;
  display: block !important;
}
/* =====================================================
   SEO HOME SECTION (winter) — clean + readable
===================================================== */

.d-seo-section{
  padding: 56px 0;
}

.d-seo-inner{
  max-width: 900px;
  margin: 0 auto;
  padding: 0 18px;
}

/* “card” look pour séparer du background */
.d-seo-section .d-seo-inner{
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 26px 26px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Titres */
.d-seo-section h2{
  font-size: 24px;
  margin: 0 0 14px;
  line-height: 1.2;
}
.d-seo-section h3{
  font-size: 18px;
  margin: 18px 0 10px;
  line-height: 1.25;
}

/* Texte */
.d-seo-section p{
  line-height: 1.75;
  margin: 0 0 12px;
  opacity: .92;
}

/* Liens */
.d-seo-section a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.d-seo-section a:hover{
  opacity: .9;
}

/* Mobile */
@media (max-width: 640px){
  .d-seo-section{
    padding: 40px 0;
  }
  .d-seo-section .d-seo-inner{
    padding: 18px 16px;
    border-radius: 14px;
  }
  .d-seo-section h2{ font-size: 20px; }
  .d-seo-section h3{ font-size: 16px; }
}

.d-page-hero{ padding: 56px 0 22px; }
.d-page-title{ font-size: 34px; line-height: 1.15; margin: 0 0 10px; }
.d-page-sub{ max-width: 920px; opacity: .92; line-height: 1.7; margin: 0 0 18px; }
.d-page-cta{ display:flex; gap:10px; flex-wrap:wrap; }
.d-page{ padding: 20px 0 60px; }
.d-page-inner{ max-width: 980px; }

.d-card{
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px;
  margin: 14px 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.d-card h2{ font-size: 20px; margin: 0 0 10px; }
.d-card p{ margin: 0 0 10px; line-height: 1.75; opacity: .92; }
.d-card a{ color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.d-list{ margin: 0; padding-left: 18px; line-height: 1.8; opacity: .92; }
.d-bottom-cta{ margin-top: 22px; }

@media (max-width: 640px){
  .d-page-title{ font-size: 26px; }
  .d-card{ border-radius: 14px; }
}
