/* =========================================================
   SHOSENS — Design System v2
   ========================================================= */

:root {
  --navy:       #0B1D3A;
  --navy-mid:   #122348;
  --navy-light: #1A3260;
  --accent:     #2563EB;
  --accent-2:   #3B82F6;
  --gold:       #F59E0B;
  --white:      #FFFFFF;
  --off-white:  #F8FAFC;
  --grey-50:    #F1F5F9;
  --grey-100:   #E2E8F0;
  --grey-200:   #CBD5E1;
  --grey-400:   #94A3B8;
  --grey-600:   #475569;
  --grey-800:   #1E293B;

  --radius:     8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --shadow-sm:  0 1px 3px rgba(11,29,58,.06);
  --shadow:     0 4px 24px rgba(11,29,58,.08);
  --shadow-lg:  0 12px 48px rgba(11,29,58,.12);
  --shadow-xl:  0 24px 72px rgba(11,29,58,.16);

  --maxw:     1180px;
  --font:     "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --header-h: 64px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font); color: var(--navy); line-height: 1.18; letter-spacing: -.02em; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); margin-bottom: .75rem; }
h3 { font-size: 1.125rem; margin-bottom: .5rem; font-weight: 600; }
p  { margin-bottom: 1rem; color: var(--grey-600); }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section:not(.hero) { padding: 96px 0; }
.section-title { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-title p { font-size: 1.0625rem; color: var(--grey-600); margin-top: 12px; }

/* ── EYEBROW ─────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.18);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: .9375rem; font-weight: 600;
  text-decoration: none; transition: all .2s;
  white-space: nowrap; cursor: pointer; border: none;
}
.btn-primary {
  background: var(--accent); color: var(--white);
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
}
.btn-primary:hover { background: #1D4ED8; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,.4); }
.btn-secondary {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }
.btn-solid {
  background: var(--navy); color: var(--white);
  box-shadow: 0 4px 16px rgba(11,29,58,.2);
}
.btn-solid:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-ghost:hover { background: rgba(37,99,235,.06); }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 36px; }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow .3s;
}
/* Backdrop on pseudo-element avoids Safari bug where backdrop-filter on a
   parent turns it into a containing block for position:fixed children */
.site-header::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: rgba(11,29,58,.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.3); }
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.25rem; font-weight: 800; color: var(--white);
  text-decoration: none; letter-spacing: -.02em; flex-shrink: 0;
}
.logo-mark {
  width: 34px; height: 34px; background: var(--accent);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; font-weight: 900; color: #fff;
  flex-shrink: 0;
}
.logo-img { height: 34px; width: auto; display: block; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.75);
  text-decoration: none; padding: 7px 14px; border-radius: var(--radius);
  transition: all .15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-cta {
  background: var(--accent) !important; color: #fff !important;
  padding: 8px 20px !important; border-radius: var(--radius) !important;
  font-weight: 600 !important; box-shadow: 0 2px 12px rgba(37,99,235,.4);
}
.nav-cta:hover { background: #1D4ED8 !important; }

/* Hamburger button */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  cursor: pointer; padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .2s;
  transform-origin: center;
}
/* Hamburger → X animation */
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #081628 0%, #0B1D3A 40%, #122348 70%, #0F2856 100%);
  overflow: hidden;
  padding: calc(var(--header-h) + 76px) 0 100px;
}

/* Grid pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 0%, transparent 70%);
}

/* Glow orbs */
.hero::after {
  content: '';
  position: absolute;
  top: 10%; right: 5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  bottom: -100px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero .eyebrow { background: rgba(37,99,235,.2); border-color: rgba(37,99,235,.35); color: #93C5FD; }
.hero h1 { color: #fff; font-weight: 800; font-size: clamp(2.4rem, 5.5vw, 3.6rem); }
.hero h1 span { color: #60A5FA; }
.hero .lead { font-size: 1.125rem; color: rgba(255,255,255,.7); max-width: 600px; line-height: 1.75; margin-bottom: 0; }

/* Hero visual */
.hero-visual {
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  width: 420px; display: none;
}

/* ── STATS STRIP ─────────────────────────────────────────── */
.stats-strip {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--grey-100);
  position: relative;
  z-index: 10;
}
.stats-strip .container {
  display: flex;
  border-left: 1px solid var(--grey-100);
}
.stat-item {
  flex: 1; padding: 32px 24px;
  border-right: 1px solid var(--grey-100);
  text-align: center;
}
.stat-num {
  font-size: 2.25rem; font-weight: 800;
  color: var(--navy); letter-spacing: -.04em;
  line-height: 1;
  display: block;
}
.stat-num span { color: var(--accent); }
.stat-label { font-size: .8125rem; color: var(--grey-400); margin-top: 6px; display: block; font-weight: 500; }

/* ── CARDS ───────────────────────────────────────────────── */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,.2);
}
.card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(37,99,235,.05));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(37,99,235,.12);
}
.card-icon svg { width: 24px; height: 24px; color: var(--accent); stroke: var(--accent); }
.card h3 { font-size: 1.0625rem; margin-bottom: 10px; color: var(--navy); }
.card p { color: var(--grey-600); font-size: .9375rem; margin: 0; }

/* ── SECTION ALT ─────────────────────────────────────────── */
.section-alt { background: var(--grey-50); }

/* ── PROCESS ─────────────────────────────────────────────── */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-list::before {
  content: '';
  position: absolute;
  top: 40px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(37,99,235,.3));
}
.process-step {
  padding: 0 20px;
  text-align: center;
  position: relative;
}
.process-num {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--accent), #1D4ED8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: #fff;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(37,99,235,.35);
  position: relative; z-index: 1;
}
.process-step-icon {
  width: 32px; height: 32px;
  color: rgba(255,255,255,.9);
  stroke: rgba(255,255,255,.9);
}
.process-step h3 { color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: .9rem; color: var(--grey-600); }

/* ── COMPLIANCE DARK SECTION ─────────────────────────────── */
.compliance {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.compliance::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.compliance > * { position: relative; z-index: 1; }
.compliance .eyebrow { background: rgba(96,165,250,.15); border-color: rgba(96,165,250,.3); color: #93C5FD; }
.compliance h2 { color: #fff; max-width: 560px; margin-top: 4px; }
.compliance-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.compliance-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: background .2s;
}
.compliance-item:hover { background: rgba(255,255,255,.1); }
.compliance-check {
  width: 36px; height: 36px;
  background: rgba(37,99,235,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.compliance-check svg { width: 18px; height: 18px; stroke: #93C5FD; }
.compliance-item strong { display: block; color: #fff; font-size: .9375rem; margin-bottom: 4px; }
.compliance-item span { color: rgba(255,255,255,.6); font-size: .875rem; line-height: 1.5; }

/* ── PARTENAIRES ─────────────────────────────────────────── */
.partner-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-100);
  padding: 32px;
  box-shadow: var(--shadow);
}
.partner-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-100);
}
.partner-row:last-child { border-bottom: none; }
.partner-row-label { color: var(--grey-400); font-size: .9rem; display: flex; align-items: center; gap: 8px; }
.partner-row-val { font-weight: 700; color: var(--navy); font-size: .9375rem; }

/* ── MARQUEES / ICONS STRIP ──────────────────────────────── */
.platforms-strip { padding: 56px 0; background: var(--grey-50); border-top: 1px solid var(--grey-100); border-bottom: 1px solid var(--grey-100); }
.platforms-title { text-align: center; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-400); margin-bottom: 32px; }
.platforms-logos { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.platform-logo {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: .55; transition: opacity .2s;
  font-size: .8rem; font-weight: 600; color: var(--grey-600);
}
.platform-logo:hover { opacity: 1; }
.platform-logo svg { width: 36px; height: 36px; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: rgba(37,99,235,.25); }
.faq-item[open] { border-color: rgba(37,99,235,.3); box-shadow: 0 4px 20px rgba(37,99,235,.08); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  font-weight: 600; font-size: 1rem; color: var(--navy);
  cursor: pointer; list-style: none; gap: 16px;
  transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--grey-50); }
.faq-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--grey-50); border: 1px solid var(--grey-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform .25s, background .2s;
}
.faq-item[open] .faq-arrow { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); }
.faq-arrow svg { width: 14px; height: 14px; stroke: var(--grey-600); }
.faq-item[open] .faq-arrow svg { stroke: #fff; }
.faq-item p {
  padding: 0 24px 20px;
  color: var(--grey-600);
  font-size: .9375rem;
  line-height: 1.7;
  margin: 0;
}

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, #1D4ED8 50%, #1E3A8A 100%);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(255,255,255,.1) 0%, transparent 50%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.75); font-size: 1.0625rem; max-width: 540px; margin: 0 auto 36px; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.7; }
.footer-col h4 { font-size: .8125rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: .875rem; color: rgba(255,255,255,.65); text-decoration: none; transition: color .15s; }
.footer-col li a:hover { color: #fff; }
.footer-col li:not(:has(a)) { font-size: .875rem; color: rgba(255,255,255,.4); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap; gap: 8px;
}

/* ── PAGE HEADER (contact etc) ───────────────────────────── */
.page-header {
  background: linear-gradient(135deg, #081628 0%, #0B1D3A 50%, #122348 100%);
  padding: calc(var(--header-h) + 76px) 0 72px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-header .eyebrow { background: rgba(96,165,250,.15); border-color: rgba(96,165,250,.3); color: #93C5FD; }
.page-header h1 { color: #fff; position: relative; }
.page-header .subtitle { color: rgba(255,255,255,.65); max-width: 560px; position: relative; font-size: 1.0625rem; margin-top: 12px; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }

.form { display: flex; flex-direction: column; gap: 20px; }
.form label { display: block; font-size: .8125rem; font-weight: 600; color: var(--grey-800); margin-bottom: 6px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--grey-200); border-radius: var(--radius);
  font-family: var(--font); font-size: .9375rem; color: var(--grey-800);
  background: var(--white); transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .875rem; color: var(--grey-600); cursor: pointer; }
.consent input { width: auto; margin-top: 2px; flex-shrink: 0; }
.consent a { color: var(--accent); }
.form-msg { padding: 12px 16px; border-radius: var(--radius); font-size: .875rem; font-weight: 500; display: none; }
.form-msg.success { background: rgba(22,163,74,.08); border: 1px solid rgba(22,163,74,.3); color: #15803D; display: block; }
.form-msg.error { background: rgba(220,38,38,.08); border: 1px solid rgba(220,38,38,.3); color: #DC2626; display: block; }

.contact-info { display: flex; flex-direction: column; gap: 0; background: var(--grey-50); border: 1px solid var(--grey-100); border-radius: var(--radius-lg); padding: 32px; }
.contact-info h3 { margin-bottom: 8px; }
.contact-info > p { color: var(--grey-600); font-size: .9375rem; padding-bottom: 24px; border-bottom: 1px solid var(--grey-100); margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--grey-100); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); stroke: var(--accent); margin-top: 2px; }
.contact-info-item .label { display: block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--grey-400); margin-bottom: 4px; }
.contact-info-item .value { display: block; font-size: .9rem; color: var(--grey-800); line-height: 1.5; }
.contact-info-item a.value { color: var(--accent); text-decoration: none; }
.contact-info-item a.value:hover { text-decoration: underline; }

/* ── BRANDS ──────────────────────────────────────────────── */
.brands-section { padding: 80px 0; background: var(--grey-50); }
.brands-title { text-align: center; font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--grey-400); margin-bottom: 0; }
.brands-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.brand-card {
  background: var(--white);
  border: 1.5px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: all .2s;
  cursor: default;
  display: flex; align-items: center; justify-content: center;
  min-height: 100px;
}
.brand-card:hover { border-color: rgba(37,99,235,.25); box-shadow: var(--shadow); transform: translateY(-2px); }
.brand-img-wrap {
  height: 64px;
  width: 100%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.brand-img-wrap img {
  height: 64px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  filter: grayscale(15%);
  transition: filter .2s;
}
.brand-card:hover .brand-img-wrap img { filter: grayscale(0%); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile-first
   ══════════════════════════════════════════════════════════ */

/* ── Tablet landscape (≤ 1024px) ──────────────────────── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .process-list::before { display: none; }
  .compliance { padding: 48px 40px; }
  .compliance-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 300px; gap: 40px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
  .cta-band { padding: 56px 48px; }
}

/* ── Tablet portrait (≤ 768px) ────────────────────────── */
@media (max-width: 768px) {

  /* ─ NAV MOBILE ─ */
  .nav-toggle { display: flex; }

  /* Menu slide-in depuis la droite */
  .nav-links {
    position: fixed;
    top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--navy);
    display: flex; flex-direction: column;
    padding: 20px 16px 32px;
    gap: 4px;
    z-index: 199;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .32s cubic-bezier(.4,0,.2,1), visibility .32s;
    /* Sur-écrire le flex desktop */
    align-items: stretch;
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }
  .nav-links a {
    display: flex; align-items: center;
    min-height: 52px;
    padding: 0 16px;
    font-size: 1rem; font-weight: 500;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    border-radius: var(--radius);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .15s, color .15s;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a:active, .nav-links a:hover { background: rgba(255,255,255,.09); color: #fff; }
  .nav-cta {
    margin-top: 12px !important;
    justify-content: center !important;
    background: var(--accent) !important;
    border: none !important;
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
    min-height: 52px;
  }

  /* ─ LAYOUT ─ */
  .container { padding: 0 20px; }
  section:not(.hero) { padding: 64px 0; }
  .section-title { margin-bottom: 44px; }
  .section-title h2 { font-size: 1.625rem; }

  /* ─ HERO ─ */
  .hero { min-height: auto; padding: calc(var(--header-h) + 56px) 0 64px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero .lead { font-size: 1rem; }
  .btn-group { flex-direction: column; align-items: stretch; margin-top: 28px; }
  .btn-group .btn { justify-content: center; min-height: 52px; }

  /* ─ STATS ─ */
  .stats-strip .container { flex-wrap: wrap; border-left: none; }
  .stat-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--grey-100); padding: 24px 16px; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--grey-100); }

  /* ─ GRIDS ─ */
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }

  /* ─ COMPLIANCE ─ */
  .compliance { padding: 36px 28px; border-radius: var(--radius-lg); }
  .compliance-list { grid-template-columns: 1fr; gap: 12px; }

  /* ─ CONTACT ─ */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }

  /* ─ BRANDS ─ */
  .brands-section { padding: 56px 0; }
  .brands-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }

  /* ─ CTA ─ */
  .cta-band { padding: 48px 28px; border-radius: var(--radius-lg); }

  /* ─ FOOTER ─ */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }

  /* ─ PAGE HEADER ─ */
  .page-header { padding: calc(var(--header-h) + 48px) 0 52px; }
}

/* ── Phone (≤ 480px) ───────────────────────────────────── */
@media (max-width: 480px) {

  /* ─ LOGO ─ */
  .logo-img { height: 26px; }

  /* ─ LAYOUT ─ */
  .container { padding: 0 16px; }
  section:not(.hero) { padding: 52px 0; }
  .section-title { margin-bottom: 32px; }
  .section-title p { font-size: .9375rem; }

  /* ─ HERO ─ */
  .hero { padding: calc(var(--header-h) + 40px) 0 52px; }
  .hero h1 { font-size: clamp(1.75rem, 9vw, 2.4rem); }
  .hero .eyebrow { font-size: .6875rem; }
  .hero .lead { font-size: .9375rem; line-height: 1.7; }

  /* ─ STATS : 1 par ligne ─ */
  .stat-item { flex: 1 1 100%; border-right: none !important; }
  .stat-num { font-size: 2rem; }

  /* ─ PROCESS : 1 colonne ─ */
  .process-list { grid-template-columns: 1fr; gap: 20px; }
  .process-step { display: flex; align-items: flex-start; gap: 16px; text-align: left; }
  .process-num { width: 56px; height: 56px; flex-shrink: 0; margin: 0; }
  .process-step-icon { width: 24px; height: 24px; }
  .process-step h3 { margin-bottom: 6px; }

  /* ─ CARDS ─ */
  .card { padding: 22px 18px; }
  .card-icon { width: 44px; height: 44px; margin-bottom: 16px; }

  /* ─ COMPLIANCE ─ */
  .compliance { padding: 28px 18px; }
  .compliance-item { padding: 14px; gap: 12px; }
  .compliance-check { width: 30px; height: 30px; flex-shrink: 0; }
  .compliance-check svg { width: 14px; height: 14px; }

  /* ─ PARTENAIRE ─ */
  .partner-card { padding: 20px 16px; }

  /* ─ BRANDS : 2 colonnes ─ */
  .brands-section { padding: 44px 0; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .brand-card { padding: 14px 10px; }
  .brand-name { font-size: .875rem; }

  /* ─ FAQ ─ */
  .faq-item summary { padding: 16px 16px; font-size: .9375rem; gap: 12px; }
  .faq-item p { padding: 0 16px 16px; font-size: .9rem; }
  .faq-arrow { width: 26px; height: 26px; flex-shrink: 0; }

  /* ─ CTA ─ */
  .cta-band { padding: 36px 18px; }
  .cta-band h2 { font-size: 1.5rem; }
  .cta-band p { font-size: .9375rem; }

  /* ─ CONTACT ─ */
  .contact-info { padding: 22px 16px; }
  .page-header { padding: calc(var(--header-h) + 32px) 0 44px; }

  /* ─ FOOTER ─ */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { grid-column: auto; }
  .site-footer { padding: 52px 0 0; }

  /* ─ BOUTONS ─ */
  .btn { padding: 13px 20px; font-size: .9rem; min-height: 48px; }
  .btn-group .btn { width: 100%; }
}

@media (min-width: 1100px) {
  .hero-visual { display: block; }
}
