/* ===== AKORAF TRANSPORT — CSS PARTAGÉ v2 ===== */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
:root {
  --gold: #C9A84C;
  --gold-l: #E8C97A;
  --gold-d: #A07830;
  --gold-pale: #FBF4E3;
  --beige: #F8F4EE;
  --beige2: #EDE8DF;
  --beige3: #DDD8CE;
  --dark: #1C1409;
  --dark2: #2E2416;
  --dark3: #3D3222;
  --text: #2C2416;
  --sub: #6B6050;
  --sub-l: #9B8E7E;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(28,20,9,.08);
  --shadow: 0 4px 28px rgba(28,20,9,.12);
  --shadow-lg: 0 16px 56px rgba(28,20,9,.18);
  --shadow-xl: 0 32px 80px rgba(28,20,9,.22);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: all .28s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--beige);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, textarea, select { font-family: inherit; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--beige2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ── LAYOUT ───────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section-beige  { background: var(--beige); }
.section-beige2 { background: var(--beige2); }
.section-dark   { background: var(--dark); }
.section-dark2  { background: var(--dark2); }

/* ── TYPOGRAPHY ───────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 700; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; display: inline-block; width: 20px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900; line-height: 1.06; color: var(--white);
}
.h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800; line-height: 1.14; color: var(--dark);
}
.h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 800; line-height: 1.2; color: var(--dark);
}
.h2-white, .h3-white { color: var(--white); }
.lead { font-size: 1.05rem; color: var(--sub); line-height: 1.9; max-width: 580px; }
.gold-text { color: var(--gold); }
.divider {
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--gold-d), var(--gold-l));
  border-radius: 2px; margin: 22px 0 32px;
}

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px; border-radius: var(--radius);
  font-size: .84rem; font-weight: 700; letter-spacing: .6px;
  cursor: pointer; border: none; transition: var(--transition);
  text-transform: uppercase; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: background .2s;
}
.btn:hover::after { background: rgba(255,255,255,.08); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-d) 0%, var(--gold) 50%, var(--gold-l) 100%);
  background-size: 200% 100%; background-position: 100% 0;
  color: var(--dark);
}
.btn-gold:hover {
  background-position: 0 0;
  box-shadow: 0 8px 28px rgba(201,168,76,.4);
  transform: translateY(-2px);
}
.btn-green { background: #25D366; color: #fff; }
.btn-green:hover { background: #128C7E; box-shadow: 0 8px 28px rgba(37,211,102,.35); transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(28,20,9,.3); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--dark); border: 1.5px solid var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold-d); border: 1.5px solid var(--gold); }
.btn-outline-gold:hover { background: rgba(201,168,76,.1); }
.btn-sm { padding: 9px 20px; font-size: .78rem; }
.btn-lg { padding: 17px 38px; font-size: .92rem; }

/* ── HEADER ───────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,.3), 0 4px 24px rgba(28,20,9,.1);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 88px;
}
.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-item > a {
  display: flex; align-items: center;
  padding: 0 18px; height: 72px;
  font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.92);
  letter-spacing: .5px; text-transform: uppercase; transition: var(--transition);
  white-space: nowrap; position: relative;
}
#header.scrolled .nav-item > a { color: var(--dark2); }
.nav-item > a:hover { color: var(--gold-l); }
#header.scrolled .nav-item > a:hover { color: var(--gold); }
.nav-item > a.active-page { color: var(--gold-l); }
#header.scrolled .nav-item > a.active-page { color: var(--gold); }
.nav-item > a::after {
  content: ''; position: absolute; bottom: 16px; left: 18px; right: 18px;
  height: 2px; background: linear-gradient(90deg, var(--gold-d), var(--gold-l));
  border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.nav-item > a:hover::after,
.nav-item > a.active-page::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
#header.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── MOBILE MENU ──────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--dark2); z-index: 999;
  flex-direction: column; align-items: flex-start;
  justify-content: center; padding: 40px 36px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; animation: fadeSlideIn .3s ease; }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.mobile-menu a {
  font-size: 1.15rem; font-weight: 700; color: rgba(255,255,255,.85);
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.07);
  width: 100%; text-transform: uppercase; letter-spacing: 1.5px;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: fixed; top: 24px; right: 28px;
  font-size: 1.5rem; color: rgba(255,255,255,.5); cursor: pointer;
  transition: color .2s; line-height: 1;
}
.mobile-close:hover { color: var(--gold); }
.mobile-cta { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ── PAGE HERO (pages internes) ───────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1600&q=70&fit=crop') center/cover;
  opacity: .12;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,20,9,.95) 40%, rgba(28,20,9,.6) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; color: var(--white);
  margin-bottom: 16px; line-height: 1.1;
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.65); max-width: 560px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .72rem; color: rgba(255,255,255,.4);
  margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1.5px;
}
.breadcrumb a { color: var(--gold); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-l); }
.breadcrumb span { color: rgba(255,255,255,.25); }

/* ── QUICK BAR ────────────────────────────────── */
.quick-bar {
  position: relative; z-index: 10; background: var(--dark);
  border-top: 1px solid rgba(201,168,76,.35);
  border-bottom: 1px solid rgba(201,168,76,.35);
}
.quick-bar-inner {
  background: var(--dark);
  display: grid; grid-template-columns: repeat(2, 1fr);
  max-width: 900px; margin: 0 auto;
}
.quick-item {
  padding: 32px 40px;
  display: flex; align-items: center; gap: 20px;
  border-right: 1px solid rgba(201,168,76,.15);
  transition: background .25s;
  text-decoration: none; color: #f0e6cc;
  position: relative; overflow: hidden;
}
.quick-item::after {
  content: ''; position: absolute; left: 0; bottom: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--gold-d), var(--gold-l));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.quick-item:hover::after { transform: scaleX(1); }
.quick-item:last-child { border-right: none; }
.quick-item:hover { background: rgba(201,168,76,.06); }
.quick-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(201,168,76,.18), rgba(201,168,76,.08));
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--gold); flex-shrink: 0; transition: all .25s;
}
.quick-item:hover .quick-icon {
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  color: var(--dark2); border-color: transparent;
  box-shadow: 0 4px 16px rgba(201,168,76,.3);
}
.quick-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; color: #f0e6cc; }
.quick-item p { font-size: .76rem; color: rgba(240,230,204,.5); }
.quick-arrow { margin-left: auto; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; transition: transform .25s; opacity: .7; }
.quick-item:hover .quick-arrow { transform: translateX(5px); opacity: 1; }

/* ── CARDS ────────────────────────────────────── */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,.04);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,.15);
}
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 28px 24px; }
.card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.card-body p { font-size: .85rem; color: var(--sub); line-height: 1.75; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: .79rem; font-weight: 700;
  color: var(--gold-d); text-transform: uppercase; letter-spacing: .5px;
  transition: gap .2s;
}
.card-link:hover { gap: 12px; }
.card-icon { font-size: 1.6rem; margin-bottom: 18px; }

/* FA icon wrappers */
.icon-box {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(201,168,76,.18), rgba(201,168,76,.06));
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold-d);
  flex-shrink: 0; transition: var(--transition);
  margin-bottom: 18px;
}
.icon-box-sm {
  width: 42px; height: 42px; border-radius: 10px;
  font-size: 1rem;
}
.srv-card:hover .icon-box,
.val-card:hover .icon-box { background: linear-gradient(135deg, var(--gold-d), var(--gold-l)); color: var(--dark); }
.ci-icon i, .val-icon i, .quick-icon i { color: var(--gold-d); font-size: 1.1rem; }

/* ── STATS BANNER ─────────────────────────────── */
.stats-banner { background: var(--dark); padding: 80px 0; position: relative; overflow: hidden; }
.stats-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,.06) 0%, transparent 70%);
}
.stats-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; text-align: center; position: relative; max-width: 800px; margin: 0 auto; }
.stat-col { padding: 0 28px; position: relative; }
.stat-col::after {
  content: ''; position: absolute; right: 0; top: 15%; bottom: 15%;
  width: 1px; background: rgba(255,255,255,.08);
}
.stat-col:last-child::after { display: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold-d), var(--gold-l));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.stat-label { font-size: .76rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 2.5px; margin-top: 10px; }
.stat-desc { font-size: .8rem; color: rgba(255,255,255,.25); margin-top: 6px; }

/* ── SPLIT SECTION ────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius); }

/* ── FORMS ────────────────────────────────────── */
.form-box {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 48px 40px;
  border: 1px solid rgba(201,168,76,.1);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg.span2 { grid-column: 1/-1; }
.fg label { font-size: .72rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 1.2px; }
.fg input, .fg select, .fg textarea {
  background: var(--beige);
  border: 1.5px solid var(--beige3);
  border-radius: var(--radius); padding: 12px 16px;
  font-size: .9rem; color: var(--dark); outline: none;
  transition: border .2s, box-shadow .2s; width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--sub-l); font-size: .85rem; }
input::placeholder, textarea::placeholder { color: var(--sub-l) !important; -webkit-text-fill-color: var(--sub-l) !important; opacity: 1; }
.fg select option { background: var(--white); }
.fg textarea { resize: vertical; min-height: 110px; }
.form-btn { margin-top: 20px; width: 100%; justify-content: center; }
.form-ok {
  display: none;
  background: linear-gradient(135deg, rgba(201,168,76,.08), rgba(201,168,76,.15));
  border: 1px solid rgba(201,168,76,.35);
  border-radius: var(--radius); padding: 18px;
  text-align: center; color: var(--gold-d);
  font-weight: 700; font-size: .9rem; margin-top: 16px;
}
.file-zone {
  border: 2px dashed var(--beige3); border-radius: var(--radius);
  padding: 24px; text-align: center; cursor: pointer;
  transition: var(--transition); background: var(--beige);
}
.file-zone:hover { border-color: var(--gold); background: var(--gold-pale); }
.file-zone input { display: none; }
.file-zone p { font-size: .82rem; color: var(--sub); }
.file-zone span { color: var(--gold); font-weight: 600; }

/* ── CTA STRIP ────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, var(--dark3) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 120% at 50% 0%, rgba(201,168,76,.12) 0%, transparent 70%);
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900; color: var(--white); margin-bottom: 16px;
}
.cta-strip p { font-size: 1rem; color: rgba(255,255,255,.55); margin-bottom: 36px; }

/* ── COUNTRIES ────────────────────────────────── */
.country-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px; font-size: .84rem; font-weight: 500;
  color: rgba(255,255,255,.75); transition: var(--transition);
  cursor: default; margin: 6px;
  background: rgba(255,255,255,.04);
}
.country-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,.08);
}

/* ── CONTACT INFO ITEMS ───────────────────────── */
.ci { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--beige3); }
.ci:last-child { border-bottom: none; }
.ci-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.05));
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.ci h5 { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 4px; }
.ci p { font-size: .88rem; color: var(--sub); }

/* ── WHY ITEMS ────────────────────────────────── */
.why-item { display: flex; align-items: flex-start; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--beige3); }
.why-item:last-child { border-bottom: none; }
.why-num {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  font-weight: 900; color: var(--gold); line-height: 1;
  min-width: 38px; opacity: .4;
}
.why-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: 5px; color: var(--dark); }
.why-item p { font-size: .84rem; color: var(--sub); line-height: 1.75; }

/* ── STEPS ────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; margin-top: 64px; }
.step-connector {
  position: absolute; top: 31px; left: 10%; right: 10%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 16px);
  opacity: .25;
}
.step-item { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-circle {
  width: 64px; height: 64px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 900; color: var(--gold);
  box-shadow: 0 0 0 8px var(--beige), 0 4px 16px rgba(201,168,76,.2);
  transition: var(--transition);
}
.step-item:hover .step-circle {
  background: linear-gradient(135deg, var(--gold-d), var(--gold-l));
  color: var(--dark);
  transform: scale(1.05);
}
.step-item h4 { font-size: .9rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step-item p { font-size: .78rem; color: var(--sub); line-height: 1.65; }

/* ── TAGS ─────────────────────────────────────── */
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.tag {
  display: inline-block; padding: 7px 16px;
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 100px; font-size: .82rem; font-weight: 600; color: var(--gold-d);
  transition: var(--transition);
}
.tag:hover { background: rgba(201,168,76,.18); }

/* ── FOOTER ───────────────────────────────────── */
footer { background: var(--dark); padding: 88px 0 0; position: relative; overflow: hidden; }
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 68px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand p {
  font-size: .86rem; color: rgba(255,255,255,.38);
  line-height: 1.85; margin-top: 22px; max-width: 290px;
}
.footer-col h5 {
  font-size: .69rem; font-weight: 700; color: rgba(255,255,255,.8);
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 24px;
}
.footer-col a {
  display: block; font-size: .84rem;
  color: rgba(255,255,255,.38); margin-bottom: 11px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; font-size: .76rem; color: rgba(255,255,255,.2);
}

/* ── ADMIN ────────────────────────────────────── */
#admin { display: none; position: fixed; inset: 0; background: var(--beige); z-index: 9999; overflow-y: auto; }
#admin.open { display: block; }
.admin-top {
  background: var(--white); border-bottom: 2px solid var(--gold);
  padding: 0 32px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 10; box-shadow: var(--shadow);
}
.admin-top h2 { font-size: 1rem; font-weight: 700; color: var(--gold); }
.admin-body { padding: 32px; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 36px; }
.astat {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.astat .lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--sub); margin-bottom: 8px; }
.astat .val { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--dark); }
.admin-tabs { display: flex; gap: 4px; margin-bottom: 28px; border-bottom: 2px solid var(--beige3); }
.atab {
  padding: 10px 24px; font-size: .85rem; font-weight: 600;
  color: var(--sub); cursor: pointer; border: none; background: none;
  transition: color .2s; border-bottom: 2px solid transparent; margin-bottom: -2px;
}
.atab.active { color: var(--gold); border-bottom-color: var(--gold); }
.atab-content { display: none; }
.atab-content.active { display: block; }
.tbl-wrap { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.tbl-head { padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--beige2); }
.tbl-head h3 { font-size: .95rem; font-weight: 700; }
.tbl-head span { font-size: .78rem; color: var(--sub); }
table { width: 100%; border-collapse: collapse; font-size: .83rem; }
th {
  text-align: left; padding: 11px 20px;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--sub); background: var(--beige);
  border-bottom: 1px solid var(--beige3);
}
td { padding: 14px 20px; border-bottom: 1px solid var(--beige2); color: var(--dark); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--beige); }
.badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: .72rem; font-weight: 600; }
.badge-new { background: rgba(201,168,76,.15); color: var(--gold-d); }
.empty-row { text-align: center; padding: 52px; color: var(--sub); font-size: .88rem; }

/* ── TOAST ────────────────────────────────────── */
.toast {
  position: fixed; bottom: 32px; right: 32px;
  background: var(--dark2); color: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius); padding: 14px 22px;
  font-size: .86rem; z-index: 99999;
  transform: translateY(80px); opacity: 0;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  max-width: 320px; box-shadow: var(--shadow-lg);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── WHATSAPP FLOAT ───────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 998;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: var(--transition); text-decoration: none;
  animation: waPulse 3s ease infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.5); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.35); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.6), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ── SCROLL ANIMATIONS ────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .stat-col::after { display: none; }
  .stats-inner .stat-col:last-child { grid-column: 1 / -1; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}
/* ── TABLETTE (max 960px) : menu hamburger ── */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 72px; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-img { height: 260px; }
  /* Page hero */
  .page-hero { padding: 110px 0 56px; }
  .page-hero h1 { font-size: clamp(1.7rem, 5vw, 2.4rem); }
  .page-hero p { font-size: .92rem; }
  /* Process steps : 1 colonne pour éviter le chevauchement */
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .quick-bar-inner { grid-template-columns: 1fr; }
  .quick-item { border-right: none; border-bottom: 1px solid var(--beige2); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .form-box { padding: 28px 20px; }
  .admin-body { padding: 16px; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  /* Stats : 2 colonnes avec 3e élément centré */
  .stats-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px 0; }
  .stat-col { width: 50%; }
  .stat-col:last-child { width: 100%; }
  /* CTA strip */
  .cta-strip { padding: 60px 0; }
  .cta-strip h2 { font-size: 1.7rem; }
  /* Footer */
  footer { padding: 60px 0 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 48px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  /* Page hero */
  .page-hero { padding: 92px 0 44px; }
  /* Stats : 2 colonnes avec 3e élément centré */
  .stats-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px 0; }
  .stat-col { width: 50%; }
  .stat-col:last-child { width: 100%; }
  .btn { padding: 12px 20px; font-size: .8rem; }
  .btn-lg { padding: 14px 24px; font-size: .86rem; }
  .h1 { font-size: 1.95rem; }
  .h2 { font-size: 1.5rem; }
  .h3 { font-size: 1.2rem; }
  .quick-bar-inner { grid-template-columns: 1fr; }
  .quick-item { padding: 18px 16px; }
  .quick-icon { width: 42px; height: 42px; font-size: 1.1rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-col h5 { margin-bottom: 16px; }
  .country-pill { padding: 8px 14px; font-size: .78rem; margin: 4px; }
  /* Form box */
  .form-box { padding: 22px 16px; }
  /* Toast above WA float / bottom nav */
  .toast { bottom: 80px; right: 14px; left: 14px; max-width: none; text-align: center; }
  /* Step circle */
  .step-item { padding: 0 8px; }
  .step-circle { width: 52px; height: 52px; font-size: 1.1rem; margin-bottom: 14px; }
  /* Split */
  .split-img { height: 220px; }
}

/* ── TWEMOJI (drapeaux universels) ── */
img.emoji {
  height: 1.2em; width: 1.2em;
  vertical-align: -0.2em;
  display: inline-block;
}

/* ── FIX OVERFLOW MOBILE ── */
section, div, header, footer, nav {
  max-width: 100%;
}
img { max-width: 100%; height: auto; }

/* ── SCROLL TO TOP ─────────────────────────────── */
#scrollTop {
  position: fixed; bottom: 92px; right: 28px; z-index: 997;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold-d), var(--gold-l));
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-size: 1rem; cursor: pointer;
  box-shadow: 0 4px 18px rgba(201,168,76,.45);
  opacity: 0; transform: translateY(16px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
#scrollTop.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#scrollTop:hover { transform: translateY(-3px); box-shadow: 0 8px 26px rgba(201,168,76,.6); }
