/* ============================================================
   LocolPro — Site vitrine v2
   Inspiré de la maquette utilisateur + polish + animations pro
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root {
  --navy:        #163565;
  --navy-dark:   #0e2244;
  --navy-deep:   #0a1a37;
  --navy-light:  #1e4a8a;
  --navy-pale:   #eef2f9;
  --navy-mist:   #dfe6f5;

  --green:       #3aaa5c;
  --green-dark:  #2d8a49;
  --green-light: #e8f7ee;
  --green-pale:  #f0faf4;
  --green-soft:  #c8edd3;

  --gray-50:     #f8f9fc;
  --gray-100:    #f1f3f8;
  --gray-200:    #e2e8f0;
  --gray-300:    #cbd4e1;
  --gray-400:    #94a3b8;
  --gray-500:    #6b7693;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-800:    #1e293b;
  --gray-900:    #0f172a;

  --white:       #ffffff;
  --text:        #1e293b;
  --text-muted:  #64748b;

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(15, 31, 74, 0.08);
  --shadow:    0 10px 30px -10px rgba(15, 31, 74, 0.15), 0 2px 6px rgba(15, 31, 74, 0.05);
  --shadow-lg: 0 25px 60px -15px rgba(15, 31, 74, 0.28), 0 8px 20px -8px rgba(15, 31, 74, 0.1);
  --shadow-xl: 0 40px 80px -20px rgba(15, 31, 74, 0.35);
  --shadow-green: 0 10px 30px -8px rgba(58, 170, 92, 0.45);

  --container: 1200px;
  --gutter: 24px;

  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --mono: ui-monospace, 'SF Mono', 'Cascadia Code', Menlo, monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--green); color: var(--white); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ============================================================
   LAYOUT
   ============================================================ */

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

/* ============================================================
   NAV
   ============================================================ */

.nav {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 240ms;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(15, 31, 74, 0.06); }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-mark {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 4px 14px rgba(22, 53, 101, 0.35);
}
.logo-mark::after {
  content: '';
  position: absolute;
  top: -6px; right: -4px;
  width: 14px; height: 8px;
  background: var(--green);
  clip-path: polygon(50% 0, 100% 60%, 50% 100%, 0 60%);
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo-wordmark .locol {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-wordmark .pro {
  font-size: 10px; font-weight: 700; color: var(--green);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14.5px;
  color: var(--gray-600);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 180ms;
  position: relative;
}
.nav-links a:hover { color: var(--navy); background: var(--gray-50); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 2.5px;
  background: var(--green);
  border-radius: 2px;
}

.nav-right { display: flex; align-items: center; gap: 10px; }

.lang-toggle {
  display: none !important;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 3px;
  font-size: 12px;
  font-weight: 700;
}
.lang-toggle button {
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--gray-500);
  transition: all 160ms;
}
.lang-toggle button.active { background: var(--navy); color: white; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; font-size: 14px; font-weight: 600; border-radius: 10px; transition: all 180ms; white-space: nowrap; border: 1px solid transparent; cursor: pointer; }
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--green); color: white; box-shadow: var(--shadow-green); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 14px 30px -10px rgba(58, 170, 92, 0.55); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: white; }
.btn-light { background: rgba(255, 255, 255, 0.1); color: white; border-color: rgba(255, 255, 255, 0.25); backdrop-filter: blur(8px); }
.btn-light:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.4); }
.btn-lg { padding: 14px 24px; font-size: 15px; }
.btn-xl { padding: 16px 30px; font-size: 16px; }

.nav-burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  align-items: center;
  justify-content: center;
}
.nav-burger svg { width: 22px; height: 22px; }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0;
  z-index: 99;
  background: var(--white);
  padding: 28px var(--gutter) 40px;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out);
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  padding: 16px 8px;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a.active { color: var(--green-dark); }
.mobile-menu .mm-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu .mm-cta .btn { width: 100%; justify-content: center; }
.mobile-menu .mm-lang { display: flex; gap: 8px; margin-top: 20px; justify-content: center; }
@media (max-width: 980px) {
  .mobile-menu { display: flex; }
}

/* ============================================================
   HERO — bold navy with bg image + animated text
   ============================================================ */

.hero {
  position: relative;
  background: var(--navy-deep);
  color: white;
  overflow: hidden;
  padding: 90px 0 0;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(10, 26, 55, 0.7) 0%, rgba(10, 26, 55, 0.92) 60%, var(--navy-deep) 100%),
    url('https://images.pexels.com/photos/31820972/pexels-photo-31820972.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
  background-size: cover;
  background-position: center calc(30% + var(--parallax, 0px));
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(58, 170, 92, 0.22) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(30, 74, 138, 0.4) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

/* Subtle floating particles overlay */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(58, 170, 92, 0.18);
  border: 1px solid rgba(58, 170, 92, 0.45);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12.5px;
  color: #84e0a3;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  animation: fadeUp 700ms var(--ease-out) both;
}
.hero-badge .pulse {
  width: 7px; height: 7px;
  background: #5fd87a;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(95, 216, 122, 0.7);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(95, 216, 122, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(95, 216, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(95, 216, 122, 0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
  margin-bottom: 22px;
  animation: fadeUp 800ms var(--ease-out) 80ms both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #5fd87a, #3aaa5c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.hero-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 36px;
  text-wrap: pretty;
  animation: fadeUp 800ms var(--ease-out) 160ms both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: wrap;
  animation: fadeUp 800ms var(--ease-out) 240ms both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  animation: fadeUp 800ms var(--ease-out) 320ms both;
}
.trust-avatars { display: flex; }
.trust-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 3px solid var(--navy-deep);
  margin-left: -10px;
  background-size: cover;
  background-position: center;
  transition: transform 200ms;
}
.trust-av:first-child { margin-left: 0; }
.trust-avatars:hover .trust-av { transform: translateX(2px); }
.trust-text { font-size: 13px; color: rgba(255, 255, 255, 0.7); }
.trust-text strong { color: white; font-weight: 700; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* APP PREVIEW MOCKUP */
.hero-preview {
  background: white;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  box-shadow: 0 -20px 60px -10px rgba(0, 0, 0, 0.4), 0 -2px 0 0 rgba(255, 255, 255, 0.08);
  transform: translateY(0);
  animation: floatPreview 6s ease-in-out infinite, fadeUpPreview 1000ms var(--ease-out) 400ms both;
  position: relative;
}
@keyframes fadeUpPreview {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatPreview {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.preview-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.preview-dots { display: flex; gap: 6px; }
.pd { width: 10px; height: 10px; border-radius: 50%; }
.preview-url {
  flex: 1;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  color: var(--gray-400);
  margin: 0 16px;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
}
.preview-body { display: grid; grid-template-columns: 200px 1fr; min-height: 320px; }
.preview-sidebar {
  background: var(--navy);
  padding: 18px 12px;
  background-image: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.p-logo { display: flex; align-items: center; gap: 8px; padding: 6px 10px; margin-bottom: 18px; }
.p-logo .ico {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  display: flex; align-items: center; justify-content: center;
}
.p-logo span { font-size: 13px; font-weight: 700; color: white; letter-spacing: -0.02em; }
.p-logo em { color: var(--green); font-style: normal; }
.p-item {
  padding: 9px 10px;
  border-radius: 7px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 3px;
  font-weight: 500;
}
.p-item .ico {
  width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.p-item.act {
  background: rgba(58, 170, 92, 0.2);
  color: white;
  font-weight: 600;
  position: relative;
}
.p-item.act::before {
  content: '';
  position: absolute;
  left: -12px; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 20px;
  background: var(--green);
  border-radius: 0 2px 2px 0;
}

.preview-main { background: var(--gray-50); padding: 18px; }
.pm-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.pm-title { font-size: 14px; font-weight: 700; color: var(--navy); }
.pm-date { font-size: 11px; color: var(--gray-400); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.stat-c {
  background: white;
  border-radius: 9px;
  padding: 10px 12px;
  border: 1px solid var(--gray-200);
  transition: transform 200ms;
}
.stat-c:hover { transform: translateY(-2px); }
.stat-n { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.stat-n.green { color: var(--green-dark); }
.stat-n.amber { color: #d97706; }
.stat-l { font-size: 9px; color: var(--gray-400); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.stat-trend { font-size: 9px; color: var(--green-dark); margin-top: 3px; font-weight: 700; }

.pm-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 10px; }
.pm-card {
  background: white;
  border-radius: 9px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.pm-card-head {
  padding: 9px 14px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pm-row {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  padding: 7px 14px;
  border-top: 1px solid var(--gray-100);
  font-size: 11px;
  color: var(--gray-600);
  align-items: center;
}
.pm-row:first-of-type { border-top: none; }
.pm-row .name { font-weight: 600; color: var(--navy); }
.badge { padding: 2px 7px; border-radius: 999px; font-size: 9px; font-weight: 700; }
.badge.g { background: #dcfce7; color: #15803d; }
.badge.a { background: #fef9c3; color: #a16207; }
.badge.r { background: #fee2e2; color: #dc2626; }

.mini-chart { padding: 12px 14px; }
.chart-bar-wrap { display: flex; align-items: flex-end; gap: 5px; height: 76px; }
.cb { flex: 1; border-radius: 3px 3px 0 0; min-width: 10px; transition: opacity 200ms; }
.cb.green-bar { background: linear-gradient(180deg, #5fd87a, #3aaa5c); }
.cb.navy-bar { background: linear-gradient(180deg, #2a5599, var(--navy)); }
.chart-labels { display: flex; gap: 5px; margin-top: 6px; }
.cl { flex: 1; font-size: 9px; color: var(--gray-400); text-align: center; font-weight: 600; }

/* Floating sub-card */
.preview-pop {
  position: absolute;
  top: 80px;
  right: -28px;
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 20px 50px -10px rgba(15, 31, 74, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.5);
  display: flex;
  gap: 10px;
  align-items: center;
  animation: popFloat 5s ease-in-out infinite, fadeIn 1000ms var(--ease-out) 700ms both;
  z-index: 2;
  min-width: 220px;
}
.preview-pop .ic {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--green-light); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
}
.preview-pop .ic svg { width: 16px; height: 16px; }
.preview-pop .title { font-size: 12px; font-weight: 700; color: var(--navy); }
.preview-pop .sub { font-size: 10.5px; color: var(--gray-500); margin-top: 2px; }
@keyframes popFloat { 0%,100% { transform: translateY(0) rotate(2deg); } 50% { transform: translateY(-6px) rotate(2deg); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   TRUST MARQUEE
   ============================================================ */

.trust-band {
  background: white;
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
  overflow: hidden;
}
.trust-band-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 36px;
}
.trust-label-band {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, black 60px, black calc(100% - 60px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 60px, black calc(100% - 60px), transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: fit-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.school-pill {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.school-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ============================================================
   STATS STRIP — count-up animated
   ============================================================ */

.stats-strip {
  background: var(--navy);
  position: relative;
  padding: 64px 0;
  color: white;
  overflow: hidden;
  background-image: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(58, 170, 92, 0.15) 0%, transparent 35%), radial-gradient(circle at 80% 70%, rgba(30, 74, 138, 0.5) 0%, transparent 40%);
}
.stats-grid {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.stats-grid > div {
  position: relative;
}
.stats-grid > div + div::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.sg-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1;
}
.sg-num span { color: var(--green); }
.sg-lbl {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
  font-weight: 500;
}

/* ============================================================
   SECTION DEFAULTS
   ============================================================ */

.section { padding: 96px 0; background: white; }
.section.alt { background: var(--gray-50); }
.section.dark { background: var(--navy-deep); color: white; }

.section-eyebrow {
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: var(--green-light);
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.section-eyebrow.navy { color: var(--navy); background: var(--navy-pale); }
.section-eyebrow.navy .dot { background: var(--navy); }

.section-h {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  text-wrap: balance;
}
.section.dark .section-h { color: white; }
.section-h em { color: var(--green-dark); font-style: normal; }

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.65;
  text-wrap: pretty;
}
.section.dark .section-sub { color: rgba(255, 255, 255, 0.7); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head .section-sub { margin: 0 auto; }

/* ============================================================
   FEATURES (Bento grid)
   ============================================================ */

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feat-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 32px;
  transition: all 280ms var(--ease-out);
  position: relative;
  overflow: hidden;
}
.feat-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feat-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(58, 170, 92, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 280ms;
}
.feat-card:hover::after { opacity: 1; }

.feat-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--navy-pale);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: transform 240ms var(--ease-spring);
}
.feat-card:hover .feat-icon-wrap { transform: scale(1.08) rotate(-4deg); }
.feat-icon-wrap.green { background: var(--green-light); color: var(--green-dark); }
.feat-icon-wrap svg { width: 26px; height: 26px; }

.feat-h {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feat-p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feat-list li {
  font-size: 13px;
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.feat-list li::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green-light);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%232d8a49' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.2l3 3 6-6.4'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

/* Bento large variants */
.feat-card.bento-lg {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.feat-card.bento-lg .feat-illust {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 220px;
  background-size: cover;
  background-position: center;
}
.feat-card.bento-lg .feat-illust::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 53, 101, 0.25) 0%, rgba(58, 170, 92, 0.2) 100%);
}
.feat-card.bento-dark {
  background: var(--navy);
  color: white;
  border-color: transparent;
}
.feat-card.bento-dark .feat-h { color: white; }
.feat-card.bento-dark .feat-p { color: rgba(255, 255, 255, 0.7); }
.feat-card.bento-dark .feat-icon-wrap { background: rgba(255, 255, 255, 0.08); color: #84e0a3; }
.feat-card.bento-dark .feat-list li { color: rgba(255, 255, 255, 0.75); }
.feat-card.bento-dark:hover { border-color: var(--green); }

/* ============================================================
   PHOTO SECTION — split with real image
   ============================================================ */

.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.photo-split-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-xl);
}
.photo-split-img img { width: 100%; height: 100%; object-fit: cover; }
.photo-split-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 26, 55, 0.4) 100%);
}
.photo-split-img .badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.photo-split-img .badge-overlay .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.photo-split-img .badge-overlay .label { font-size: 12px; color: var(--gray-500); font-weight: 600; }
.photo-split-img .badge-overlay .value { font-size: 18px; font-weight: 800; color: var(--navy); }

.advantage-list { display: flex; flex-direction: column; gap: 26px; margin-top: 36px; }
.advantage-item { display: flex; gap: 16px; }
.advantage-item .ic {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--navy-pale);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.advantage-item .ic.green { background: var(--green-light); color: var(--green-dark); }
.advantage-item .ic svg { width: 22px; height: 22px; }
.advantage-item h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.advantage-item p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   ROLES
   ============================================================ */

.roles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.role-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  transition: all 260ms var(--ease-out);
}
.role-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.role-av {
  width: 64px; height: 64px;
  border-radius: 18px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-pale);
  color: var(--navy);
  transition: transform 260ms var(--ease-spring);
}
.role-card:hover .role-av { transform: scale(1.08) rotate(-4deg); }
.role-av.green { background: var(--green-light); color: var(--green-dark); }
.role-av svg { width: 30px; height: 30px; }
.role-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.role-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; min-height: 36px; }
.role-perms { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; }
.perm-tag {
  background: var(--navy-pale);
  color: var(--navy);
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 600;
}

/* ============================================================
   TESTIMONIALS — with real photos
   ============================================================ */

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 32px;
  transition: all 280ms var(--ease-out);
  position: relative;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-card .quote-mark {
  position: absolute;
  top: 24px; right: 28px;
  font-family: Georgia, serif;
  font-size: 60px;
  color: var(--green-light);
  line-height: 1;
  font-weight: 700;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; color: #f59e0b; }
.testi-stars svg { width: 16px; height: 16px; fill: currentColor; }
.testi-text {
  font-size: 14.5px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid white;
  box-shadow: 0 0 0 1px var(--gray-200);
}
.testi-badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #3aaa5c, #5fd87a);
  color: white; font-weight: 700; font-size: 14px;
  border: 2px solid white; box-shadow: 0 0 0 1px var(--gray-200);
  flex-shrink: 0;
}

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--text-muted); margin-top: 1px; }

/* Responsive adjustments for testimonials */
@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 22px; }
}

/* Subtle animations for professional feel */
.testi-card { transition: transform 360ms var(--ease-out), box-shadow 360ms var(--ease-out); }
.testi-badge { transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out); }
.testi-card:hover .testi-badge { transform: translateY(-4px) scale(1.04); box-shadow: var(--shadow); }

/* ============================================================
   FAQ
   ============================================================ */

.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 200ms;
}
.faq-item[open] {
  border-color: var(--navy-mist);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-weight: 600;
  color: var(--navy);
  font-size: 15.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy-pale);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23163565' stroke-width='2.4' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 280ms var(--ease-spring);
}
.faq-item[open] summary::after {
  background-color: var(--green-light);
  transform: rotate(180deg);
}
.faq-body {
  padding: 0 26px 24px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  animation: faqOpen 320ms var(--ease-out);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CTA SECTION (with bg image)
   ============================================================ */

.cta {
  position: relative;
  padding: 110px 0;
  text-align: center;
  color: white;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-deep);
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(135deg, rgba(10, 26, 55, 0.92) 0%, rgba(22, 53, 101, 0.88) 50%, rgba(30, 74, 138, 0.85) 100%),
    url('https://images.pexels.com/photos/28593055/pexels-photo-28593055.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
  background-size: cover;
  background-position: center;
}
.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(58, 170, 92, 0.22) 0%, transparent 45%);
}
.cta-deco {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(95, 216, 122, 0.18);
  pointer-events: none;
  animation: rotate 60s linear infinite;
}
.cta-deco.d1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.cta-deco.d2 { width: 300px; height: 300px; bottom: -100px; left: 5%; border-color: rgba(255, 255, 255, 0.08); animation-duration: 80s; animation-direction: reverse; }
@keyframes rotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.cta-inner { position: relative; max-width: 720px; margin: 0 auto; padding: 0 var(--gutter); }
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(58, 170, 92, 0.18);
  border: 1px solid rgba(58, 170, 92, 0.4);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12.5px;
  color: #84e0a3;
  font-weight: 600;
  margin-bottom: 26px;
}
.cta-h {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  color: white;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-wrap: balance;
}
.cta-p { font-size: 17px; color: rgba(255, 255, 255, 0.78); line-height: 1.65; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { font-size: 12.5px; color: rgba(255, 255, 255, 0.45); margin-top: 22px; }

/* ============================================================
   CONTACT STRIP
   ============================================================ */

.contact-strip {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 52px 0;
}
.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 18px 20px;
  transition: all 240ms;
}
.contact-item:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.contact-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--navy-pale);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon.green { background: var(--green-light); color: var(--green-dark); }
.contact-icon svg { width: 22px; height: 22px; }
.contact-label { font-size: 11.5px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-val { font-size: 13.5px; color: var(--text-muted); margin-top: 2px; font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 70px 0 28px;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .logo-mark { background: rgba(255, 255, 255, 0.1); box-shadow: none; }
.footer-brand .locol { color: white; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; max-width: 300px; margin-top: 18px; color: rgba(255, 255, 255, 0.5); }
.footer-brand .social { display: flex; gap: 10px; margin-top: 22px; }
.footer-brand .social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 200ms;
}
.footer-brand .social a:hover { background: var(--green); color: white; transform: translateY(-2px); }
.footer-brand .social svg { width: 17px; height: 17px; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13.5px; color: rgba(255, 255, 255, 0.55); transition: color 160ms; }
.footer-col a:hover { color: white; }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px var(--gutter) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom span { font-size: 12.5px; color: rgba(255, 255, 255, 0.35); }
.footer-bottom .legal { display: flex; gap: 22px; }
.footer-bottom .legal a { font-size: 12.5px; color: rgba(255, 255, 255, 0.5); transition: color 160ms; }
.footer-bottom .legal a:hover { color: white; }

/* ============================================================
   ANIMATIONS ENHANCED — hover, zoom, shimmer, press
   ============================================================ */

/* Image zoom — photo split */
.photo-split-img img {
  transition: transform 700ms var(--ease-out);
}
.photo-split-img:hover img {
  transform: scale(1.05);
}

/* Image zoom — bento large card background */
.feat-card.bento-lg .feat-illust {
  transition: transform 700ms var(--ease-out), background-size 700ms var(--ease-out);
}
.feat-card:hover .feat-illust {
  transform: scale(1.06);
}

/* Button shimmer on hover — btn-primary */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transition: left 550ms var(--ease-out);
  pointer-events: none;
}
.btn-primary:hover::before {
  left: 140%;
}

/* Button press feedback */
.btn:active {
  transform: scale(0.96) !important;
  transition-duration: 60ms !important;
}

/* Advantage icon bounce on hover */
.advantage-item .ic {
  transition: transform 280ms var(--ease-spring), box-shadow 280ms;
}
.advantage-item:hover .ic {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 8px 20px rgba(22, 53, 101, 0.18);
}

/* Stats number scale on hover */
.sg-num {
  display: block;
  transition: transform 260ms var(--ease-spring);
}
.stats-grid > div:hover .sg-num {
  transform: scale(1.07);
}

/* Testi badge pop on card hover */
.testi-card:hover .testi-badge {
  transform: scale(1.1) rotate(-3deg);
}

/* Feat-card link — underline arrow on hover */
a.feat-card .feat-p { transition: color 200ms; }
a.feat-card:hover .feat-p { color: var(--navy); }

/* Smooth entrance for hero badge */
@keyframes badgePop {
  0% { opacity: 0; transform: scale(0.85) translateY(8px); }
  60% { transform: scale(1.04) translateY(0); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.hero-badge { animation: badgePop 600ms var(--ease-spring) both; }

/* ============================================================
   REVEAL ANIMATIONS (scroll-triggered)
   ============================================================ */

.reveal-on-view {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal-on-view.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-on-view.delay-1 { transition-delay: 80ms; }
.reveal-on-view.delay-2 { transition-delay: 160ms; }
.reveal-on-view.delay-3 { transition-delay: 240ms; }
.reveal-on-view.delay-4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal-on-view { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 30px; }
  .hero { padding-top: 60px; }
  .hero-preview { max-width: 720px; margin: 0 auto; }
  .preview-pop { right: 16px; }
  .section { padding: 80px 0; }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-right .btn-primary { display: none; }
  .nav-right .btn-ghost { display: inline-flex; padding: 8px 14px; font-size: 13px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .feat-card.bento-lg { grid-column: span 2; }
  .roles-grid { grid-template-columns: repeat(3, 1fr); }
  .roles-grid > :nth-child(4), .roles-grid > :nth-child(5) { grid-column: auto; }
  .testi-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; max-width: 460px; }
  .contact-inner { grid-template-columns: 1fr 1fr; }
  .photo-split { grid-template-columns: 1fr; gap: 40px; }
  .photo-split-img { max-width: 520px; margin: 0 auto; }
  .section { padding: 70px 0; }
  .section-head { margin-bottom: 48px; }
}

@media (max-width: 720px) {
  :root { --gutter: 16px; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .section-sub { font-size: 15.5px; }
  .nav-inner { height: 64px; }
  .nav-logo-img { height: 44px; }
  .nav-right .lang-toggle { display: none; }
  .page-hero .page-lead { font-size: 16px; }
  .hero { padding-top: 44px; }
  .hero h1 { font-size: 32px; }
  .hero-lead { font-size: 15px; margin-bottom: 26px; }
  .hero-btns { gap: 10px; }
  .hero-trust { gap: 12px; }
  .preview-body { grid-template-columns: 1fr; }
  .preview-sidebar { display: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .pm-grid { grid-template-columns: 1fr; }
  .preview-pop { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .stats-grid > div + div::before { display: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-card { padding: 24px; }
  .feat-card.bento-lg { grid-column: auto; grid-template-columns: 1fr; gap: 18px; padding: 24px; }
  .feat-card.bento-lg .feat-illust { min-height: 180px; }
  .testi-card { padding: 24px; }
  .roles-grid { grid-template-columns: 1fr 1fr; }
  .role-card { padding: 22px 16px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .cta-h { font-size: 30px; }
  .cta { padding: 70px 0; }
  .stats-strip { padding: 48px 0; }
  .trust-band-inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .trust-label-band { text-align: center; }
  .photo-split-img { aspect-ratio: 16/10; }
  .advantage-item { gap: 14px; }
}

@media (max-width: 480px) {
  :root { --gutter: 14px; }
  .section { padding: 48px 0; }
  .section-head { margin-bottom: 28px; }
  .hero { padding-top: 36px; }
  .hero h1 { font-size: 28px; line-height: 1.1; letter-spacing: -0.02em; }
  .hero-lead { font-size: 14.5px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
  .section-h { font-size: 26px; }
  .section-sub { font-size: 15px; }
  .page-hero .page-lead { font-size: 15px; }
  .cta-p { font-size: 15px; }
  .faq-item summary { font-size: 14.5px; padding: 16px 20px; }
  .cta-btns .btn { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .roles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .feat-card { padding: 20px; }
  .feat-card.bento-lg { padding: 20px; }
  .testi-card { padding: 20px; }
  .role-card { padding: 20px 16px; }
  .cta { padding: 56px 0; }
  .cta-h { font-size: 26px; }
  .stats-strip { padding: 40px 0; }
  .sg-num { font-size: clamp(28px, 9vw, 40px); }
  .advantage-item { gap: 12px; }
  .advantage-item h4 { font-size: 15px; }
  .advantage-item .ic { width: 40px; height: 40px; flex-shrink: 0; }
  .photo-split-img .badge-overlay { padding: 14px 16px; }
  .photo-split-img .badge-overlay .value { font-size: 16px; }
}

/* Petits téléphones (ex: budget phones Afrique) */
@media (max-width: 375px) {
  :root { --gutter: 12px; }
  .hero h1 { font-size: 25px; }
  .section-h { font-size: 22px; }
  .section { padding: 40px 0; }
  .cta { padding: 48px 0; }
  .stats-strip { padding: 36px 0; }
  .feat-card, .testi-card, .role-card { padding: 16px; }
  .btn-xl { padding: 13px 18px; font-size: 14.5px; }
  .btn-lg { padding: 11px 16px; font-size: 13.5px; }
  .hero-badge { font-size: 11px; padding: 6px 12px; }
  .section-eyebrow { font-size: 11px; padding: 4px 12px; }
  .nav-logo-img { height: 38px; }
}

/* ---- Global overflow guard ---- */
html, body { overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* ---- Mock UI responsive ---- */
@media (max-width: 720px) {
  .mock { font-size: 12.5px; }
  .mock-body { padding: 14px; }
  .mock-head { padding: 10px 14px; }
  .pm-row { font-size: 11.5px; padding: 6px 0; }
  .stat-c { padding: 8px 4px; }
  .stat-n { font-size: 15px; }
  .stat-l { font-size: 9px; }
  .stat-trend { font-size: 9px; }
}
@media (max-width: 480px) {
  .hero-preview { overflow: hidden; border-radius: 16px; }
  .preview-body { border-radius: 0; }
  .pm-header { padding: 10px 12px 8px; }
  .pm-title { font-size: 13px; }
  .pm-date { font-size: 10px; }
  .pm-grid { padding: 10px; gap: 10px; }
  .pm-card { padding: 10px; border-radius: 10px; }
  .pm-card-head { font-size: 10px; margin-bottom: 8px; }
  .stats-row { gap: 6px; padding: 8px 10px; }
  .stat-n { font-size: 13px; }
  .role-detail { padding: 22px 18px; }
  .role-detail h3 { font-size: 17px; }
  .contact-form-wrap { padding: 22px 18px; }
  .channel { padding: 12px 14px; }
  .channel .ci { width: 38px; height: 38px; }
}
@media (max-width: 375px) {
  .mock { font-size: 11px; }
  .preview-pop { display: none; }
  .stats-row { display: none; }
}
