/*
 * Alti Clim — Design System v4  "Île-de-France Pro"
 * Ultra-moderne, thème clair, signature navy + bleu + orange
 * ─────────────────────────────────────────────────────
 * Palette Alti Clim :
 *   --cb-teal     #238cf5   Bleu vif (liens, accents)
 *   --cb-deep     #0D2E4E   Navy signature (titres, CTA)
 *   --cb-navy     #0D2E4E   Navy (overlays, headings)
 *   --cb-white    #FFFFFF
 *   --cb-light    #F7FAFC   Fond sections alt
 *   --cb-cold     #EAF2FA   Fond bleu pâle
 *   --cb-border   #DCE4EE
 *   --cb-text     #2C3E54   Corps texte
 *   --cb-muted    #6B7D92   Texte secondaire
 *   --cb-red      #E62814   CTA urgence / dépannage
 *   --cb-gold     #F6A618   Orange Alti Clim (accent €, CTA chaud)
 */
:root {
  --cb-teal:    #238cf5;
  --cb-deep:    #0D2E4E;
  --cb-teal2:   #0a5e8e;
  --cb-navy:    #0D2E4E;
  --cb-white:   #FFFFFF;
  --cb-light:   #F7FAFC;
  --cb-cold:    #EAF2FA;
  --cb-border:  #dce4ee;
  --cb-text:    #2C3E54;
  --cb-muted:   #6B7D92;
  --cb-red:     #E62814;
  --cb-gold:    #F6A618;
  --cb-green:   #16A34A;
  --cb-footer:  #082039;

  /* Alias — compatibilité legacy */
  --ca-primary:   var(--cb-deep);
  --ca-secondary: var(--cb-teal);
  --ca-accent:    var(--cb-red);
  --ca-dark:      var(--cb-navy);
  --ca-text:      var(--cb-text);
  --ca-muted:     var(--cb-muted);
  --ca-border:    var(--cb-border);
  --ca-bg2:       var(--cb-cold);
  --ca-bg3:       var(--cb-light);
  --ca-footer:    var(--cb-footer);
  --ca-heading:   var(--cb-navy);
  --c-primary:    var(--cb-deep);
  --c-teal:       var(--cb-teal);
  --c-teal-dark:  var(--cb-teal2);
  --c-teal-pale:  var(--cb-cold);
  --c-red:        var(--cb-red);
  --c-red-dark:   #c5210f;
  --c-dark:       var(--cb-text);
  --c-muted:      var(--cb-muted);
  --c-border:     var(--cb-border);
  --c-cold:       var(--cb-cold);
  --c-light:      var(--cb-light);
  --c-orange:     var(--cb-gold);
  --c-green:      var(--cb-green);
  --c-accent:     var(--cb-teal);
  --c-danger:     var(--cb-red);
  --c-white:      #fff;
  --font-h:       'Trebuchet MS', system-ui, sans-serif;
  --font-b:       'Trebuchet MS', system-ui, sans-serif;
  --aw-primary:   var(--cb-deep);
  --aw-accent:    var(--cb-teal);
  --aw-border:    var(--cb-border);
  --aw-bg:        var(--cb-cold);

  --r-sm: 4px;  --r-md: 8px;  --r-lg: 12px;
  --r-xl: 16px; --r-2xl: 20px; --r-3xl: 28px;

  --shadow-sm: 0 1px 4px rgba(13,37,53,.06);
  --shadow-md: 0 4px 20px rgba(13,37,53,.09);
  --shadow-lg: 0 12px 48px rgba(13,37,53,.13);
  --shadow-xl: 0 24px 72px rgba(13,37,53,.18);
  --shadow-teal: 0 8px 28px rgba(45,171,183,.28);
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Trebuchet MS', system-ui, sans-serif;
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--cb-text);
  background: var(--cb-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cb-teal); text-decoration: none; transition: color .15s; }
a:hover { color: var(--cb-deep); }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Trebuchet MS', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--cb-navy);
  margin-top: 0;
}

/* ── LAYOUT ─────────────────────────────────────── */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm   { max-width: 900px;  margin: 0 auto; padding: 0 24px; }
.container-xs   { max-width: 680px;  margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ── TOPBAR ─────────────────────────────────────── */
/* Old cl-topbar replaced by shared v5-topbar partial */
.v5-topbar {
  background: var(--cb-navy, #0D2E4E); padding: .45rem 0;
  font-size: .72rem; color: rgba(255,255,255,.5);
}
.v5-topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.v5-topbar-item { display: inline-flex; align-items: center; gap: .3rem; }
.v5-topbar-item a { color: #fff; text-decoration: none; font-weight: 700; }
.v5-topbar-item strong { color: #fff; font-weight: 700; }
@media (max-width: 600px) {
  .v5-topbar-inner { justify-content: center; font-size: .65rem; }
  .v5-topbar-item:nth-child(2) { display: none; }
}

/* ── NAVIGATION ─────────────────────────────────── */
/* ── NAV (v5 unified — site-wide) ─────────────────── */
.v5-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cb-border, #e2e8f0);
  padding: .65rem 0;
  transition: padding .3s ease, box-shadow .3s ease;
}
.v5-nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.v5-logo {
  display: flex; align-items: center; gap: .55rem;
  text-decoration: none; flex-shrink: 0;
}
.v5-logo-img {
  width: 100px; height: 100px; border-radius: 18px;
  object-fit: contain; flex-shrink: 0;
  transition: width .35s ease, height .35s ease, border-radius .35s ease;
}
.v5-nav--compact .v5-logo-img { width: 46px; height: 46px; border-radius: 10px; }
.v5-nav--compact { padding: .35rem 0; box-shadow: 0 1px 12px rgba(13,46,78,.08); }
.v5-logo-text {
  font-size: 1.2rem; font-weight: 800;
  color: var(--cb-navy, #0D2E4E); line-height: 1.1;
}
.v5-nav--compact .v5-logo-text { font-size: 1rem; }
.v5-logo-sub {
  font-size: .58rem; color: var(--cb-muted, #6b7f94); font-weight: 500; letter-spacing: .3px;
  transition: opacity .2s;
}
.v5-nav--compact .v5-logo-sub { display: none; }
.v5-nav-links {
  display: flex; align-items: center; gap: .15rem;
  flex: 1; justify-content: center;
}
.v5-nav-links a {
  font-size: .82rem; font-weight: 600; color: var(--cb-text, #2C3E54);
  padding: .4rem .7rem; border-radius: 7px; transition: all .15s;
  white-space: nowrap; text-decoration: none;
}
.v5-nav-links a:hover, .v5-nav-links a.active {
  color: var(--cb-teal, #238cf5); background: rgba(35,140,245,.06);
}
.v5-nav-actions { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.v5-nav-tel {
  font-size: .82rem; font-weight: 700; color: var(--cb-navy, #0D2E4E);
  display: flex; align-items: center; gap: .35rem;
  text-decoration: none; transition: color .15s; white-space: nowrap;
}
.v5-nav-tel:hover { color: var(--cb-teal, #238cf5); }
/* Rbar */
.v5-rbar { background: #eaf2fa; border-top: 1px solid var(--cb-border, #e2e8f0); border-bottom: 1px solid var(--cb-border, #e2e8f0); padding: .85rem 0; }
.v5-rbar-inner { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.v5-rbar-item { font-size: .78rem; font-weight: 600; color: var(--cb-navy, #0D2E4E); }
/* Devis button */
.btn-devis {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .55rem 1.2rem; background: var(--cb-navy, #0D2E4E); color: #fff;
  border-radius: 8px; font-size: .82rem; font-weight: 700;
  text-decoration: none; transition: all .2s; border: none; cursor: pointer;
  font-family: 'Trebuchet MS', Tahoma, sans-serif;
}
.btn-devis:hover { background: #1a3d5c; transform: translateY(-1px); color: #fff; }

@media (max-width: 900px) {
  .v5-nav-links { display: none; }
  .v5-nav-tel { display: none; }
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 24px; border-radius: 8px;
  font-size: .83rem; font-weight: 700; font-family: 'Trebuchet MS', sans-serif;
  cursor: pointer; transition: all .2s;
  border: 2px solid transparent;
  text-decoration: none; white-space: nowrap; line-height: 1;
}
.btn-primary {
  background: var(--cb-teal); color: #fff; border-color: var(--cb-teal);
}
.btn-primary:hover {
  background: var(--cb-deep); border-color: var(--cb-deep); color: #fff;
  transform: translateY(-2px); box-shadow: var(--shadow-teal);
}
.btn-red {
  background: var(--cb-red); color: #fff; border-color: var(--cb-red);
}
.btn-red:hover {
  background: #c5210f; border-color: #c5210f; color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,40,20,.25);
}
.btn-dark {
  background: var(--cb-navy); color: #fff; border-color: var(--cb-navy);
}
.btn-dark:hover { background: #1a3a50; color: #fff; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--cb-teal); border-color: var(--cb-teal);
}
.btn-outline:hover { background: var(--cb-teal); color: #fff; }
.btn-outline-dark {
  background: transparent; color: var(--cb-navy); border-color: var(--cb-navy);
}
.btn-outline-dark:hover { background: var(--cb-navy); color: #fff; }
.btn-outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-schedule {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px 26px;
  background: linear-gradient(135deg, var(--cb-teal), var(--cb-deep));
  color: #fff; border: none; border-radius: 8px;
  font-size: .83rem; font-weight: 700; font-family: 'Trebuchet MS', sans-serif;
  cursor: pointer; text-decoration: none; transition: all .22s; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(45,171,183,.3);
}
.btn-schedule:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45,171,183,.4);
  color: #fff;
}
.btn-main {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: 8px;
  font-size: .83rem; font-weight: 700; color: #fff;
  background: var(--cb-teal); border: none; cursor: pointer;
  text-decoration: none; transition: all .2s; white-space: nowrap;
}
.btn-main:hover {
  background: var(--cb-deep); color: #fff; transform: translateY(-1px);
}
.btn-main.btn-light-trans {
  background: transparent; color: var(--cb-teal);
  border: 2px solid var(--cb-border);
}
.btn-main.btn-light-trans:hover {
  background: var(--cb-teal); color: #fff; border-color: var(--cb-teal);
}
.btn-lg   { padding: 13px 30px; font-size: .9rem; border-radius: 10px; }
.btn-sm   { padding: 7px 16px; font-size: .77rem; }
.btn-xs   { padding: 5px 11px; font-size: .69rem; border-radius: 5px; }
.btn-wide { width: 100%; justify-content: center; }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-orange { background: var(--cb-teal); color: #fff; border-color: var(--cb-teal); }
.btn-orange:hover { background: var(--cb-deep); color: #fff; }

/* ── SECTIONS ────────────────────────────────────── */
.section     { padding: 80px 0; }
.section-sm  { padding: 52px 0; }
.section-bg  { background: var(--cb-light); }
.section-dark { background: var(--cb-navy); }
.section-cold { background: var(--cb-cold); }
.section-teal { background: var(--cb-deep); }

/* Section sub-texts */
.subtitle, .sub-text, .section-eyebrow {
  display: inline-block;
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--cb-teal); margin-bottom: 10px;
}
.title, .section-title {
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-weight: 800; color: var(--cb-navy);
  margin-bottom: 8px; letter-spacing: -.3px; line-height: 1.15;
}
.disc, .section-sub {
  font-size: .875rem; color: var(--cb-muted); line-height: 1.72;
}
.section-label {
  display: inline-block; font-size: .67rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .7px;
  color: var(--cb-teal); background: var(--cb-cold);
  padding: 3px 11px; border-radius: 999px; margin-bottom: 10px;
}

/* ═══════════════════════════════════════════════════
   PAGE HERO — Photo background, BatiDraw style
   ═══════════════════════════════════════════════════
   Structure :
     <div class="ph ph--[slug]">
       <div class="ph__img" style="background-image:[image URL]"></div>
       <div class="ph__overlay"></div>
       <div class="container ph__body">...</div>
     </div>
*/
.ph {
  position: relative;
  min-height: 420px;
  display: flex; align-items: center;
  overflow: hidden;
}

/* Photo layer — always covers 100% */
.ph__img {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  /* Force image load even if no local file */
  min-height: 100%;
  transition: transform 8s ease;
  transform: scale(1.04);
}
.ph:hover .ph__img { transform: scale(1); }

/* Gradient overlay — left-heavy for text legibility */
.ph__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg,
      rgba(10,28,38,.92) 0%,
      rgba(10,28,38,.78) 40%,
      rgba(10,28,38,.3)  75%,
      rgba(10,28,38,.12) 100%
    ),
    linear-gradient(to bottom, transparent 50%, rgba(10,28,38,.55) 100%);
}
/* Subtle teal accent strip bottom-left */
.ph__overlay::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0; top: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--cb-teal), transparent);
  opacity: .8;
}

.ph__body {
  position: relative; z-index: 2;
  padding-top: 88px; padding-bottom: 80px;
}

/* Tag pill */
.ph__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(45,171,183,.18);
  border: 1px solid rgba(45,171,183,.4);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: .67rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  color: rgba(255,255,255,.95);
  margin-bottom: 20px;
}
.ph__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cb-teal);
  animation: blink 2s infinite; flex-shrink: 0;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}

/* H1 */
.ph__h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800; color: #fff;
  line-height: 1.1; letter-spacing: -.6px;
  margin-bottom: 18px; max-width: 620px;
}
.ph__h1 em { font-style: normal; color: #ffe082; }

/* Sub */
.ph__sub {
  font-size: .92rem; color: rgba(255,255,255,.78);
  line-height: 1.72; max-width: 520px; margin-bottom: 32px;
}

/* CTAs */
.ph__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Badge row */
.ph__badges {
  display: flex; gap: 22px;
  margin-top: 36px; flex-wrap: wrap;
}
.ph__badge {
  display: flex; align-items: center; gap: 7px;
  font-size: .77rem; font-weight: 600;
  color: rgba(255,255,255,.75);
}
.ph__badge svg { color: var(--cb-teal); flex-shrink: 0; }

/* Per-page tint variations */
.ph--aides .ph__overlay {
  background:
    linear-gradient(105deg, rgba(8,32,20,.92) 0%, rgba(8,32,20,.75) 42%, rgba(8,32,20,.22) 100%),
    linear-gradient(to bottom, transparent 50%, rgba(8,32,20,.55) 100%);
}
.ph--maintenance .ph__overlay {
  background:
    linear-gradient(105deg, rgba(30,15,5,.92) 0%, rgba(55,28,8,.75) 42%, rgba(30,15,5,.22) 100%),
    linear-gradient(to bottom, transparent 50%, rgba(30,15,5,.55) 100%);
}
.ph--clim .ph__overlay {
  background:
    linear-gradient(105deg, rgba(18,8,44,.92) 0%, rgba(45,15,85,.75) 42%, rgba(18,8,44,.22) 100%),
    linear-gradient(to bottom, transparent 50%, rgba(18,8,44,.55) 100%);
}
.ph--contact .ph__overlay {
  background:
    linear-gradient(105deg, rgba(10,28,38,.92) 0%, rgba(25,90,105,.72) 42%, rgba(10,28,38,.22) 100%),
    linear-gradient(to bottom, transparent 50%, rgba(10,28,38,.55) 100%);
}
.ph--simulateur .ph__overlay {
  background:
    linear-gradient(105deg, rgba(10,28,38,.9) 0%, rgba(22,80,95,.72) 42%, rgba(10,28,38,.22) 100%),
    linear-gradient(to bottom, transparent 50%, rgba(10,28,38,.55) 100%);
}

/* ── HERO (homepage 50/50) ───────────────────────── */
.hero-wrap {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 580px; overflow: hidden;
}
.hero-content {
  padding: 88px 48px 80px max(24px, calc((100vw - 1200px)/2 + 24px));
  display: flex; flex-direction: column; justify-content: center;
  background: #fff;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cb-cold); color: var(--cb-deep);
  border-radius: 999px; padding: 5px 14px;
  font-size: .67rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 20px; width: fit-content;
}
.hero-tag-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cb-teal); animation: blink 2s infinite;
}
.hero-h1, .hero-title {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 800; color: var(--cb-navy);
  line-height: 1.1; letter-spacing: -.5px; margin-bottom: 16px;
}
.hero-h1 em, .hero-title em { color: var(--cb-teal); font-style: normal; }
.hero-p, .hero-sub {
  font-size: .9rem; color: var(--cb-muted);
  line-height: 1.72; max-width: 460px; margin-bottom: 32px;
}
.hero-ctas  { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 22px; margin-top: 32px; flex-wrap: wrap; }
.hero-badge-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600; color: var(--cb-muted);
}
.hero-badge-icon { color: var(--cb-teal); }

/* Right image panel */
.hero-img, .hero-img-wrap {
  position: relative; overflow: hidden;
  background: var(--cb-navy);
}
.hero-img img, .hero-img-wrap img,
.hero-img svg, .hero-img-wrap svg {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
}
.hero-img-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: #fff; border-radius: 16px;
  padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
}
.hero-img-badge-num {
  font-size: 1.45rem; font-weight: 800;
  color: var(--cb-teal); line-height: 1;
}
.hero-img-badge-txt {
  font-size: .72rem; color: var(--cb-muted);
  font-weight: 600; line-height: 1.3;
}

/* ── BRAND STRIP ──────────────────────────────────── */
.brand-strip {
  background: #fff;
  border-top: 1px solid var(--cb-border);
  border-bottom: 1px solid var(--cb-border);
  padding: 28px 0;
}
.brand-strip-inner {
  display: flex; align-items: center;
  justify-content: space-around; gap: 24px; flex-wrap: wrap;
}
.brand-logo {
  display: flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: .95rem; color: #b0bec8;
  letter-spacing: .8px; text-transform: uppercase;
  filter: grayscale(1) opacity(.5); transition: filter .2s, color .2s;
  cursor: default;
}
.brand-logo:hover { filter: none; color: var(--cb-teal); }

/* ── SERVICE CARDS (CoolAir style_three) ──────────── */
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-area { border-radius: 0; overflow: hidden; transition: box-shadow .3s, transform .3s; }
.service-area:hover { box-shadow: var(--shadow-xl); transform: translateY(-5px); }
.service-area .rounded-20px { border-radius: 20px; overflow: hidden; }
.service-area .relative { position: relative; overflow: hidden; }
.service-area .relative img,
.service-area .relative svg {
  width: 100%; height: 260px; object-fit: cover;
  transition: transform .5s; display: block;
}
.service-area:hover .relative img,
.service-area:hover .relative svg { transform: scale(1.06); }
.service-area .relative::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,28,38,.18), rgba(10,28,38,.62));
}
.abs-centered {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  color: #fff; z-index: 10; text-align: center;
  text-shadow: 0 2px 14px rgba(0,0,0,.5);
  letter-spacing: -.3px; margin-bottom: 0;
}
.bg-color-3 { background: var(--cb-light); padding: 28px 28px 32px; }
.bg-color-3 .disc { font-size: .83rem; color: var(--cb-muted); line-height: 1.7; }
.spacer-20 { height: 20px; }
.fs-30 { font-size: 1.35rem; }

/* ── WHY CHOOSE US ───────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.why-card, .rt-choose-card {
  background: #fff; border-radius: 16px; padding: 26px 20px;
  text-align: center; border: 1px solid var(--cb-border);
  transition: all .25s;
}
.why-card:hover, .rt-choose-card:hover {
  border-color: var(--cb-teal); box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.why-icon, .rs-grid-img {
  width: 62px; height: 62px; border-radius: 12px;
  margin: 0 auto 14px;
  background: var(--cb-cold);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.why-card:hover .why-icon { background: var(--cb-teal); }
.why-title { font-size: .88rem; font-weight: 700; color: var(--cb-navy); margin-bottom: 7px; }
.why-desc  { font-size: .8rem;  color: var(--cb-muted); line-height: 1.6; }
.logo-title h4 { font-size: .88rem; font-weight: 700; color: var(--cb-navy); margin-bottom: 7px; }
.logo-desc p   { font-size: .8rem; color: var(--cb-muted); line-height: 1.6; }

/* ── STATS BAR ───────────────────────────────────── */
.stats-bar { background: var(--cb-deep); padding: 52px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-item { padding: 8px; }
.stat-num  { font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-unit { font-size: 1.1rem; color: rgba(255,255,255,.6); font-weight: 700; }
.stat-label{ font-size: .78rem; color: rgba(255,255,255,.52); margin-top: 6px; font-weight: 500; }

/* ── PROCESS STEPS ───────────────────────────────── */
.working-area, .process-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.de-step {
  background: var(--cb-cold); border-radius: 16px;
  padding: 26px 18px; text-align: center; transition: all .25s;
}
.de-step:hover { background: var(--cb-teal); transform: translateY(-3px); }
.de-step:hover h4, .de-step:hover .d-number { color: #fff !important; }
.de-step:hover svg { stroke: #fff !important; fill: none; }
.d-number {
  font-size: .67rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--cb-teal); margin-bottom: 10px;
}
.de-step h4 { font-size: .93rem; font-weight: 700; color: var(--cb-navy); margin-bottom: 12px; }

/* ── TESTIMONIALS ────────────────────────────────── */
.testi-grid, .testimonial-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
}
.de_testi, .testi-card {
  background: #fff; border: 1px solid var(--cb-border);
  border-radius: 16px; padding: 26px; transition: all .22s;
}
.de_testi:hover, .testi-card:hover {
  border-color: var(--cb-teal); box-shadow: var(--shadow-md); transform: translateY(-2px);
}
.de-rating-ext, .testi-stars { color: var(--cb-gold); font-size: .95rem; letter-spacing: 2px; margin-bottom: 14px; }
.de_testi blockquote p, .testi-text { font-size: .87rem; color: var(--cb-text); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--cb-cold); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--cb-teal); flex-shrink: 0; }
.testi-name, .de_testi .name { font-weight: 700; font-size: .84rem; color: var(--cb-navy); }
.testi-loc, .de_testi .designation { font-size: .73rem; color: var(--cb-muted); }

/* ── BLOG CARDS ──────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.single-blog-area-style-one, .blog-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--cb-border); transition: all .25s;
  display: flex; flex-direction: column;
}
.single-blog-area-style-one:hover, .blog-card:hover {
  border-color: var(--cb-teal); box-shadow: var(--shadow-md); transform: translateY(-3px);
}
.post-image, .blog-card-img-wrap {
  height: 210px; overflow: hidden;
  background: var(--cb-navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.post-image img, .blog-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .4s;
}
.single-blog-area-style-one:hover .post-image img,
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.06); }
.cat_list ul { list-style: none; padding: 0; margin: 0; display: inline; }
.cat_list ul li { display: inline; }
.cat_list ul li a {
  display: inline-block; font-size: .62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  color: #fff; background: var(--cb-teal);
  padding: 4px 10px; border-radius: 4px; text-decoration: none;
}
.inner-content-wrapper, .blog-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.inner-content-wrapper .title, .blog-card-title { font-size: .9rem; font-weight: 700; color: var(--cb-navy); line-height: 1.35; margin-bottom: 8px; }
.inner-content-wrapper .title a, .blog-card-title a { color: var(--cb-navy); }
.inner-content-wrapper .title a:hover, .blog-card-title a:hover { color: var(--cb-teal); }
.inner-content-wrapper .desc, .blog-card-excerpt { font-size: .81rem; color: var(--cb-muted); line-height: 1.65; flex: 1; margin-bottom: 14px; }

/* ── EMERGENCY / CTA SECTIONS ────────────────────── */
.emergency-section { background: linear-gradient(135deg, var(--cb-navy), #1a3450); padding: 52px 0; }
.emergency-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.emergency-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.emergency-tel {
  font-size: 2rem; font-weight: 800; color: #fff;
  text-decoration: none; letter-spacing: -.5px; line-height: 1;
}
.emergency-tel:hover { color: var(--cb-teal); }
.emergency-sub { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 4px; }
.emergency-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-strip { background: var(--cb-deep); padding: 48px 0; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-strip h3 { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.cta-strip p  { color: rgba(255,255,255,.6); font-size: .87rem; margin: 0; }
.cta-strip-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.rbar-old { background: var(--cb-cold); border-top: 1px solid var(--cb-border); border-bottom: 1px solid var(--cb-border); padding: 18px 0; }
.rbar-old-inner { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
.rbar-old-item { display: flex; align-items: center; gap: 7px; font-size: .8rem; font-weight: 600; color: var(--cb-deep); }

/* ── AIDES ───────────────────────────────────────── */
.aides-card {
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px; padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px;
}
.aides-card:last-child { margin-bottom: 0; }
.aides-card-label { font-weight: 700; color: #fff; font-size: .88rem; }
.aides-card-sub   { font-size: .7rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.aides-card-amount, .aides-amount { font-size: 1.25rem; font-weight: 800; color: #ffe082; white-space: nowrap; }

/* ── SIMULATEUR CHOICE CARDS ─────────────────────── */
.sim-choice-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.sim-choice {
  display: block; text-decoration: none;
  background: #fff; border: 2px solid var(--cb-border);
  border-radius: 20px; overflow: hidden; transition: all .3s; position: relative;
}
.sim-choice:hover { border-color: var(--cb-teal); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(45,171,183,.16); }
.sim-choice--featured { border-color: var(--cb-teal); box-shadow: 0 6px 24px rgba(45,171,183,.14); }
.sim-choice__img { height: 160px; overflow: hidden; position: relative; background: var(--cb-navy); }
.sim-choice__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.sim-choice:hover .sim-choice__img img { transform: scale(1.06); }
.sim-choice__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,28,38,.15), rgba(10,28,38,.55)); }
.sim-choice__badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--cb-red); color: #fff; font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; padding: 4px 10px; border-radius: 999px; box-shadow: 0 2px 8px rgba(230,40,20,.35); }
.sim-choice__body { padding: 22px 22px 26px; }
.sim-choice__title { font-size: .97rem; font-weight: 800; color: var(--cb-navy); margin-bottom: 8px; }
.sim-choice__desc  { font-size: .81rem; color: var(--cb-muted); line-height: 1.6; margin-bottom: 16px; }
.sim-choice__checks { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 5px; }
.sim-choice__checks li { font-size: .76rem; color: var(--cb-navy); display: flex; align-items: center; gap: 7px; }
.sim-choice__checks li::before { content: ''; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; background: #dcfce7 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 7-7' stroke='%2316a34a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat; }
.sim-choice__cta { display: block; width: 100%; text-align: center; padding: 11px; border-radius: 10px; font-size: .84rem; font-weight: 700; color: #fff; background: var(--cb-deep); text-decoration: none; transition: background .18s; }
.sim-choice__cta:hover { background: var(--cb-teal); color: #fff; }
.sim-choice--featured .sim-choice__cta { background: var(--cb-teal); }
.sim-choice--featured .sim-choice__cta:hover { background: var(--cb-deep); }
.recall-band { background: var(--cb-cold); border: 1px solid var(--cb-border); border-radius: 16px; padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.recall-band__title { font-size: .93rem; font-weight: 800; color: var(--cb-navy); margin-bottom: 4px; }
.recall-band__sub   { font-size: .81rem; color: var(--cb-muted); margin: 0; }
.recall-band__actions { display: flex; gap: 10px; }

/* ── FOOTER ──────────────────────────────────────── */
.site-footer { background: var(--cb-footer); color: rgba(255,255,255,.78); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 48px; margin-bottom: 52px; }
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--cb-teal), var(--cb-deep)); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: .88rem; color: #fff; }
.footer-logo-name { font-size: 1.1rem; font-weight: 800; color: #fff; }
.footer-desc { font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 18px; max-width: 280px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social { width: 35px; height: 35px; border-radius: 8px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); transition: all .15s; }
.footer-social:hover { background: var(--cb-teal); border-color: var(--cb-teal); color: #fff; }
.footer-col-h, .footer-grid h5 { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.32); margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .83rem; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 5px; transition: color .14s; }
.footer-links a:hover { color: var(--cb-teal); }
.footer-links a::before { content: '›'; font-size: .72rem; opacity: .35; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: .83rem; color: rgba(255,255,255,.58); margin-bottom: 10px; }
.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: var(--cb-teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .76rem; color: rgba(255,255,255,.28); }
.footer-bottom a { color: rgba(255,255,255,.38); }
.footer-bottom a:hover { color: var(--cb-teal); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ── DASHBOARD ───────────────────────────────────── */
.dashboard-body { background: var(--cb-light); min-height: 100vh; }
.dash-nav { background: var(--cb-deep); padding: 0 24px; height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.dash-logo { font-size: 1rem; font-weight: 800; color: #fff; text-decoration: none; }
.dash-layout { display: grid; grid-template-columns: 228px 1fr; min-height: calc(100vh - 54px); }
.dash-main { padding: 24px; min-width: 0; }
.dash-sidebar { background: #fff; border-right: 1px solid var(--cb-border); padding: 16px 0; }
.dash-menu { display: flex; flex-direction: column; gap: 2px; padding: 0 10px; }
.dash-menu-item { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 8px; font-size: .8rem; font-weight: 600; color: var(--cb-text); text-decoration: none; transition: all .14s; }
.dash-menu-item:hover, .dash-menu-item--active { background: var(--cb-cold); color: var(--cb-teal); }
.dash-menu-section { font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--cb-muted); padding: 12px 12px 4px; margin-top: 5px; }
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(156px,1fr)); gap: 12px; margin-bottom: 20px; }
.kpi-card { background: #fff; border: 1px solid var(--cb-border); border-radius: 14px; padding: 18px; }
.kpi-number { font-size: 1.7rem; font-weight: 800; color: var(--cb-teal); line-height: 1; }
.kpi-label  { font-size: .68rem; color: var(--cb-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .3px; margin-top: 4px; }
.kpi-icon   { font-size: 1.4rem; margin-bottom: 4px; }
.kpi-card--primary .kpi-number { color: var(--cb-teal); }
.kpi-card--hot .kpi-number     { color: var(--cb-red); }
.kpi-card--urgent .kpi-number  { color: var(--cb-gold); }
.kpi-card--green .kpi-number   { color: var(--cb-green); }
.dash-stat-highlight { background: linear-gradient(135deg, var(--cb-deep), var(--cb-teal)); border-radius: 14px; padding: 18px; }
.dash-stat-highlight .kpi-number { color: #ffe082; }
.dash-stat-highlight .kpi-label  { color: rgba(255,255,255,.65); }
.dash-table-wrap { background: #fff; border: 1px solid var(--cb-border); border-radius: 14px; overflow: hidden; }
.dash-table { width: 100%; border-collapse: collapse; font-size: .8rem; }
.dash-table thead { background: var(--cb-cold); }
.dash-table th { padding: 10px 14px; text-align: left; font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; color: var(--cb-muted); }
.dash-table td { padding: 10px 14px; border-top: 1px solid var(--cb-border); }
.dash-table tbody tr:hover { background: var(--cb-light); }
.empty-row { text-align: center; padding: 40px !important; color: var(--cb-muted); }
.dash-filters { display: flex; gap: 8px; align-items: center; margin-bottom: 14px; flex-wrap: wrap; }
.filters-form { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filters-form select, .filters-form input[type=text] { padding: 6px 12px; border: 1.5px solid var(--cb-border); border-radius: 8px; font-size: .78rem; outline: none; background: #fff; color: var(--cb-text); }
.filters-form select:focus, .filters-form input:focus { border-color: var(--cb-teal); }
.lead-contact { display: flex; flex-direction: column; gap: 2px; }
.lead-contact strong { color: var(--cb-deep); font-size: .83rem; }
.lead-contact a { font-size: .74rem; color: var(--cb-teal); }
.lead-email  { color: var(--cb-muted) !important; font-size: .7rem !important; }
.lead-date   { font-size: .72rem; color: var(--cb-muted); }
.lead-row:hover { background: var(--cb-light); }
.lead-row--score5 td:first-child { border-left: 3px solid var(--cb-red); }
.lead-row--score4 td:first-child { border-left: 3px solid var(--cb-gold); }
.lead-row--score3 td:first-child { border-left: 3px solid var(--cb-teal); }
.service-tag  { display: inline-block; font-size: .67rem; font-weight: 700; padding: 2px 7px; border-radius: 4px; background: var(--cb-cold); color: var(--cb-teal); border: 1px solid var(--cb-border); }
.source-badge { display: inline-block; font-size: .6rem; font-weight: 700; padding: 2px 7px; border-radius: 4px; background: var(--cb-cold); color: var(--cb-teal); }
.src-sim { background: #e0f5f8; color: #0891b2; border: 1px solid #99d6e0; }
.src-wiz { background: #ede9fe; color: #7c3aed; border: 1px solid #c4b5fd; }
.src-sav { background: #fee2e2; color: #dc2626; border: 1px solid #fca5a5; }
.login-body { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--cb-navy) 0%, var(--cb-deep) 100%); }
.login-container { width: 100%; max-width: 420px; padding: 24px; }
.login-card { background: #fff; border-radius: 20px; padding: 40px; box-shadow: var(--shadow-xl); }
.login-logo { text-align: center; margin-bottom: 28px; }
.alert-danger { background: #fee2e2; color: #991b1b; border-radius: 8px; padding: 10px 14px; font-size: .8rem; margin-bottom: 14px; }
.detail-card { background: #fff; border: 1px solid var(--cb-border); border-radius: 16px; padding: 24px; margin-bottom: 12px; }

/* ── WIZARD ──────────────────────────────────────── */
.sim-wrap { display: grid; grid-template-columns: 380px 1fr; height: calc(100vh - 72px); }
.sim-left { background: linear-gradient(160deg, var(--cb-navy) 0%, var(--cb-deep) 100%); display: flex; flex-direction: column; overflow: hidden; }
.sim-right { background: #fff; display: flex; flex-direction: column; overflow: hidden; }
.wiz-card { border: 2px solid var(--cb-border); border-radius: 12px; padding: 11px 14px; cursor: pointer; transition: all .18s; background: #fff; text-align: left; display: flex; align-items: flex-start; gap: 8px; font-family: 'Trebuchet MS',sans-serif; width: 100%; }
.wiz-card:hover { border-color: var(--cb-teal); background: var(--cb-cold); }
.wiz-card.sel  { border-color: var(--cb-teal); background: var(--cb-cold); box-shadow: 0 0 0 3px rgba(45,171,183,.1); }
.wiz-radio { border: 2px solid var(--cb-border); border-radius: 9px; padding: 7px 14px; cursor: pointer; transition: all .18s; background: #fff; font-family: 'Trebuchet MS',sans-serif; display: inline-flex; align-items: center; gap: 6px; }
.wiz-radio:hover { border-color: var(--cb-teal); background: var(--cb-cold); }
.wiz-radio.sel  { border-color: var(--cb-teal); background: var(--cb-cold); color: var(--cb-teal); font-weight: 700; }
.wiz-input { width: 100%; border: 2px solid var(--cb-border); border-radius: 10px; padding: 10px 14px; font-size: .9rem; font-family: 'Trebuchet MS',sans-serif; outline: none; transition: border-color .14s; background: #fff; color: var(--cb-navy); }
.wiz-input:focus { border-color: var(--cb-teal); box-shadow: 0 0 0 3px rgba(45,171,183,.08); }
.form-control, .wizard-input { width: 100%; padding: 10px 15px; border: 1.5px solid var(--cb-border); border-radius: 8px; font-size: .88rem; font-family: 'Trebuchet MS',sans-serif; color: var(--cb-navy); outline: none; transition: all .15s; background: #fff; }
.form-control:focus, .wizard-input:focus { border-color: var(--cb-teal); box-shadow: 0 0 0 3px rgba(45,171,183,.1); }
.sl-inp { position: absolute; inset: -10px 0; opacity: 0; cursor: pointer; width: 100%; margin: 0; -webkit-appearance: none; appearance: none; }

/* ── PRODUITS CATALOGUE ──────────────────────────── */
.prod-card { background: #fff; border: 1px solid var(--cb-border); border-radius: 14px; overflow: hidden; transition: all .22s; text-decoration: none; display: block; }
.prod-card:hover { border-color: var(--cb-teal); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.prod-card-img { width: 100%; aspect-ratio: 4/3; object-fit: contain; background: var(--cb-light); padding: 10px; }
.prod-card-body { padding: 14px 16px; }
.prod-card-marque { font-size: .6rem; font-weight: 800; color: var(--cb-teal); text-transform: uppercase; letter-spacing: .4px; }
.prod-card-nom { font-size: .88rem; font-weight: 700; color: var(--cb-navy); margin: .2rem 0 .35rem; line-height: 1.3; }
.prod-card-badges { display: flex; gap: 4px; flex-wrap: wrap; }

/* ── BADGES / STATUS ─────────────────────────────── */
.badge { display: inline-block; padding: 3px 9px; border-radius: 999px; font-size: .68rem; font-weight: 700; }
.badge-teal   { background: var(--cb-cold); color: var(--cb-teal); }
.badge-red    { background: #fee2e2; color: #b91c1c; }
.badge-green  { background: #dcfce7; color: #15803d; }
.badge-orange { background: #fef3c7; color: #92400e; }
.status-badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 9px; border-radius: 999px; font-size: .67rem; font-weight: 700; }
.status-submitted { background: #dbeafe; color: #1d4ed8; }
.status-qualified  { background: #dcfce7; color: #15803d; }
.status-contacted  { background: #fef3c7; color: #92400e; }
.status-won        { background: #d1fae5; color: #065f46; }
.status-lost       { background: #fee2e2; color: #991b1b; }

/* ── COMMERCIAL ──────────────────────────────────── */
.payment-timeline { display: flex; flex-direction: column; gap: 8px; }
.payment-step { display: flex; align-items: flex-start; gap: 16px; padding: 16px; background: #fff; border: 1px solid var(--cb-border); border-radius: 14px; transition: all .2s; }
.payment-step.paid { border-color: var(--cb-green); background: #f0fff4; }
.payment-step.pending { border-color: var(--cb-gold); }
.payment-step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--cb-cold); border: 2px solid var(--cb-teal); color: var(--cb-teal); font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .83rem; }
.payment-step.paid .payment-step-num { background: var(--cb-green); border-color: var(--cb-green); color: #fff; }
.payment-label { font-weight: 700; font-size: .88rem; color: var(--cb-navy); }
.payment-sub   { font-size: .74rem; color: var(--cb-muted); margin-top: 2px; }
.payment-amount { font-size: 1.05rem; font-weight: 800; color: var(--cb-deep); margin-left: auto; white-space: nowrap; }
.kanban-board { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 14px; }
.kanban-col { min-width: 234px; max-width: 254px; background: var(--cb-light); border-radius: 14px; padding: 14px; }
.kanban-col-title { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; color: var(--cb-muted); margin-bottom: 12px; }
.kanban-card { background: #fff; border-radius: 10px; padding: 12px; margin-bottom: 8px; border: 1px solid var(--cb-border); cursor: pointer; transition: all .18s; }
.kanban-card:hover { border-color: var(--cb-teal); box-shadow: var(--shadow-sm); }
.kanban-card-title { font-size: .82rem; font-weight: 700; color: var(--cb-navy); margin-bottom: 4px; }
.kanban-card-meta  { font-size: .69rem; color: var(--cb-muted); display: flex; gap: 6px; flex-wrap: wrap; }

/* ── UTILITY ─────────────────────────────────────── */
.text-teal { color: var(--cb-teal); } .text-muted { color: var(--cb-muted); }
.text-dark  { color: var(--cb-navy); } .text-white { color: #fff; }
.bg-light { background: var(--cb-light); } .bg-cold { background: var(--cb-cold); }
.bg-dark  { background: var(--cb-navy); }
.brand-gradient { background: linear-gradient(135deg, var(--cb-deep), var(--cb-teal)) !important; }
.rounded-20px { border-radius: 20px; } .overflow-hidden { overflow: hidden; }
.relative { position: relative; } .padding40 { padding: 28px; } .no-bottom { margin-bottom: 0; }
.sh-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; margin-bottom: 2.5rem; }
.sh-center { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.hidden { display: none !important; }
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--cb-deep); color: #fff; padding: 8px 18px; border-radius: 999px; font-size: .77rem; font-weight: 600; z-index: 9999; opacity: 0; transition: opacity .22s; pointer-events: none; }
.toast.show { opacity: 1; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--cb-border); border-radius: 3px; }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .why-grid  { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .sh-split { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .service-grid, .blog-grid { grid-template-columns: 1fr; }
  .v5-nav-links-legacy-hidden { display: none; }
  .sim-wrap  { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .sim-left  { max-height: 200px; }
  .dash-layout { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .working-area, .process-grid { grid-template-columns: 1fr 1fr; }
  .ph { min-height: 300px; }
  .ph__body { padding-top: 56px; padding-bottom: 56px; }
  .ph__h1 { font-size: 1.75rem; }
  .sim-choice-grid { grid-template-columns: 1fr; }
  .recall-band { flex-direction: column; text-align: center; }
  .recall-band__actions { justify-content: center; }
  .emergency-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 500px) {
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-h1, .hero-title { font-size: 1.9rem; }
  .working-area, .process-grid { grid-template-columns: 1fr; }
}
