/* ==========================================================================
   DÉMÉNAGEMENT BB — Design system v4 (moderne, teal, arrondi)
   Inspiré "Positive Moving" — adapté au logo BB (teal turquoise)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors — teal palette (matched to the BB logo) */
  --white:         #ffffff;
  --bg:            #e5e7eb;      /* page background — soft cool */
  --bg-tint:       #fff6ec;      /* teal-tinted soft section */
  --card:          #ffffff;
  --border:        #d1d5db;
  --border-strong: #cbd5e1;

  --ink-900:       #0f172a;      /* main text — near black */
  --ink-700:       #334155;
  --ink-500:       #64748b;
  --ink-400:       #94a3b8;
  --ink-300:       #cbd5e1;
  --ink-100:       #e2e8f0;

  /* Teal accent (from logo) */
  --orange-50:       #fff6ec;
  --orange-100:      #ffe4cc;
  --orange-200:      #ffcda0;
  --orange-400:      #ff8f42;
  --orange-500:      #e46c0c;      /* primary accent */
  --orange-600:      #c85a08;      /* darker for hover */
  --orange-700:      #9c4406;
  --orange-800:      #7a3505;

  --green-500:     #10b981;      /* phone icons */
  --red-500:       #ef4444;      /* danger */

  /* Semantic */
  --accent:        var(--orange-500);
  --accent-dark:   var(--orange-600);
  --accent-soft:   var(--orange-100);
  --accent-bg:     var(--orange-50);
  --text:          var(--ink-900);
  --text-mute:     var(--ink-500);
  --text-soft:     var(--ink-400);

  /* Type */
  --font-body:     'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:  'Manrope', sans-serif;

  /* Sizes — fluid */
  --fs-hero:  clamp(2.5rem, 4vw + 1rem, 4.5rem);
  --fs-h1:    clamp(2rem, 2.5vw + 1rem, 3.25rem);
  --fs-h2:    clamp(1.6rem, 1.6vw + 0.8rem, 2.5rem);
  --fs-h3:    clamp(1.2rem, 0.5vw + 1rem, 1.4rem);
  --fs-body:  16px;
  --fs-lead:  clamp(1rem, 0.5vw + 0.9rem, 1.15rem);
  --fs-small: 0.9rem;
  --fs-micro: 0.78rem;

  /* Spacing (8pt) */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px;
  --s6: 24px; --s8: 32px; --s10: 40px; --s12: 48px;
  --s16: 64px; --s20: 80px; --s24: 96px; --s32: 128px;

  /* Radius — the signature of this design (rounded everywhere) */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-2xl:  36px;
  --r-full: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.04), 0 1px 3px rgba(15,23,42,0.06);
  --shadow-md: 0 4px 12px rgba(15,23,42,0.06), 0 2px 4px rgba(15,23,42,0.04);
  --shadow-lg: 0 12px 30px rgba(15,23,42,0.10), 0 6px 12px rgba(15,23,42,0.05);
  --shadow-glow: 0 12px 32px rgba(228,108,12,0.28);

  --ease-out: cubic-bezier(.22,.61,.36,1);
  --dur-fast: 160ms;
  --dur-base: 260ms;

  --container: 1240px;
  --gutter: clamp(20px, 3vw, 40px);
  --header-h: 104px;
}


/* Fix sticky header : le slot ne doit pas contraindre la sticky-area */
#site-footer-slot { display: contents; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex; flex-direction: column;
  overflow-x: hidden;
}
img, picture, video, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: var(--text); text-decoration: none; transition: color var(--dur-fast); }
a:hover { color: var(--accent); }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--accent); color: white; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
h1 { font-size: var(--fs-h1); letter-spacing: -0.03em; }
h2 { font-size: var(--fs-h2); letter-spacing: -0.025em; font-weight: 700; }
h3 { font-size: var(--fs-h3); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--ink-700); line-height: 1.65; }

.accent-word { color: var(--accent); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-wide { max-width: 1440px; }
.section       { padding: clamp(56px, 6vw, 100px) 0; }
.section-tight { padding: clamp(40px, 4vw, 72px) 0; }

/* ═══════════════════════════════════════════════════════════
   HEADER — pill nav layout
   ═══════════════════════════════════════════════════════════ */
/* Header : fixed pour eviter tout reflow au shrink */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center;
  background: #0B1F3A;
  box-shadow: 0 2px 12px rgba(11,31,58,0.15);
  transition: height 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
  will-change: height;
}
/* Compensation : le body prend un padding-top egal a la hauteur du header (out of flow) */
body { padding-top: var(--header-h); transition: padding-top 260ms var(--ease-out); }
body.header-scrolled { padding-top: 68px; }
/* Variante retrecie quand on scroll */
.site-header.scrolled { height: 68px; box-shadow: 0 6px 20px rgba(11,31,58,0.28); }
.site-header .brand-logo,
.site-header .header-phone,
.site-header .nav-pill,
.site-header .brand-mark { transition: all 260ms var(--ease-out); }
.site-header.scrolled .brand-logo { height: 52px; }
.site-header.scrolled .nav-pill { padding: 4px; }
.site-header.scrolled .nav-pill a { padding: 8px 14px; font-size: 0.88rem; }
.site-header.scrolled .header-phone { padding: 3px 3px 3px 12px; font-size: 0.86rem; }
.site-header.scrolled .header-phone .phone-ico { width: 28px; height: 28px; }
.site-header.scrolled .brand-text { font-size: 0.95rem; }
/* Texte du header en clair sur le navy */
.site-header .brand-text { color: #ffffff; }
.site-header .brand-text small { color: var(--orange-400); }
.nav-pill { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); }
.nav-pill a { color: rgba(255,255,255,0.75); }
.nav-pill a:hover { background: rgba(255,255,255,0.10); color: #ffffff; }
.nav-pill a.active { background: #ffffff; color: var(--ink-900); box-shadow: 0 1px 6px rgba(0,0,0,0.25); }
.header-phone { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); color: #ffffff; }
.header-phone:hover { background: rgba(255,255,255,0.14); }
.nav-toggle { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); color: #ffffff; }

.site-header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s6);
  width: 100%;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
}
.brand-logo {
  height: 80px; width: auto;
  object-fit: contain;
  transition: transform 200ms var(--ease-out);
}
.brand:hover .brand-logo { transform: scale(1.03); }
.brand-text {
  display: none;
  font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em;
  color: var(--ink-900); line-height: 1.1;
}
.brand-text small {
  display: block; font-size: 0.7rem; font-weight: 500;
  color: var(--accent-dark); letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (min-width: 720px) { .brand-text { display: inline-block; } }

/* Nav in a pill container */
.nav-pill {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  justify-self: center;
}
@media (min-width: 1024px) { .nav-pill { display: inline-flex; } }
.nav-pill a {
  padding: 10px 18px;
  border-radius: var(--r-full);
  font-size: 0.92rem; font-weight: 500;
  color: var(--ink-700);
  transition: all var(--dur-fast);
}
.nav-pill a:hover { background: var(--white); color: var(--ink-900); }
.nav-pill a.active {
  background: var(--white); color: var(--ink-900);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.header-actions {
  display: flex; align-items: center; gap: 10px;
}
.header-phone {
  display: none; align-items: center; gap: 10px;
  padding: 4px 4px 4px 16px;
  border-radius: var(--r-full);
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--ink-900); font-weight: 600;
  transition: all var(--dur-fast);
}
.header-phone:hover { background: var(--white); }
.header-phone .phone-ico {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--green-500); color: white;
  display: inline-flex; align-items: center; justify-content: center;
}
@media (min-width: 720px) { .header-phone { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; padding: 10px;
  border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border);
  color: var(--ink-900);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.mobile-menu {
  position: fixed; inset: var(--header-h) 0 auto 0; z-index: 45;
  background: white;
  padding: var(--s6) var(--gutter);
  border-bottom: 1px solid var(--border);
  transform: translateY(-120%);
  transition: transform var(--dur-base) var(--ease-out);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block; padding: var(--s3) 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem; font-weight: 500;
  color: var(--ink-900);
}


/* ═══════ Header : bouton Connexion + dropdown ═══════ */
.header-login { position: relative; display: inline-block; }
.header-login-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 12px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  font-family: var(--font-body); font-weight: 500; font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--dur-fast);
  white-space: nowrap;
}
.header-login-btn:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.24); }
.header-login-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 260px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 14px 40px rgba(11,31,58,0.20);
  padding: 8px;
  z-index: 60;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out), visibility 180ms;
}
/* Ouvre au hover desktop + au click via .open (JS) */
@media (hover: hover) {
  .header-login:hover .header-login-menu { opacity: 1; visibility: visible; transform: none; }
}
.header-login.open .header-login-menu { opacity: 1; visibility: visible; transform: none; }
/* Zone tampon invisible entre le bouton et le menu pour éviter la fermeture au hover */
.header-login::after {
  content: ''; position: absolute; top: 100%; right: 0; height: 10px; width: 100%;
  display: none;
}
@media (hover: hover) { .header-login:hover::after { display: block; } }

.header-login-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  color: var(--ink-900);
  text-decoration: none;
  transition: background var(--dur-fast);
}
.header-login-menu a:hover { background: var(--orange-50); }
.header-login-menu a svg {
  flex-shrink: 0;
  width: 34px; height: 34px; padding: 8px;
  background: var(--orange-100);
  color: var(--orange-600);
  border-radius: 50%;
}
.header-login-menu a strong {
  display: block; font-weight: 600; font-size: 0.92rem; color: var(--ink-900);
  line-height: 1.2;
}
.header-login-menu a small {
  display: block; font-size: 0.78rem; color: var(--ink-500);
  margin-top: 2px;
}

/* Le shrink header affecte aussi le login-btn */
.site-header.scrolled .header-login-btn { padding: 6px 12px 6px 10px; font-size: 0.85rem; }

/* Sur petit ecran (< 720), cacher le bouton connexion (utiliser le menu mobile) */
@media (max-width: 720px) {
  .header-login { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--r-full);
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  border: 0;
  transition: all var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  min-height: 48px;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-dark); color: white; transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-dark    { background: var(--ink-900); color: white; }
.btn-dark:hover { background: #000; color: white; transform: translateY(-2px); }
.btn-outline { border: 1.5px solid var(--ink-900); color: var(--ink-900); background: transparent; }
.btn-outline:hover { background: var(--ink-900); color: white; }
.btn-white   { background: white; color: var(--ink-900); }
.btn-white:hover { background: var(--bg); color: var(--ink-900); transform: translateY(-2px); }
.btn-ghost   { color: var(--ink-900); }
.btn-ghost:hover { background: var(--bg); }
.btn-lg { padding: 16px 32px; font-size: 1rem; min-height: 54px; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; min-height: 40px; }
.btn svg { transition: transform var(--dur-fast); }
.btn:hover svg { transform: translate(2px, -2px); }

/* Arrow icon standard for these buttons: use ↗ */

/* ═══════════════════════════════════════════════════════════
   COMMON PATTERNS — pill labels, eyebrow, ...
   ═══════════════════════════════════════════════════════════ */
.pill-label {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 0.85rem; font-weight: 500;
  color: var(--ink-700);
}
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-dark);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.section-label::before { content: '🚚'; }
.eyebrow-uppercase {
  display: inline-block;
  color: var(--accent-dark);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: clamp(40px, 5vw, 80px) 0 clamp(56px, 6vw, 100px);
  overflow: hidden;
}
.hero-wrap {
  position: relative;
  background: linear-gradient(135deg, #fff6ec 0%, #ffffff 50%, #ecfeff 100%);
  border-radius: var(--r-2xl);
  padding: clamp(40px, 5vw, 80px) clamp(24px, 4vw, 64px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s10);
  align-items: center;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: var(--s16); } }

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 20px 0 20px;
  color: var(--ink-900);
}
.hero-title .accent-word {
  color: var(--accent);
  font-weight: 800;
  font-style: normal;
}
.hero-lead {
  color: var(--ink-500);
  font-size: var(--fs-lead);
  max-width: 500px;
  margin-bottom: var(--s8);
}
.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: var(--s3);
  align-items: center;
}
.hero-phone-block {
  display: flex; align-items: center; gap: 12px;
  padding: 4px 20px 4px 4px;
}
.hero-phone-block .phone-ico {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-500); color: white;
  display: inline-flex; align-items: center; justify-content: center;
}
.hero-phone-block .phone-info small {
  display: block; font-size: 0.75rem; color: var(--text-mute);
}
.hero-phone-block .phone-info strong {
  display: block; font-weight: 700; color: var(--ink-900); font-size: 1rem;
}

.hero-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-lg);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.02) saturate(1.05);
}
.hero-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(228,108,12,0.20));
}

/* ═══════════════════════════════════════════════════════════
   PHOTO STRIP (4 columns)
   ═══════════════════════════════════════════════════════════ */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px)  { .photo-strip { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .photo-strip { grid-template-columns: repeat(4, 1fr); } }
.photo-strip figure {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--bg);
  position: relative;
}
.photo-strip img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 900ms var(--ease-out);
}
.photo-strip figure:hover img { transform: scale(1.05); }

/* ═══════════════════════════════════════════════════════════
   SERVICE CARDS — 4-col grid with one highlighted
   ═══════════════════════════════════════════════════════════ */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px)  { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  padding: var(--s8) var(--s6);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--dur-base);
  display: flex; flex-direction: column;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card.highlight {
  background: var(--accent);
  border-color: var(--accent);
}
.service-card.highlight h3, .service-card.highlight p, .service-card.highlight .service-more {
  color: white;
}
.service-card .service-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent-dark);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto var(--s4);
  font-size: 1.4rem;
}
.service-card.highlight .service-icon {
  background: rgba(255,255,255,0.2); color: white;
}
.service-card h3 {
  text-align: center;
  margin-bottom: var(--s3);
}
.service-card p {
  text-align: center; font-size: 0.9rem;
  color: var(--text-mute); flex: 1;
  margin-bottom: var(--s4);
}
.service-more {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  color: var(--accent-dark);
  font-weight: 600; font-size: 0.9rem;
}
.service-card.highlight .service-more { color: white; }

/* ═══════════════════════════════════════════════════════════
   STATS BANNER (dark bg, 4 numbers)
   ═══════════════════════════════════════════════════════════ */
.stats-banner {
  background: linear-gradient(135deg, var(--orange-700), var(--orange-800));
  color: white;
  border-radius: var(--r-xl);
  padding: var(--s10) var(--s6);
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M0 50h100M50 0v100' stroke='%23ffffff' stroke-width='0.4' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
  position: relative;
}
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item {
  padding: var(--s3) 0;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: var(--s6);
  text-align: left;
}
.stat-item:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 900px) {
  .stat-item { border-left: 0; padding-left: 0; text-align: center; }
}
.stat-num {
  font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
  font-weight: 800;
  color: white; line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem; font-weight: 500;
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT (image + text split)
   ═══════════════════════════════════════════════════════════ */
.split {
  display: grid; grid-template-columns: 1fr; gap: var(--s10);
  align-items: center;
}
@media (min-width: 900px) { .split.left { grid-template-columns: 1fr 1.1fr; gap: var(--s16); } }
@media (min-width: 900px) { .split.right { grid-template-columns: 1.1fr 1fr; gap: var(--s16); } }
.split-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-content h2 {
  margin-bottom: var(--s4);
  color: var(--ink-900);
}
.split-content p {
  margin-bottom: var(--s3);
  color: var(--text-mute);
}
.split-meta {
  display: flex; gap: var(--s6); align-items: center; flex-wrap: wrap;
  margin: var(--s6) 0 var(--s8);
  padding: var(--s4) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.split-meta-item {
  display: flex; gap: 12px; align-items: center;
}
.split-meta-item .ico {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-bg); color: var(--accent-dark);
}
.split-meta-item .txt small {
  display: block; font-size: 0.75rem; color: var(--text-mute);
}
.split-meta-item .txt strong {
  display: block; font-weight: 700; color: var(--ink-900);
}

/* ═══════════════════════════════════════════════════════════
   FAQ accordion
   ═══════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--dur-fast);
}
.faq-item[open] { border-color: var(--accent); background: white; box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 16px 22px;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 500; color: var(--ink-900); font-size: 0.95rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent-dark); font-weight: 600;
  transition: transform var(--dur-fast);
}
.faq-item[open] summary::after { content: '−'; background: var(--accent); color: white; border-color: var(--accent); }
.faq-item .faq-answer {
  padding: 0 22px 20px;
  color: var(--text-mute); font-size: 0.92rem; line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   FULL CTA BANNER
   ═══════════════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  color: white;
  border-radius: var(--r-2xl);
  padding: clamp(48px, 6vw, 96px) var(--s8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.10), transparent 50%);
}
.cta-band h2 {
  color: white;
  font-size: clamp(1.8rem, 3vw + 0.8rem, 3rem);
  line-height: 1.15;
  margin-bottom: var(--s3);
  position: relative;
}
.cta-band p {
  color: rgba(255,255,255,0.85);
  max-width: 540px; margin: 0 auto var(--s8);
  position: relative;
}
.cta-band .btn { position: relative; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: #0B1F3A;
  color: rgba(255,255,255,0.7);
  padding: var(--s16) 0 var(--s6);
  margin-top: auto;
}
.footer-grid {
  display: grid; gap: var(--s10);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }

.footer-brand img {
  height: 110px; width: auto;
  margin-bottom: var(--s4);
}
.footer-brand p {
  color: rgba(255,255,255,0.65); font-size: 0.9rem;
  margin-bottom: var(--s4); max-width: 300px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--dur-fast);
  box-shadow: 0 4px 12px rgba(228,108,12,0.35);
}
.footer-social a:hover { background: var(--orange-400); color: white; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(228,108,12,0.45); }

.footer-col h4 {
  color: #ffffff;
  font-size: 1rem; font-weight: 700;
  margin-bottom: var(--s4);
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: var(--s2); }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-col a:hover { color: var(--orange-400); }
.footer-col .contact-item {
  color: rgba(255,255,255,0.7); font-size: 0.92rem;
  margin-bottom: var(--s2);
}
.footer-col .contact-item strong { color: #ffffff; font-weight: 600; }
.footer-col .contact-item strong a { color: #ffffff; }
.footer-col .contact-item strong a:hover { color: var(--orange-400); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: var(--s10); padding-top: var(--s4);
  display: flex; flex-wrap: wrap; gap: var(--s3);
  justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--orange-400); }

/* ═══════════════════════════════════════════════════════════
   Sticky mobile CTA
   ═══════════════════════════════════════════════════════════ */
.sticky-mobile {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  background: white;
  padding: 12px 16px;
  display: flex; gap: 10px;
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
}
.sticky-mobile .btn { flex: 1; padding: 12px; min-height: 44px; font-size: 0.9rem; }
@media (min-width: 900px) { .sticky-mobile { display: none; } }

/* ═══════════════════════════════════════════════════════════
   Forms shared
   ═══════════════════════════════════════════════════════════ */
.form-group { margin-bottom: var(--s4); }
.form-label {
  display: block; font-size: 0.9rem; font-weight: 600;
  color: var(--ink-900); margin-bottom: 6px;
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--white);
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--ink-900);
  transition: all var(--dur-fast);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(228,108,12,0.15);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: 0.82rem; color: var(--text-soft); margin-top: 4px; }
.form-row { display: grid; gap: var(--s4); grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }

.alert {
  padding: 14px 18px;
  border-radius: var(--r-md);
  margin-bottom: var(--s4);
  font-size: 0.92rem;
}
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-info    { background: var(--accent-bg); color: var(--accent-dark); border: 1px solid var(--accent-soft); }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
[data-reveal].in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

/* Utility */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-4 { margin-top: var(--s4); }
.mt-8 { margin-top: var(--s8); }
.mb-4 { margin-bottom: var(--s4); }
.mb-8 { margin-bottom: var(--s8); }
