/* =====================================================
   ECOSPHEARE — Stylesheet
   Light Theme · Blue Palette · Mobile-first
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Blues */
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;

  /* Base */
  --bg:       #ffffff;
  --bg2:      #f8faff;
  --bg3:      #eff6ff;
  --border:   #e2e8f0;
  --border2:  #dbeafe;

  /* Text */
  --text:     #0f172a;
  --text2:    #334155;
  --muted:    #64748b;
  --light:    #94a3b8;

  /* Accent */
  --accent:   #2563eb;
  --accent-h: #1d4ed8;
  --green:    #16a34a;

  /* UI */
  --radius:   10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow:   0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(37,99,235,.06);
  --shadow-lg: 0 8px 32px rgba(37,99,235,.12), 0 2px 8px rgba(0,0,0,.06);

  --font:   'Inter', system-ui, sans-serif;
  --font-h: 'Sora', system-ui, sans-serif;
  --w:      1200px;
  --nav-h:  68px;
  --promo-h: 44px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 480px) { .container { padding: 0 16px; } }

.text-blue { color: var(--accent); }
.green { color: var(--green); }
.br-desktop { display: none; }
@media (min-width: 768px) { .br-desktop { display: inline; } }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
  white-space: nowrap;
  min-height: 44px;
  text-decoration: none;
}
.btn--sm  { padding: 7px 16px; font-size: 13px; min-height: 36px; }
.btn--lg  { padding: 14px 28px; font-size: 15px; min-height: 50px; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover  { background: var(--accent-h); border-color: var(--accent-h); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,.3); }
.btn--primary:active { transform: none; }

.btn--outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text2);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── Section shared ── */
.section-header { text-align: center; margin-bottom: 56px; }
@media (max-width: 600px) { .section-header { margin-bottom: 36px; } }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 14px;
}
.section-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}


/* ══ PROMO BAR ════════════════════════════════════════ */
.promo-bar {
  background: var(--blue-900);
  color: #fff;
  height: var(--promo-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 300;
}
.promo-bar.hidden { display: none; }
.promo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  position: relative;
}
.promo-bar__icon { color: #93c5fd; font-size: 14px; flex-shrink: 0; }
.promo-bar__inner p {
  font-size: 13px;
  color: rgba(255,255,255,.9);
  text-align: center;
}
.promo-bar__inner strong { color: #fff; font-weight: 700; }
.promo-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #93c5fd;
  margin-left: 10px;
  border-bottom: 1px solid rgba(147,197,253,.4);
  transition: color .2s;
  white-space: nowrap;
}
.promo-bar__link:hover { color: #fff; }
.promo-bar__close {
  position: absolute;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  font-size: 14px;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s;
}
.promo-bar__close:hover { color: #fff; }
@media (max-width: 600px) {
  .promo-bar { height: auto; min-height: var(--promo-h); padding: 8px 0; }
  .promo-bar__inner { flex-wrap: wrap; gap: 6px; padding-right: 40px; }
  .promo-bar__inner p { font-size: 12px; }
}


/* ══ NAV ════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--blue-800);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.2); }

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__logo {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-e { color: var(--accent); }
.logo-s { color: var(--text); }

.nav__links {
  display: flex;
  gap: 4px;
  margin-left: auto;
  align-items: center;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,.12); }

.nav__cta { margin-left: 8px; flex-shrink: 0; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  display: block;
  transition: transform .3s, opacity .3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 24px 20px;
  background: var(--blue-900);
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.nav__mobile.open { display: flex; }
.mobile-link {
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  font-size: 15px;
  font-weight: 500;
  display: block;
  transition: color .2s;
}
.mobile-link:hover { color: #fff; }
.mobile-link:last-of-type { border-bottom: none; }
.nav__mobile .btn { margin-top: 10px; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__burger { display: flex; }
}


/* ══ HERO (old — kept for legacy grid classes only) ══ */
.hero--old {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: clamp(56px, 8vw, 100px) 0 clamp(56px, 8vw, 100px) 24px;
  max-width: var(--w);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding: 56px 24px; gap: 48px; }
  .hero__visual { display: none; }
}
@media (max-width: 480px) { .hero { padding: 40px 16px 48px; } }

.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: .4;
}
.hero__blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--blue-200), transparent 70%);
  top: -150px; right: -100px;
}
.hero__blob--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #ddd6fe, transparent 70%);
  bottom: -100px; left: -50px;
}
.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--blue-200) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .5;
  mask-image: radial-gradient(ellipse 80% 80% at 80% 50%, black, transparent);
}

.hero__content { position: relative; z-index: 1; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--border);
  background: #fff;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.hero__title {
  font-family: var(--font-h);
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.hero__sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.75;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
@media (max-width: 400px) {
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
}

.hero__clients { display: flex; flex-direction: column; gap: 12px; }
.hero__clients-label { font-size: 12px; color: var(--light); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }
.hero__clients-logos { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.client-logo {
  font-size: 13px;
  font-weight: 600;
  color: var(--light);
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg2);
  white-space: nowrap;
}

/* Hero visual */
.hero__visual {
  position: relative;
  z-index: 1;
  height: 420px;
  flex-shrink: 0;
}
.hero__card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__card--main {
  width: 320px;
  padding: 24px;
  top: 20px; right: 0;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.card-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.card-dot.green { background: var(--green); }
.card-stat { margin-bottom: 20px; }
.card-stat__num {
  display: block;
  font-family: var(--font-h);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.card-stat__label { font-size: 13px; color: var(--muted); }
.card-bars { display: flex; align-items: flex-end; gap: 6px; height: 64px; }
.bar {
  flex: 1;
  height: var(--h);
  background: var(--blue-100);
  border-radius: 4px 4px 0 0;
  transition: background .2s;
}
.bar.active { background: var(--accent); }

.hero__card--pill {
  bottom: 120px; left: 0;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
}
.hero__card--mini {
  bottom: 40px; right: 20px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 220px;
}
.mini-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: #dcfce7;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.hero__card--mini strong { display: block; font-size: 13px; color: var(--text); }
.hero__card--mini small  { font-size: 11px; color: var(--muted); }


/* ══ STATS ══════════════════════════════════════════════ */
.stats {
  background: var(--blue-900);
  padding: 32px 0;
}
.stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 32px;
  flex: 1;
  min-width: 140px;
}
.stat-item__num {
  font-family: var(--font-h);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-item__label { font-size: 13px; color: var(--blue-300); text-align: center; }
.stat-item__div { width: 1px; height: 40px; background: rgba(255,255,255,.15); }
@media (max-width: 600px) {
  .stats__inner { gap: 0; }
  .stat-item { min-width: 120px; padding: 10px 16px; }
  .stat-item__div { display: none; }
}


/* ══ SERVICES ════════════════════════════════════════════ */
.services {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--bg2);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services__grid { grid-template-columns: 1fr; gap: 14px; } }

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.service-card:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-card--featured {
  border-color: var(--accent);
  background: var(--blue-50);
  grid-column: span 1;
}
.service-card--featured:hover { border-color: var(--accent-h); }

.service-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.service-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--blue-100);
  border: 1px solid var(--blue-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.service-card--featured .service-card__icon { background: var(--accent); border-color: var(--accent); color: #fff; }
.service-card__badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--blue-100);
  border: 1px solid var(--blue-200);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.badge-soon {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #7c3aed;
  background: #ede9fe;
  border: 1px solid #ddd6fe;
  padding: 2px 8px;
  border-radius: 100px;
  vertical-align: middle;
  margin-left: 6px;
}

.service-card__title {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.service-card__text { font-size: 14px; color: var(--muted); line-height: 1.7; }
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
}
.service-card__list li {
  font-size: 13px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card__list li::before {
  content: '✓';
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  width: 16px;
}
.service-card__link {
  margin-top: auto;
  padding-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
  border-top: 1px solid var(--border);
}
.service-card__link:hover { gap: 8px; }


/* ══ SEO SECTION ═════════════════════════════════════════ */
.seo-section {
  padding: clamp(64px, 8vw, 100px) 0;
  background: #fff;
}
.seo-section__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .seo-section__inner { grid-template-columns: 1fr; } }

.seo-section__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.seo-section__text p { font-size: 15px; color: var(--muted); line-height: 1.8; }

.seo-pillars { display: flex; flex-direction: column; gap: 12px; margin: 4px 0; }
.seo-pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  transition: border-color .2s;
}
.seo-pillar:hover { border-color: var(--blue-300); }
.seo-pillar__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.seo-pillar strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); }
.seo-pillar span   { font-size: 12px; color: var(--muted); }

/* SEO Card visual */
.seo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.seo-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
}
.seo-card__title { font-size: 14px; font-weight: 600; color: var(--text); }
.seo-card__badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  padding: 3px 10px;
  border-radius: 100px;
}
.seo-keywords { padding: 8px 0; }
.kw-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.kw-row:last-child { border-bottom: none; }
.kw-row:hover { background: var(--bg2); }
.kw-pos {
  font-size: 13px;
  font-weight: 800;
  font-family: var(--font-h);
  width: 26px; height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pos-1 { background: #fef9c3; color: #854d0e; }
.pos-2 { background: #f1f5f9; color: var(--muted); }
.pos-3 { background: #fff7ed; color: #c2410c; }
.pos-4, .pos-5 { background: var(--bg2); color: var(--muted); }
.kw-name { font-size: 13px; color: var(--text2); }
.kw-vol  { font-size: 12px; color: var(--light); white-space: nowrap; }
.seo-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: var(--bg2);
  font-size: 13px;
  color: var(--muted);
}
.seo-card__footer .green { font-weight: 700; }


/* ══ À PROPOS ════════════════════════════════════════════ */
.apropos {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--bg2);
}
.apropos__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) {
  .apropos__inner { grid-template-columns: 1fr; }
  .apropos__visual { order: -1; }
}

.apropos__text { display: flex; flex-direction: column; gap: 18px; }
.apropos__text p { font-size: 15px; color: var(--muted); line-height: 1.8; }

.apropos__values { display: flex; flex-direction: column; gap: 14px; margin: 4px 0; }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-check {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.value-item span   { font-size: 13px; color: var(--muted); }

.apropos__visual { position: relative; }
.apropos__img-wrap { position: relative; }
.apropos__img-bg {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  border-radius: var(--radius-xl);
}
.apropos__img-card {
  position: absolute;
  bottom: -28px;
  left: 24px;
  right: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
}
.team-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.team-avatars { display: flex; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
  flex-shrink: 0;
}
.avatar:first-child { margin-left: 0; }
.av-1 { background: var(--blue-600); }
.av-2 { background: var(--blue-800); }
.av-3 { background: #7c3aed; }
.team-header strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); }
.team-header small  { font-size: 12px; color: var(--muted); }
.team-divider { height: 1px; background: var(--border); margin-bottom: 14px; }
.team-stats { display: flex; gap: 24px; }
.ts-num { display: block; font-family: var(--font-h); font-size: 22px; font-weight: 800; color: var(--accent); }
.ts-label { font-size: 12px; color: var(--muted); }
.apropos__badge-float {
  position: absolute;
  top: 20px; right: -12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow);
  white-space: nowrap;
}
@media (max-width: 500px) { .apropos__badge-float { right: 0; top: 10px; } }


/* ══ PROCESSUS ═══════════════════════════════════════════ */
.process {
  padding: clamp(56px, 7vw, 96px) 0;
  background: #fff;
  border-top: 1px solid var(--border);
}
.process__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: start;
}
@media (max-width: 900px) {
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process-step__connector { display: none; }
}
@media (max-width: 480px) { .process__steps { grid-template-columns: 1fr; } }

.process-step {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.process-step:hover { border-color: var(--blue-300); box-shadow: var(--shadow); }
.process-step__num {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.process-step__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.process-step h3 { font-family: var(--font-h); font-size: 15px; font-weight: 700; color: var(--text); }
.process-step p  { font-size: 13px; color: var(--muted); line-height: 1.7; }

.process-step__connector {
  align-self: center;
  margin-top: -20px;
  font-size: 18px;
  color: var(--blue-300);
  padding: 0 4px;
}
.process-step__connector::after { content: '→'; }


/* ══ FAQ ═════════════════════════════════════════════════ */
.faq {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--bg2);
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) { .faq__grid { grid-template-columns: 1fr; } }

.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--accent); }
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  user-select: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--accent); }
@media (max-width: 480px) { .faq-item__q { font-size: 14px; padding: 14px 16px; } }
.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .25s;
  width: 24px;
  text-align: center;
  line-height: 1;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item__a { padding: 0 20px 18px; border-top: 1px solid var(--border); }
.faq-item__a p { font-size: 14px; color: var(--muted); line-height: 1.8; padding-top: 14px; }

.faq-cta-card {
  background: var(--blue-900);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
@media (max-width: 860px) { .faq-cta-card { position: static; } }
.faq-cta-icon { font-size: 36px; }
.faq-cta-card h3 { font-family: var(--font-h); font-size: 18px; font-weight: 700; color: #fff; }
.faq-cta-card p  { font-size: 14px; color: var(--blue-300); line-height: 1.6; }
.faq-cta-mail { font-size: 13px; color: var(--blue-300); border-bottom: 1px solid rgba(147,197,253,.3); transition: color .2s; }
.faq-cta-mail:hover { color: #fff; }


/* ══ BLOG PREVIEW ════════════════════════════════════════ */
.blog-preview {
  padding: clamp(64px, 8vw, 100px) 0;
  background: #fff;
  border-top: 1px solid var(--border);
}
.blog-preview__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 900px)  { .blog-preview__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .blog-preview__grid { grid-template-columns: 1fr; gap: 16px; } }

.blog-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.blog-card:hover { border-color: var(--blue-300); box-shadow: var(--shadow); transform: translateY(-2px); }
.blog-card--featured { background: var(--blue-50); border-color: var(--blue-200); }
.blog-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  background: var(--blue-100);
  border: 1px solid var(--blue-200);
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
}
.blog-card__title { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--text); line-height: 1.4; }
.blog-card--featured .blog-card__title { font-size: 18px; }
.blog-card__excerpt { font-size: 13px; color: var(--muted); line-height: 1.7; flex: 1; }
.blog-card__meta { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--border); font-size: 12px; color: var(--light); flex-wrap: wrap; gap: 8px; }
.blog-card__link { font-size: 13px; font-weight: 600; color: var(--accent); transition: gap .2s; display: inline-flex; align-items: center; gap: 4px; }
.blog-card__link:hover { gap: 8px; }

.blog-preview__more { text-align: center; }


/* ══ CONTACT ══════════════════════════════════════════════ */
.contact {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-start;
}
@media (max-width: 860px) { .contact__inner { grid-template-columns: 1fr; } }

.contact__text { display: flex; flex-direction: column; gap: 18px; }
.contact__text p { font-size: 15px; color: var(--muted); line-height: 1.8; }
.contact__infos { display: flex; flex-direction: column; gap: 10px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}
.contact-info-item svg { color: var(--accent); flex-shrink: 0; }
.contact-info-item a { color: var(--muted); transition: color .2s; }
.contact-info-item a:hover { color: var(--accent); }

.contact__trust { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.trust-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.contact__form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
label { font-size: 13px; font-weight: 600; color: var(--text2); }
label span { color: #dc2626; }
input, select, textarea {
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  min-height: 44px;
  appearance: none;
  -webkit-appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
  background-color: var(--bg2);
}
input::placeholder, textarea::placeholder { color: var(--light); }
select option { background: #fff; color: var(--text); }
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
  background: #fff;
}
textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12px; color: var(--light); text-align: center; }


/* ══ FOOTER ══════════════════════════════════════════════ */
.footer {
  background: var(--blue-900);
  color: #fff;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 48px;
  flex-wrap: wrap;
}
.footer__brand { display: flex; flex-direction: column; gap: 12px; max-width: 260px; }
.footer__brand .nav__logo { font-size: 20px; }
.footer__brand .logo-e { color: #93c5fd; }
.footer__brand .logo-s { color: #fff; }
.footer__brand p { font-size: 13px; color: var(--blue-300); line-height: 1.7; }

.footer__socials { display: flex; gap: 12px; margin-top: 4px; }
.footer__socials a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-300);
  transition: background .2s, color .2s;
}
.footer__socials a:hover { background: rgba(255,255,255,.15); color: #fff; }

.footer__links { display: flex; gap: 56px; flex-wrap: wrap; }
@media (max-width: 600px) { .footer__links { gap: 32px; width: 100%; } }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: var(--blue-300); transition: color .2s; }
.footer-col a:hover { color: #fff; }

@media (max-width: 760px) { .footer__inner { flex-direction: column; gap: 36px; } .footer__brand { max-width: 100%; } }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  color: var(--blue-300);
}
.footer__legal { display:flex; gap:16px; flex-wrap:wrap; }
.footer__legal a { color:var(--blue-300); text-decoration:none; transition:color .2s; }
.footer__legal a:hover { color:#fff; }


/* ══ SCROLL REVEAL ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible { opacity: 1; transform: none; }


/* ══ NAV / FOOTER LOGO IMAGE ══════════════════════════ */
.nav__logo-img { height: 52px; width: auto; object-fit: contain; display: block; }
.footer__logo-img { height: 36px; width: auto; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer__logo-link { display: inline-block; }


/* ══ PROBLÈME SECTION ════════════════════════════════ */
.probleme { padding: clamp(56px,8vw,100px) 0; background: var(--bg); text-align: center; }
.probleme__inner { display: flex; flex-direction: column; align-items: center; }
.probleme__pre { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin-bottom: 8px; }
.probleme__sep { display: flex; align-items: center; gap: 16px; color: var(--muted); font-size: 13px; font-style: italic; margin: 12px 0 24px; width: 100%; max-width: 360px; }
.probleme__sep::before, .probleme__sep::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.probleme__title { font-family: var(--font-h); font-size: clamp(20px,3.5vw,34px); font-weight: 700; color: var(--text); line-height: 1.3; max-width: 680px; margin-bottom: 48px; }
.probleme__cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; width: 100%; max-width: 900px; margin-bottom: 40px; }
@media (max-width:700px) { .probleme__cards { grid-template-columns: 1fr; max-width: 400px; } }
.prob-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 20px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; text-align: left; }
.prob-card:hover { transform: translateY(-4px) rotate(-1deg); box-shadow: var(--shadow-lg); }
.prob-card--center { transform: translateY(-8px); }
.prob-card--center:hover { transform: translateY(-12px) rotate(1deg); }
.prob-card__emoji { font-size: 32px; margin-bottom: 12px; }
.prob-card__label { font-family: var(--font-h); font-size: 22px; font-weight: 800; color: var(--accent); margin-bottom: 4px; }
.prob-card__label--italic { font-style: italic; }
.prob-card__source { font-size: 13px; font-weight: 600; color: var(--text2); margin-bottom: 8px; }
.prob-card__text { font-size: 13px; color: var(--muted); line-height: 1.7; }
.probleme__synthese { font-size: clamp(15px,2vw,19px); color: var(--text); font-weight: 500; margin-bottom: 16px; }
.probleme__synthese em { font-style: italic; color: var(--accent); font-weight: 600; }
.probleme__arrow { font-size: 32px; color: var(--accent); margin: 8px 0 20px; }
.probleme__solution { font-size: clamp(15px,2vw,19px); color: var(--text); max-width: 640px; line-height: 1.7; margin-bottom: 32px; }
.link-blue { color: var(--accent); font-style: italic; font-weight: 600; }


/* ══ SERVICE CARD NUM LABEL ══════════════════════════ */
.service-card__num-label { font-family: var(--font-h); font-size: 13px; font-weight: 700; color: var(--accent); background: var(--blue-50); border: 1px solid var(--blue-200); padding: 2px 10px; border-radius: 100px; }


/* ══ CE QUI CHANGE (TIMELINE) ════════════════════════ */
.changes { padding: clamp(64px,8vw,100px) 0; background: var(--bg2); }
.changes__timeline { max-width: 700px; margin: 0 auto; position: relative; display: flex; flex-direction: column; }
.changes__timeline::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); top: 32px; bottom: 32px; width: 2px; background: var(--blue-200); }
@media (max-width:600px) { .changes__timeline::before { left: 24px; } }
.change-item { display: grid; grid-template-columns: 1fr 64px 1fr; align-items: center; min-height: 100px; position: relative; }
.change-item--right .change-item__content { text-align: right; padding-right: 24px; grid-column: 1; }
.change-item--right .change-item__icon   { grid-column: 2; }
.change-item--right .change-item__line   { grid-column: 3; }
.change-item--left .change-item__line    { grid-column: 1; }
.change-item--left .change-item__icon    { grid-column: 2; }
.change-item--left .change-item__content { text-align: left; padding-left: 24px; grid-column: 3; }
@media (max-width:600px) {
  .change-item { grid-template-columns: 48px 1fr; }
  .change-item--right .change-item__content, .change-item--left .change-item__content { grid-column: 2; text-align: left; padding: 0 0 0 16px; }
  .change-item--right .change-item__icon, .change-item--left .change-item__icon { grid-column: 1; }
  .change-item--right .change-item__line, .change-item--left .change-item__line { display: none; }
}
.change-item__icon { width: 56px; height: 56px; border-radius: 14px; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; z-index: 1; margin: 0 auto; box-shadow: 0 4px 12px rgba(37,99,235,.3); flex-shrink: 0; }
.change-item__content { padding: 20px 0; }
.change-item__content h3 { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.change-item__content p  { font-size: 13px; color: var(--muted); line-height: 1.7; }
.change-item__line { height: 2px; }


/* ══ RANKING ANIMATION ════════════════════════════════ */
.ranking-anim { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); overflow: hidden; }
.ranking-anim__header { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid var(--border); }
.ranking-anim__title { font-size: 14px; font-weight: 600; color: var(--text); }
.ranking-anim__badge { font-size: 12px; font-weight: 700; padding: 3px 12px; border-radius: 100px; transition: all .4s; }
.ranking-anim__badge.before { background: #fee2e2; color: #dc2626; border: 1px solid #fecaca; }
.ranking-anim__badge.after  { background: #dcfce7; color: #16a34a; border: 1px solid #bbf7d0; }
.ranking-list { padding: 8px 0; }
.rank-row { display: grid; grid-template-columns: 36px 1fr 32px; align-items: center; gap: 10px; padding: 10px 24px; border-bottom: 1px solid var(--border); transition: all .6s cubic-bezier(0.34,1.56,0.64,1); }
.rank-row:last-child { border-bottom: none; }
.rank-pos { font-family: var(--font-h); font-size: 14px; font-weight: 800; width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; background: var(--bg2); color: var(--muted); transition: all .5s; }
.rank-row--you .rank-pos { background: var(--blue-100); color: var(--accent); }
.rank-row--you.rank-first .rank-pos { background: var(--accent); color: #fff; }
.rank-name { font-size: 13px; color: var(--text2); }
.rank-row--you .rank-name { font-weight: 700; color: var(--accent); }
.rank-arrow { font-size: 14px; font-weight: 700; text-align: right; }
.rank-stable { color: var(--light); }
.rank-row--you .rank-arrow { color: #dc2626; }
.rank-row--you.rank-first .rank-arrow { color: #16a34a; }
.ranking-anim__footer { background: var(--bg2); padding: 12px 24px; font-size: 13px; color: var(--muted); text-align: center; font-style: italic; }


/* ══ OFFRES ══════════════════════════════════════════ */
.offres { padding: clamp(64px,8vw,100px) 0; background: var(--bg2); }
.offres__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }
@media (max-width:900px) { .offres__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }
.offre-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px 28px; display: flex; flex-direction: column; gap: 16px; position: relative; transition: box-shadow .2s; }
.offre-card:hover { box-shadow: var(--shadow-lg); }
.offre-card--featured { background: var(--blue-900); border-color: var(--blue-700); color: #fff; }
.offre-card__popular { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 4px 18px; border-radius: 100px; white-space: nowrap; }
.offre-card__tier { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.offre-card--featured .offre-card__tier { color: var(--blue-300); }
.offre-card__duration { font-family: var(--font-h); font-size: clamp(32px,5vw,48px); font-weight: 800; color: var(--text); line-height: 1; }
.offre-card--featured .offre-card__duration { color: #fff; }
.offre-card__desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.offre-card--featured .offre-card__desc { color: var(--blue-300); }
.offre-divider { border: none; border-top: 1px solid var(--border); }
.offre-card--featured .offre-divider { border-color: rgba(255,255,255,.12); }
.offre-phase { display: flex; flex-direction: column; gap: 8px; }
.offre-phase__label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 2px; }
.offre-card--featured .offre-phase__label { color: #93c5fd; }
.offre-list { display: flex; flex-direction: column; gap: 6px; }
.offre-list li { font-size: 13px; color: var(--text2); display: flex; align-items: flex-start; gap: 8px; }
.offre-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; font-size: 12px; margin-top: 2px; }
.offre-card--featured .offre-list li { color: rgba(255,255,255,.85); }
.offre-card--featured .offre-list li::before { color: #93c5fd; }
.offre-bonus { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.offre-card--featured .offre-bonus { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }
.offre-bonus__label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #16a34a; }
.offre-list--bonus li::before { color: #16a34a; }
.btn--white { background: #fff; color: var(--blue-900); border-color: #fff; }
.btn--white:hover { background: var(--blue-50); }


/* ══ VERSUS ══════════════════════════════════════════ */
.versus { padding: clamp(64px,8vw,100px) 0; background: #fff; border-top: 1px solid var(--border); }
.versus__table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.versus__table { width: 100%; min-width: 560px; border-collapse: collapse; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.versus__table thead tr { background: var(--bg2); }
.versus__table th { padding: 16px 20px; font-family: var(--font-h); font-size: 14px; font-weight: 700; color: var(--text); text-align: center; }
.versus__table th:first-child { text-align: left; }
.versus__th--eco { background: var(--blue-700); color: #fff; border-bottom: 2px solid var(--blue-500); }
.versus__td--eco { background: var(--blue-50); }
.versus__td--eco.yes { background: rgba(37,99,235,.08); color: var(--accent); }
.versus__table tbody tr { border-top: 1px solid var(--border); transition: background .15s; }
.versus__table tbody tr:hover { background: var(--bg2); }
.versus__table td { padding: 13px 20px; font-size: 14px; color: var(--text2); text-align: center; }
.versus__table td:first-child { text-align: left; font-weight: 500; }
.yes { color: #16a34a; font-weight: 700; font-size: 16px; background: rgba(22,163,74,.04); }
.no  { color: #dc2626; font-size: 13px; }


/* ══ APROPOS PHOTO ════════════════════════════════════ */
.apropos__photo-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.apropos__photo { width: 100%; max-width: 320px; height: 380px; object-fit: cover; object-position: top; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); border: 4px solid #fff; }
.apropos__photo-name { font-family: var(--font-h); font-size: 18px; font-weight: 700; color: var(--text); }
.apropos__photo-title { font-size: 14px; color: var(--muted); }

/* ══ HERO ══════════════════════════════════════════════ */
.hero { position:relative; overflow:hidden; background:linear-gradient(160deg,#1e3a8a 0%,#2563eb 45%,#60a5fa 100%); padding:clamp(110px,14vw,160px) 0 clamp(110px,14vw,150px); text-align:center; }
.hero__grid { position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px); background-size:60px 60px; pointer-events:none; }
.hero__rays { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.hero__rays::before,.hero__rays::after { content:''; position:absolute; top:-20%; left:50%; background:linear-gradient(to bottom,rgba(255,255,255,.0),rgba(255,255,255,.4),rgba(255,255,255,.0)); transform-origin:top center; }
.hero__rays::before { height:130%; transform:translateX(-80%) rotate(-30deg); animation:rayPulse 5s ease-in-out infinite; width:220px; filter:blur(22px); }
.hero__rays::after  { height:120%; transform:translateX(20%) rotate(28deg); animation:rayPulse 5s ease-in-out infinite 1.2s; width:160px; filter:blur(16px); opacity:.65; }
/* orbs lumineux */
.hero__orbs { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.hero__orbs::before { content:''; position:absolute; top:10%; left:15%; width:340px; height:340px; border-radius:50%; background:radial-gradient(circle,rgba(147,197,253,.35) 0%,transparent 70%); animation:orbFloat 7s ease-in-out infinite; }
.hero__orbs::after  { content:''; position:absolute; bottom:5%; right:10%; width:260px; height:260px; border-radius:50%; background:radial-gradient(circle,rgba(99,102,241,.4) 0%,transparent 70%); animation:orbFloat 9s ease-in-out infinite 2s; }
@keyframes rayPulse { 0%,100%{opacity:.25} 50%{opacity:.85} }
@keyframes orbFloat { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-18px) scale(1.06)} }
.hero__fade { position:absolute; bottom:0; left:0; right:0; height:120px; background:linear-gradient(to bottom,transparent,#fff); pointer-events:none; z-index:2; }
.hero__inner { position:relative; z-index:3; }
.hero__h1--small { font-family:var(--font-h); font-size:clamp(13px,1.2vw,15px); font-weight:600; color:rgba(255,255,255,.75); letter-spacing:.1em; text-transform:uppercase; margin-bottom:20px; }
.hero__h1--big { font-family:var(--font-h); font-size:clamp(38px,6.5vw,78px); font-weight:800; color:#fff; line-height:1.06; margin-bottom:36px; }
.hero__h1--big em { font-style:italic; color:#fff; }
.hero__proof { display:flex; align-items:center; justify-content:center; gap:16px; margin-bottom:36px; flex-wrap:wrap; }
.hero__avatars { display:flex; align-items:center; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.25); border-radius:100px; padding:8px 18px; font-size:13px; font-weight:600; color:#fff; backdrop-filter:blur(8px); }
.hero__stars { display:flex; align-items:center; gap:6px; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.25); border-radius:100px; padding:6px 14px; font-size:13px; font-weight:600; color:#fff; backdrop-filter:blur(8px); }
.hero__btn { box-shadow:0 4px 24px rgba(0,0,0,.25); }
.hero__scroll { position:absolute; bottom:28px; left:50%; transform:translateX(-50%); color:rgba(255,255,255,.4); font-size:22px; animation:scrollBounce 2s ease-in-out infinite; z-index:3; }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(9px)} }

/* ══ ARTICLE PAGE ══════════════════════════════════════ */
.art-hero { background:var(--blue-900); padding:clamp(80px,9vw,110px) 0 clamp(40px,5vw,60px); }
.art-hero--sky { background:linear-gradient(135deg,#0369a1,#38bdf8); }
.art-hero--geo { background:linear-gradient(135deg,#0284c7,#7dd3fc); }
.art-back { display:inline-flex; align-items:center; gap:6px; font-size:13px; color:rgba(255,255,255,.6); text-decoration:none; margin-bottom:24px; transition:color .2s; }
.art-back:hover { color:#fff; }
.art-meta { font-size:13px; color:var(--blue-300); display:flex; gap:12px; flex-wrap:wrap; margin-bottom:14px; }
.art-h1 { font-family:var(--font-h); font-size:clamp(26px,4.5vw,48px); font-weight:800; color:#fff; line-height:1.15; max-width:800px; }
.art-body { max-width:760px; margin:0 auto; padding:clamp(40px,5vw,72px) 24px; }
.art-body h2 { font-family:var(--font-h); font-size:22px; font-weight:700; color:var(--text); margin:36px 0 12px; }
.art-body h3 { font-family:var(--font-h); font-size:18px; font-weight:600; color:var(--text); margin:24px 0 8px; }
.art-body p { font-size:16px; color:var(--text2); line-height:1.8; margin-bottom:16px; }
.art-body ul { margin:0 0 18px 22px; }
.art-body ul li { font-size:15px; color:var(--text2); line-height:1.75; margin-bottom:8px; }
.art-body strong { color:var(--text); font-weight:600; }
.art-cta { background:var(--blue-50); border:1px solid var(--blue-200); border-radius:var(--radius-xl); padding:32px; text-align:center; margin:44px 0; }
.art-cta h3 { font-family:var(--font-h); font-size:21px; color:var(--text); margin-bottom:10px; }
.art-cta p { font-size:15px; color:var(--muted); margin-bottom:22px; }
