/* --------------------------------------------------
   style.css — version DESKTOP
-------------------------------------------------- */

:root{
  --accent-blue: #00006F;
  --text: #000;
  --bg: #fff;
  --muted: #666;
  --container: 1200px;
  --transition: 180ms ease;

  /* Hero variables globales (définies ici une fois) */
  --hero-min-height: 50vh;
  --hero-desktop-height: 60vh;
  --hero-overlay: rgba(0,0,0,0.36);
  --hero-accent: var(--accent-blue);
  --hero-text-color: #fff;
}

/* Reset */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

/* Helpers */
.desktop-only{ display:block; }
.mobile-only{ display:none; }

/* ------------------ HEADER ------------------ */

/* Ligne 1 */
.header-top {
  padding: 18px 0;
}

.header-top .wrap {
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  height:70px;
  display:block;
}

.toplinks{
  display:flex;
  gap:14px;
}

.toplink {
  position: relative;
  display: inline-block;
  padding: 10px 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  z-index: 1;
  overflow: visible;
}

.toplink.parallelogram {
  color: #fff;
}

.toplink.parallelogram::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-blue);
  transform: skew(-30deg);
  z-index: -1;
}



/* Effet ligne stylisée sous les liens */
.toplink::after,
.transport-box::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--accent-blue); /* couleur par défaut */
  transform: translateX(-50%);
  transition: width 0.25s ease-in-out;
}

.toplink:hover::after,
.transport-box:hover::after {
  width: 70%;
}

/* Version blanche de la ligne pour les parallélogrammes */
.toplink.parallelogram::after {
  background: #fff!important;
}

.transport-box {
  background: var(--accent-blue);
  color: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,.1);
}

/* Ligne 2 */
.header-bottom{
  padding:10px 0;
}

.nav-wrap{
  display:flex;
  align-items:center;
}

.main-nav{ flex:1; }
.main-nav ul{
  list-style:none;
  display:flex;
  gap:26px;
  justify-content:center;
}

.main-nav a{
  text-decoration:none;
  color:var(--text);
  font-weight:400;
}

.main-nav a:hover{
  background:var(--accent-blue);
  color:#fff;
  padding: 5px 8px;
  border-radius: 2px;
}

.lang-block{
  display:flex;
  align-items:center;
  gap:4px;
  margin-left:auto;
}
.lang-block a{
  text-decoration:none;
  color:var(--text);
  font-weight:400;
}

.lang-block a.active{
  font-weight:500;
  text-decoration:underline;
}

/* --- Menu Mobile (caché sur desktop) --- */
.mobile-menu{ display:none!important; }


/* ---------- FOOTER ---------- */
/* Footer layout */
.site-footer {
  background: var(--accent-blue);
  color: #fff;
  padding: 40px 0 22px;
  font-size: 0.95rem;
}

/* Grid dans le wrap */
.footer-grid {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}

/* chaque colonne */
.footer-col {
  flex: 1 1 0;
  min-width: 180px;
}

/* company left-aligned on desktop */
.footer-company { text-align: left; }

/* content wrapper inside each column (lines) */
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

/* ligne individuelle */
.footer-line {
  line-height: 1.55;
  color: #fff;
}

/* telephone links */
.footer-tel {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.footer-tel:hover { 
  text-decoration: underline; 
  opacity: 0.95; 
}

.footer-tel { display: inline-block; }

/* copyright centré */
.footer-copy {
  text-align: center;
  margin-top: 26px;
  font-size: 0.85rem;
  opacity: 0.9;
}

/* ===========================
   FOOTER – PRIVACY LINK
=========================== */

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #777;
  margin-top: 1.2rem;
}

.footer-copy a.footer-privacy-link {
  color: var(--hero-text-color);
  text-decoration: underline;
  text-underline-offset: 2px;
  padding-left: 5px;
}

.footer-copy a.footer-privacy-link:hover {
  color: #000;
}

.footer-separator {
  opacity: 0.6;
}

/* ---------- Hero desktop rules (>=900px) ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.hero-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 4rem 2rem;
}

.hero-content {
  max-width: 720px;
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 500;
  opacity: 0.95;
}

.hero-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: var(--accent-blue);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

/* ------------------ SECTION INFO (desktop) ------------------ */
.info-section {
  padding: 48px 0;
  background: transparent;
  color: var(--text);
}


.info-title {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.05;
}

.toplink.parallelogram {
  display: inline-block;
  padding: 6px 10px;
  position: relative;
  color: #fff;
}

/* grille desktop : image 30% texte 70% */
.info-grid {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  align-items: center;
}

.info-image {
  width: 40%;
  flex: 0 0 40%;
  margin: 0;
}

.info-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1/1; /* carrée */
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.info-list {
  margin: 12px 0 18px;
  padding-left: 18px;
  font-size: 1rem;
  line-height: 1.55;
}

.info-list li {
  margin-bottom: 6px;
}

/* sub section under info */
/* ------------------ SUB INFO SECTION ------------------ */

.sub-info-section {
  background-image: var(--sub-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0; /* espace confortable */
  color: #fff;
  position: relative;
}

.sub-info-section::before {
  /* overlay léger pour meilleure lisibilité */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.sub-info-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.sub-info-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.5);
}

.sub-info-text {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #f5f5f5;
  text-shadow: 0 3px 12px rgba(0,0,0,0.4);
  margin: 0 auto;
}

/* =========================
   SUB INFO – BOUTONS
========================= */

.sub-info-buttons {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.sub-info-btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 30px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.sub-info-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* ---------------- WHY SECTION (desktop) ---------------- */
.why-section {
  padding: 48px 0;
  background: transparent;
  color: var(--text);
}

.why-header {
  text-align: center;
  margin-bottom: 28px;
}

.why-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.why-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.5;
}

/* Body layout: deux colonnes, image à gauche, checklist à droite */
.why-body {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 18px;
}

/* IMAGE column (LEFT) */
.why-left.why-image-col {
  flex: 0 0 38%;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-left.why-image-col img,
.why-left img {
  width: 100%;
  max-height: 350px; 
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(11,20,40,0.06);
}

/* CHECKLIST column (RIGHT) */
.why-right.why-checks-col {
  flex: 1 1 55%;
  min-width: 280px;
}

.why-intro {
  font-weight: 700;
  margin-bottom: 12px;
}

/* checklist : encarts colorés (cards) */
.why-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* chaque item : encart coloré léger */
.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, rgba(0,6,111,0.04), rgba(0,6,111,0.02));
  border-left: 4px solid var(--accent-blue);
  padding: 12px 14px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(11,20,40,0.03);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  cursor: default;
}

/* hover & focus (accessible) : élévation + léger translate + fond plus marqué */
.why-item:hover,
.why-item:focus {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(11,20,40,0.10);
  background: linear-gradient(90deg, rgba(0,6,111,0.06), rgba(0,6,111,0.03));
  outline: none;
}

/* badge tick */
.why-badge {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius: 8px;
  background: var(--accent-blue);
  color: #fff;
  font-weight:700;
  flex: 0 0 34px;
  font-size: 16px;
}

/* texte de l'item */
.why-item-text {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.4;
}

.why-outro {
  margin-top: 22px;
  padding: 18px 22px;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  border-top: 1px solid rgba(0,0,0,0.04);
  max-width: 100%;
}
.why-outro p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Contact parallax band */
.contact-band {
  position: relative;

  background-image: url("/asset/parallax_main.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: scroll !important;

  min-height: 360px;
  display: flex;
  align-items: center;

  /* sécurité anti-bouge */
  transform: none !important;
  will-change: auto;
}

/* overlay */
.contact-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* contenu */
.contact-band-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 90px 20px;

  /* sécurité anti-animation */
  transform: none !important;
}

/* layout */
.contact-band-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  /* sécurité anti-animation */
  transform: none !important;
}

/* texte */
.contact-band-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.contact-band-sub {
  margin-top: 10px;
  color: rgba(255,255,255,0.9);
}

/* contenu */
.contact-band-content {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  padding: 10px;
  width: 100%;
}

/* texte */
.contact-band-sub { 
  color: rgba(255,255,255,0.92); 
  margin-bottom:0; 
}

/* actions: phone + btn */
.contact-band-actions { 
  display:flex; 
  gap:12px; 
  align-items:center; 
}

.contact-phone {
  background: rgba(255,255,255,0.08);
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight:700;
}
.contact-phone:hover { 
  opacity:0.95; 
  transform: translateY(-2px); 
}

.contact-cta {
  background: #fff;
  color: var(--accent-blue);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight:700;
  text-decoration:none;
}
.contact-cta:hover { opacity:0.95; transform:translateY(-2px); }


/* ---------- sp-cards section (desktop) ---------- */
.sp-cards-section { 
  padding: 48px 0; 
  color: var(--text); }

.sp-cards-header { text-align: center; margin-bottom: 22px; }
.sp-cards-title { font-size: 1.9rem; font-weight:700; margin-bottom:8px; }
.sp-cards-intro { color: var(--muted); max-width:900px; margin:0 auto; line-height:1.6; }

/* scroller defaults (desktop: 3-column grid look) */
.cards-scroller-wrap { position: relative; }
.cards-scroller {
  display: flex;
  gap: 20px;
  align-items: stretch;
  width: 100%;
  overflow: visible;
}

/* card */
.sp-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(11,20,40,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: calc((100% - 40px) / 3); /* 3 per row */
  min-width: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;

}

/* image on top */
.sp-card-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;

}

/* body */
.sp-card-body { padding: 16px; }
.sp-card-title { font-size: 1.05rem; font-weight:700; margin: 0 0 8px; }
.sp-card-text { margin: 0; color: var(--muted); line-height:1.6; font-size:0.98rem; }

/* Hover effect on cards */

.sp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(11, 20, 40, 0.12);
}

.sp-card:hover .sp-card-thumb img {
  transform: scale(1.04);
}

/* ==============================
   PAGE DOUANE – BASE
============================== */

.douane-page {
  background: #fff;
}

/* HERO */
.douane-hero {
  background: url("../assets/douane-hero.jpg") center / cover no-repeat;
  padding: 120px 20px;
  color: #fff;
}

.douane-hero-inner {
  max-width: 760px;
}

.douane-title {
  font-size: 3rem;
}

.douane-subtitle {
  font-size: 1.4rem;
  margin: 20px 0;
}

.douane-intro {
  opacity: 0.9;
}

.douane-cta-group {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

/* BUTTONS */
.douane-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 500;
}

.douane-btn-main {
  background: #0a3cff;
  color: #fff;
}

.douane-btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

/* CONTEXT */
.douane-context {
  padding: 100px 20px;
}

.douane-context-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.douane-section-title {
  margin-bottom: 20px;
}

.douane-section-title.center {
  text-align: center;
}

/* CHECKLIST */
.douane-checklist {
  list-style: none;
  padding: 0;
}

.douane-checklist li {
  margin-bottom: 12px;
}

/* SERVICES */
.douane-services {
  padding: 100px 20px;
  background: #f7f8fa;
}

.douane-services-grid {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.douane-service-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
}

.douane-service-link {
  display: inline-block;
  margin-top: 15px;
  color: #0a3cff;
}

/* PROCESS */
.douane-process {
  padding: 100px 20px;
}

.douane-process-steps {
  max-width: 1000px;
  margin: 60px auto 0;
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.douane-process-steps li {
  flex: 1;
  background: #f2f4f7;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
}

/* FINAL CTA */
.douane-final {
  background: #0a3cff;
  color: #fff;
  padding: 90px 20px;
  text-align: center;
}

.douane-btn.large {
  margin-top: 30px;
  font-size: 1.1rem;
}

/*------------------ Page TRANSPORT ------------------*/
.page-hero {
  background:#0e1a24;
  color:#fff;
  padding:110px 0 90px;
}

.page-hero h1 {
  font-size:2.4rem;
  max-width:900px;
}

.page-hero p {
  margin-top:20px;
  max-width:800px;
  opacity:.9;
}

.page-section {
  padding:80px 0;
}

/* =========================
   TRANSPORT CARDS
========================= */

.page-hero {
  position: relative;
  background: var(--page-hero-bg) center / cover no-repeat;
  color: #fff;
  padding: 120px 0 100px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.page-hero .wrap {
  position: relative;
  max-width: 900px;
}

.page-hero h1 {
  font-size: 2.6rem;
}

.page-hero p {
  margin-top: 20px;
  font-size: 1.1rem;
  opacity: .95;
}

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

.split-section.reverse {
  grid-template-columns: 1fr 1fr;
}

.split-section.reverse .split-text {
  order: 2;
}

.split-section.reverse .split-image {
  order: 1;
}

.split-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.transport-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.transport-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.transport-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

.transport-card-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.transport-card-title {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.transport-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.check-list {
  list-style:none;
  margin-top:20px;
}

.check-list li {
  padding-left:26px;
  margin-bottom:12px;
  position:relative;
}

.check-list li::before {
  content:"✓";
  position:absolute;
  left:0;
  color:#1fa2ff;
}

.page-outro {
  margin-top:30px;
  font-weight:500;
}

/* =========================
   ABOUT – LOCATION
========================= */

.about-location {
  background: #f4f6f8;
}

.about-location .split-section {
  align-items: stretch;
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.company-address {
  margin-top: 20px;
  font-style: normal;
  font-weight: 500;
  opacity: .85;
}

.outro-highlight {
  background: linear-gradient(135deg, #0e1a24, #142737);
  color: #fff;
  text-align: center;
}

.outro-highlight .wrap {
  max-width: 900px;
}

.outro-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  opacity: .95;
}

/* =========================
   NASZA OFERTA
========================= */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.offer-block {
  display: flex;
  flex-direction: column;
  background: #f4f6f8;
  padding: 40px 30px;
  border-radius: 20px;
}

.offer-block h2 {
  margin-bottom: 20px;
}

.offer-image {
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 16px;
}

.offer-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}


.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1e88e5;
  font-weight: bold;
}

.offer-cta {
  margin-top: auto;           
  padding-top: 28px;
  display: flex;
  justify-content: center;
}

/* bouton principal */
.offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 30px;
  background: var(--accent-blue);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.offer-btn:hover {
  background: var(--bg);
  color: var(--accent-blue);
  border: 1px solid var(--accent-blue);
}

.offer-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0,0,0,0.14);
}

/* =========================
   CERTYFIKATY – SPLIT
========================= */

.split-section.is-reverse {
  direction: rtl;
}

.split-section.is-reverse > * {
  direction: ltr;
}

/* =========================
   CONTACT PAGE
========================= */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.contact-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.contact-card h2 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.contact-card p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.contact-card a {
  color: #0b4dd9;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-person {
  margin-top: 16px;
}

.strong {
  font-weight: 600;
}

.muted {
  opacity: .7;
}

/* =========================
   DOWNLOADS TABLE
========================= */

.downloads-table {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.downloads-table th,
.downloads-table td {
  padding: 16px 18px;
  text-align: left;
}

.downloads-table thead {
  background: #f4f6f8;
}

.downloads-table th {
  font-weight: 700;
}

.downloads-table tr:not(:last-child) td {
  border-bottom: 1px solid #eee;
}

/* bouton download */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--accent-blue);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform .2s ease, box-shadow .2s ease;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

/* ===========================
   LEGAL / PRIVACY PAGE
=========================== */

/* ===========================
   LEGAL / PRIVACY PAGE
=========================== */

.legal-page {
  padding: 5rem 1.25rem 6rem;
  background: #fff;
}

.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
}

/* Header */

.legal-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.legal-header h1 {
  font-size: 2rem;
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.legal-updated {
  font-size: 0.85rem;
  color: #777;
}

/* Content */

.legal-content {
  font-size: 1rem;
  line-height: 1.85;
  color: #222;
}

.legal-content p {
  margin-bottom: 1.8rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 3rem 0 1rem;
  color: #111;
}

/* Spacing between sections */
.legal-content h2:first-of-type {
  margin-top: 0;
}

/* Desktop refinement */
@media (min-width: 768px) {
  .legal-page {
    padding: 6rem 2rem 7rem;
  }

  .legal-header h1 {
    font-size: 2.2rem;
  }

  .legal-wrap {
    max-width: 820px;
  }
}


/* =========================
   ANIMATIONS – BASE
========================= */

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Variantes */
[data-animate="fade"] {
  transform: none;
}

[data-animate="left"] {
  transform: translateX(-32px);
}

[data-animate="right"] {
  transform: translateX(32px);
}

[data-animate="zoom"] {
  transform: scale(0.96);
}

/* Stagger (cartes, listes) */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

[data-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: 0.1s; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: 0.15s; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: 0.2s; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: 0.25s; }

/* CTA micro-interaction */
.hero-cta {
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-cta:hover {
  transform: translateY(-2px);
}
.hero-cta:active {
  transform: translateY(0);
}

/* Respect accessibilité */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}


