/* ============ VARIABLES ============ */
:root {
  --bg-base: #F4FBFA;
  --particulier: #27EEA0;
  --particulier-glow: rgba(39, 238, 160, 0.4);
  --pro: #09B0E8;
  --pro-glow: rgba(9, 176, 232, 0.4);
  --ink: #0A1428;
  --ink-2: #1F2D44;
  --ink-3: #5A6478;
  --muted: #8893A8;
  --line: rgba(10, 20, 40, 0.08);
  --line-2: rgba(10, 20, 40, 0.15);
  --glass: rgba(255, 255, 255, 0.55);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.7);
  --font-ui: "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
  /* Page accent — overridden per body class */
  --accent: var(--pro);
  --accent-end: #6fd6f5;
  --accent-glow: var(--pro-glow);
  --accent-light: rgba(9, 176, 232, 0.12);
  --accent-border: rgba(9, 176, 232, 0.2);
}
body.page-part {
  --accent: var(--particulier);
  --accent-end: #8af5cb;
  --accent-glow: var(--particulier-glow);
  --accent-light: rgba(39, 238, 160, 0.12);
  --accent-border: rgba(39, 238, 160, 0.2);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg-base); }
body {
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--bg-base);
  font-size: 15.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 28px; }

/* ============ BLOBS ============ */
.bg-canvas { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }

body.page-home .blob { opacity: 0.6; }
body.page-home .blob-1 { width: 600px; height: 600px; background: var(--pro); top: -200px; left: -100px; animation: float1 22s ease-in-out infinite; }
body.page-home .blob-2 { width: 700px; height: 700px; background: var(--particulier); top: 30%; right: -200px; opacity: 0.5; animation: float2 28s ease-in-out infinite; }
body.page-home .blob-3 { width: 500px; height: 500px; background: #c7e8e8; bottom: -100px; left: 30%; opacity: 0.55; animation: float3 26s ease-in-out infinite; }
body.page-home .blob-4 { width: 400px; height: 400px; background: #d8e6b6; top: 60%; left: -100px; opacity: 0.45; animation: float1 24s ease-in-out infinite reverse; }

body.page-pro .blob-1 { width: 700px; height: 700px; background: var(--pro); top: -280px; left: -200px; animation: float1 24s ease-in-out infinite; }
body.page-pro .blob-2 { width: 500px; height: 500px; background: #c7e8e8; bottom: 10%; right: -150px; animation: float2 28s ease-in-out infinite; }
body.page-pro .blob-3 { width: 400px; height: 400px; background: #d0eef8; top: 50%; left: -100px; opacity: 0.4; animation: float3 20s ease-in-out infinite; }

body.page-part .blob-1 { width: 700px; height: 700px; background: var(--particulier); top: -280px; left: -200px; animation: float1 24s ease-in-out infinite; }
body.page-part .blob-2 { width: 500px; height: 500px; background: #c7e8d8; bottom: 10%; right: -150px; animation: float2 28s ease-in-out infinite; }
body.page-part .blob-3 { width: 400px; height: 400px; background: #d8f0e8; top: 50%; left: -100px; opacity: 0.4; animation: float3 20s ease-in-out infinite; }

@keyframes float1 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(80px,120px) scale(1.1); } }
@keyframes float2 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-120px,80px) scale(0.92); } }
@keyframes float3 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px,-80px) scale(1.05); } }

/* ============ EYEBROW ============ */
.eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3); display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-light);
}

/* ============ HEADER ============ */
.site-header { position: sticky; top: 16px; z-index: 50; margin: 16px 24px 0; }
.header-inner {
  max-width: 1320px; margin: 0 auto;
  background: var(--glass-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border); border-radius: 999px;
  padding: 8px 8px 8px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  box-shadow: 0 12px 40px -12px rgba(10,20,40,0.12), 0 1px 0 rgba(255,255,255,0.6) inset;
}
.brand { flex-shrink: 0; }
.brand img { height: 44px; width: auto; }
.nav { display: flex; gap: 4px; }
.nav a { padding: 9px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 500; color: var(--ink-2); transition: all 0.2s ease; }
.nav a:hover { background: var(--ink); color: white; }
.nav a.nav-pro:hover { background: var(--pro); color: white; }
.nav a.nav-part:hover { background: var(--particulier); color: white; }
.nav a.active { background: var(--ink); color: white; }
.nav a.active.nav-pro { background: var(--pro); color: white; }
.nav a.active.nav-part { background: var(--particulier); color: white; }
.nav a.nav-urg:hover { background: #D63030; color: white; }
.nav a[href^="https://www.mybroker.be"]:hover { background: #243875; color: white; }
.nav a[href="index.html"] { position: relative; isolation: isolate; overflow: hidden; transition: color 0.2s ease; }
.nav a[href="index.html"]::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, var(--particulier), var(--pro)); opacity: 0; transition: opacity 0.3s; z-index: -1; }
.nav a[href="index.html"]:hover { background: transparent; color: white; }
.nav a[href="index.html"]:hover::before { opacity: 1; }
.nav a[href="index.html"].active { background: transparent; color: white; }
.nav a[href="index.html"].active::before { opacity: 1; }
.nav-mobile a.nav-urg:hover { background: #D63030; color: white; }
.nav-mobile a[href^="https://www.mybroker.be"]:hover { background: #243875; color: white; }
.nav-mobile a[href="index.html"] { position: relative; isolation: isolate; overflow: hidden; transition: color 0.2s ease; }
.nav-mobile a[href="index.html"]::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, var(--particulier), var(--pro)); opacity: 0; transition: opacity 0.3s; z-index: -1; border-radius: 14px; }
.nav-mobile a[href="index.html"]:hover { background: transparent; color: white; }
.nav-mobile a[href="index.html"]:hover::before { opacity: 1; }
.nav-mobile a[href="index.html"].active { background: transparent; color: white; }
.nav-mobile a[href="index.html"].active::before { opacity: 1; }
.header-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; width: 40px; height: 40px; border-radius: 999px;
  background: rgba(255,255,255,0.6); border: 1px solid var(--glass-border);
  align-items: center; justify-content: center;
  font-size: 16px; color: var(--ink); cursor: pointer; transition: background 0.2s; flex-shrink: 0;
}
.nav-toggle:hover { background: white; }
.nav-mobile {
  display: none; flex-direction: column; gap: 4px;
  margin-top: 8px; padding: 10px;
  background: var(--glass-strong);
  backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border); border-radius: 24px;
  box-shadow: 0 12px 40px -12px rgba(10,20,40,0.15);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 11px 16px; border-radius: 14px; font-size: 14.5px; font-weight: 500; color: var(--ink-2); transition: all 0.2s; }
.nav-mobile a:hover { background: var(--ink); color: white; }
.nav-mobile a.nav-pro:hover { background: var(--pro); color: white; }
.nav-mobile a.nav-part:hover { background: var(--particulier); color: white; }
.nav-mobile a.active { background: var(--ink); color: white; }
.nav-mobile a.active.nav-pro { background: var(--pro); color: white; }
.nav-mobile a.active.nav-part { background: var(--particulier); color: white; }
.nav-mobile-divider { height: 1px; background: var(--line); margin: 4px 0; }
.nav-mobile-rdv {
  padding: 12px 16px; border-radius: 14px; background: var(--ink); color: white;
  font-size: 14.5px; font-weight: 500; text-align: center; cursor: pointer;
  border: none; font-family: var(--font-ui); transition: background 0.2s; width: 100%;
}
.nav-mobile-rdv:hover { background: var(--ink-2); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 20px; border-radius: 999px; font-size: 13.5px; font-weight: 500;
  border: none; cursor: pointer; transition: all 0.22s cubic-bezier(.2,.6,.3,1); white-space: nowrap;
}
.btn-primary { background: var(--ink); color: white; isolation: isolate; position: relative; overflow: hidden; }
.btn-primary::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit;
  background: linear-gradient(120deg, var(--accent), var(--accent-end));
  opacity: 0; transition: opacity 0.3s; z-index: 0;
}
body.page-home .btn-primary::before { background: linear-gradient(120deg, var(--particulier), var(--pro)); }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 12px 28px -10px var(--accent-glow); }
.btn-glass { background: var(--glass); color: var(--ink); border: 1px solid var(--glass-border); backdrop-filter: blur(12px); }
.btn-glass:hover { background: white; transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(10,20,40,0.15); }
.btn-lg { padding: 16px 26px; font-size: 15px; }
.btn .arr { display: inline-flex; width: 22px; height: 22px; border-radius: 999px; background: rgba(255,255,255,0.18); align-items: center; justify-content: center; font-size: 14px; }
.btn-glass .arr { background: rgba(10,20,40,0.08); }
.btn:hover .arr { transform: translateX(2px); }

/* ============ HERO — HOME ============ */
body.page-home .hero { padding: 80px 0 64px; position: relative; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 8px; background: var(--glass-strong); backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); border-radius: 999px;
  font-size: 12.5px; color: var(--ink-2); margin-bottom: 32px;
  box-shadow: 0 6px 18px -8px rgba(10,20,40,0.1);
}
.hero-pill .badge { background: var(--ink); color: white; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 500; letter-spacing: 0.02em; }
body.page-home .hero-pill .badge { background: linear-gradient(120deg, var(--pro) 0%, var(--particulier) 100%); color: white; font-weight: 600; }
body.page-pro .hero-pill .badge { background: var(--pro); color: white; }
body.page-part .hero-pill .badge { background: var(--particulier); color: white; font-weight: 600; }

.hero-intro { text-align: center; max-width: 920px; margin: 0 auto 56px; }
.hero-intro .hero-pill { margin: 0 auto 28px; }
.hero-intro h1 { font-weight: 600; font-size: clamp(56px, 7.4vw, 108px); line-height: 0.94; letter-spacing: -0.045em; color: var(--ink); margin: 0 0 24px; }
body.page-home .hero-intro h1 .grad { background: linear-gradient(120deg, var(--particulier) 0%, var(--pro) 80%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-intro .lede { font-size: 19px; line-height: 1.55; color: var(--ink-3); max-width: 56ch; margin: 0 auto; }
body.page-home .hero-intro .lede { text-align: center; }

.audience-gateway { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.audience-card {
  position: relative; isolation: isolate; display: flex; flex-direction: column; gap: 22px;
  min-height: 540px; padding: 44px; border-radius: 40px;
  background: var(--glass-strong); -webkit-backdrop-filter: blur(28px) saturate(180%); backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 56px -28px rgba(10,20,40,0.18), 0 1px 0 rgba(255,255,255,0.6) inset;
  text-decoration: none; color: var(--ink); overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1), box-shadow 0.4s;
}
.audience-card .ac-glow { position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.55; transition: opacity 0.5s, transform 0.6s cubic-bezier(.2,.7,.3,1); }
.audience-card .ac-glow::before { content: ""; position: absolute; width: 560px; height: 560px; border-radius: 999px; filter: blur(110px); top: -220px; right: -180px; }
.audience-card.part .ac-glow::before { background: var(--particulier); }
.audience-card.pro .ac-glow::before { background: var(--pro); }
.audience-card:hover { transform: translateY(-8px); box-shadow: 0 48px 96px -36px rgba(10,20,40,0.28); }
.audience-card:hover .ac-glow { opacity: 0.85; transform: scale(1.08) translate(-20px, 20px); }
.ac-top { display: flex; justify-content: flex-end; align-items: center; }
.ac-num { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; color: var(--ink-3); }
.ac-badge { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; background: white; color: var(--ink); border: 1px solid var(--line); }
.audience-card.part .ac-badge::before { content: "● "; color: var(--particulier); }
.audience-card.pro .ac-badge::before { content: "● "; color: var(--pro); }
.ac-title { display: flex; flex-direction: column; gap: 6px; }
.ac-title .ac-pre { font-size: 13px; color: var(--ink-3); font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; }
.audience-card h2 { font-weight: 600; font-size: clamp(54px, 5.8vw, 84px); line-height: 0.95; letter-spacing: -0.045em; margin: 0; }
.audience-card.part h2 { color: var(--particulier); }
.audience-card.pro h2 { color: var(--pro); }
.ac-desc { font-size: 16px; line-height: 1.55; color: var(--ink-2); max-width: 40ch; margin: 0; }
.ac-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ac-tags span { background: rgba(255,255,255,0.6); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: 13px; color: var(--ink-2); backdrop-filter: blur(8px); }
.ac-cta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px 16px 24px; border-radius: 999px; background: var(--ink); color: white; font-weight: 500; font-size: 16px; letter-spacing: -0.005em; transition: background 0.3s; }
.audience-card.part:hover .ac-cta { background: var(--particulier); }
.audience-card.pro:hover .ac-cta { background: var(--pro); }
.ac-arr { display: inline-flex; width: 34px; height: 34px; border-radius: 999px; background: rgba(255,255,255,0.16); align-items: center; justify-content: center; font-size: 16px; transition: transform 0.3s; }
.audience-card:hover .ac-arr { transform: translateX(4px); }

.hero-trust { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); }
.hero-trust .stack { display: flex; align-items: center; }
.hero-trust .stack .av { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--bg-base); background: var(--pro); margin-left: -8px; background-size: cover; }
.hero-trust .stack .av:first-child { margin-left: 0; }
.hero-trust .info { font-size: 13px; color: var(--ink-3); line-height: 1.4; }
.hero-trust .info strong { color: var(--ink); font-weight: 600; }

/* ============ PARTNERS ============ */
.partners-strip { padding: 28px 32px; background: white; border: 1px solid var(--line); border-radius: 28px; box-shadow: 0 6px 24px -10px rgba(10,20,40,0.08); }
body.page-home .partners-strip { margin-top: 32px; }
.partners-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.partners-header .lab { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.partners-tabs { display: flex; gap: 4px; background: rgba(10,20,40,0.05); border-radius: 999px; padding: 4px; }
.partners-tab { padding: 6px 16px; border-radius: 999px; font-size: 12px; font-weight: 500; cursor: pointer; border: none; background: none; color: var(--ink-3); transition: all 0.2s; font-family: var(--font-ui); }
.partners-tab.active { background: white; box-shadow: 0 2px 8px -2px rgba(10,20,40,0.12); }
.partners-tab.active.part { color: var(--particulier); }
.partners-tab.active.pro { color: var(--pro); }
.partners-grid { display: none; flex-wrap: wrap; gap: 20px 32px; align-items: center; justify-content: center; }
.partners-grid.visible { display: flex; }
body.page-pro .partners-grid,
body.page-part .partners-grid { display: flex; }
.partner-logo { height: 44px; width: auto; object-fit: contain; filter: grayscale(0%) opacity(1); transition: filter 0.25s, transform 0.25s; }
.partner-logo:hover { filter: grayscale(100%) opacity(0.55); transform: scale(1.06); }

/* ============ SECTIONS ============ */
.section { padding: 80px 0; position: relative; }
body.page-home .section { padding: 96px 0; }
.section-head { text-align: center; margin-bottom: 56px; }
body.page-home .section-head { margin-bottom: 64px; }
.section-head h2 { font-weight: 600; font-size: clamp(36px, 4vw, 60px); line-height: 1.02; letter-spacing: -0.035em; margin: 16px auto 0; max-width: 20ch; color: var(--ink); }
body.page-home .section-head h2 { font-size: clamp(40px, 4.4vw, 64px); max-width: 18ch; }
.section-head h2 .grad { background: linear-gradient(120deg, var(--accent) 0%, var(--accent-end) 80%); -webkit-background-clip: text; background-clip: text; color: transparent; }
body.page-home .section-head h2 .grad { background: linear-gradient(120deg, var(--particulier) 0%, var(--pro) 80%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-head .sub { font-size: 17px; color: var(--ink-3); max-width: 52ch; margin: 16px auto 0; line-height: 1.55; }
body.page-home .section-head .sub { font-size: 18px; max-width: 56ch; margin-top: 20px; }

/* ============ STAT CARDS (HOME) ============ */
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card { background: var(--glass-strong); backdrop-filter: blur(24px) saturate(160%); -webkit-backdrop-filter: blur(24px) saturate(160%); border: 1px solid var(--glass-border); border-radius: 24px; padding: 28px; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -20px rgba(10,20,40,0.18); }
.stat-card .n { font-size: 60px; font-weight: 600; line-height: 1; letter-spacing: -0.04em; background: linear-gradient(135deg, var(--particulier), var(--pro)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-card .n .unit { font-size: 22px; color: var(--ink-3); -webkit-text-fill-color: var(--ink-3); vertical-align: super; margin-left: 2px; }
.stat-card .lab { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-top: 20px; }
.stat-card .desc { font-size: 14px; color: var(--ink-2); margin-top: 6px; line-height: 1.45; }

/* ============ STEPS (HOME) ============ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
.step { background: var(--glass-strong); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 32px 26px; transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.step:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -18px rgba(10,20,40,0.15); }
.step .n { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, var(--particulier), var(--pro)); color: white; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 16px; margin-bottom: 20px; }
.step h4 { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 8px; }
.step p { font-size: 14px; color: var(--ink-3); line-height: 1.5; margin: 0; }

/* ============ TEAM (HOME) ============ */
.team { display: grid; grid-template-columns: repeat(3, minmax(0, 280px)); gap: 16px; justify-content: center; }
.tm { background: var(--glass-strong); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 28px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.tm:hover { transform: translateY(-6px); box-shadow: 0 28px 56px -24px rgba(10,20,40,0.2); }
.tm-img { aspect-ratio: 2/3; background: var(--bg-base); overflow: hidden; }
.tm-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s ease; }
.tm:hover .tm-img img { transform: scale(1.04); }
.tm-body { padding: 24px; }
.tm h4 { font-size: 20px; font-weight: 600; margin: 0 0 4px; letter-spacing: -0.02em; }
.tm .role { font-size: 13px; color: var(--ink-3); margin-bottom: 16px; }
.tm .em { font-family: var(--font-mono); font-size: 12px; color: var(--pro); border-top: 1px solid var(--line); padding-top: 14px; display: inline-block; transition: color 0.2s, letter-spacing 0.2s; }
.tm .em:hover { color: var(--particulier); letter-spacing: 0.02em; }
.tm .badge { display: inline-block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; background: rgba(9,176,232,0.12); color: var(--pro); margin-bottom: 14px; }

/* ============ PHONE CTA ============ */
.phone-cta {
  display: inline-flex; align-items: center; gap: 20px;
  text-decoration: none; padding: 20px 40px;
  border-radius: 999px; border: 1px solid var(--line-2);
  background: var(--glass-strong); backdrop-filter: blur(20px);
  transition: transform 0.2s, box-shadow 0.2s;
}
.phone-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -8px rgba(10,20,40,0.12); }
.phone-cta-icon { font-size: 22px; background: linear-gradient(120deg, var(--particulier), var(--pro)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.phone-cta-num { font-size: clamp(28px, 4vw, 48px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; background: linear-gradient(120deg, var(--particulier), var(--pro)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ============ TESTIMONIALS (HOME) ============ */
.testi { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi-card { background: var(--glass-strong); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 28px; }
.testi-card .stars { color: #F5B400; font-size: 14px; margin-bottom: 12px; }
.testi-card blockquote { font-size: 16px; line-height: 1.5; margin: 0 0 20px; color: var(--ink-2); }
.testi-card .who { display: flex; gap: 10px; align-items: center; }
.testi-card .av { width: 36px; height: 36px; border-radius: 999px; background: linear-gradient(135deg, var(--particulier), var(--pro)); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: var(--ink); }
.testi-card .nm { font-weight: 600; font-size: 13.5px; }
.testi-card .rl { font-size: 12px; color: var(--ink-3); }

/* ============ HERO — SUB PAGES ============ */
.hero { padding: 88px 0 80px; }
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero h1 { font-weight: 600; font-size: clamp(48px, 5.6vw, 88px); line-height: 0.96; letter-spacing: -0.04em; margin: 0 0 28px; color: var(--ink); }
.hero h1 .grad { background: linear-gradient(120deg, var(--accent) 0%, var(--accent-end) 80%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lede { font-size: 18px; line-height: 1.6; color: var(--ink-3); max-width: 48ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-right { position: relative; }
.hero-card { background: var(--glass-strong); backdrop-filter: blur(28px) saturate(180%); -webkit-backdrop-filter: blur(28px) saturate(180%); border: 1px solid var(--glass-border); border-radius: 32px; padding: 36px; box-shadow: 0 32px 64px -24px rgba(10,20,40,0.18), 0 1px 0 rgba(255,255,255,0.6) inset; position: relative; overflow: hidden; }
.hero-card::before { content: ""; position: absolute; width: 400px; height: 400px; border-radius: 999px; background: var(--accent); filter: blur(100px); opacity: 0.25; top: -180px; right: -150px; pointer-events: none; }
.hero-card .label-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.hero-card .label-badge::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-light); }
.hero-card h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 20px; line-height: 1.2; }

/* Pro hero card specifics */
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.hs-item { text-align: center; padding: 16px; background: rgba(255,255,255,0.5); border: 1px solid var(--line); border-radius: 16px; }
.hs-item .n { font-size: 40px; font-weight: 600; letter-spacing: -0.04em; line-height: 1; background: linear-gradient(120deg, var(--pro), #6fd6f5); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hs-item .l { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-top: 6px; }
.hero-card .corporate-badge { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: rgba(9,176,232,0.08); border: 1px solid rgba(9,176,232,0.2); border-radius: 14px; }
.hero-card .corporate-badge .icon { width: 36px; height: 36px; border-radius: 10px; background: var(--pro); color: white; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.hero-card .corporate-badge .tx .t { font-size: 13px; font-weight: 600; }
.hero-card .corporate-badge .tx .s { font-size: 11.5px; color: var(--ink-3); font-family: var(--font-mono); letter-spacing: 0.04em; }

/* Part hero card specifics */
.hero-products { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.hp-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: rgba(255,255,255,0.5); border: 1px solid var(--line); border-radius: 14px; font-size: 13.5px; font-weight: 500; transition: background 0.2s, transform 0.2s; }
.hp-item:hover { background: white; transform: translateY(-2px); }
.hp-item .ic { width: 32px; height: 32px; border-radius: 10px; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.hero-card .guarantee { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: rgba(39,238,160,0.08); border: 1px solid rgba(39,238,160,0.22); border-radius: 14px; }
.hero-card .guarantee .icon { width: 36px; height: 36px; border-radius: 10px; background: var(--particulier); color: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.hero-card .guarantee .tx .t { font-size: 13px; font-weight: 600; }
.hero-card .guarantee .tx .s { font-size: 11.5px; color: var(--ink-3); font-family: var(--font-mono); letter-spacing: 0.04em; }

/* ============ INTRO STRIP ============ */
.intro-strip { padding: 64px 0; }
.intro-card { background: var(--glass-strong); backdrop-filter: blur(24px) saturate(160%); border: 1px solid var(--glass-border); border-radius: 32px; padding: 48px 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; overflow: hidden; }
.intro-card::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 999px; background: var(--accent); filter: blur(100px); opacity: 0.15; bottom: -200px; right: -150px; pointer-events: none; }
.intro-card h2 { font-size: clamp(30px, 3.4vw, 52px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.05; margin: 0 0 16px; }
.intro-card h2 .grad { background: linear-gradient(120deg, var(--accent), var(--accent-end)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.intro-card .text p { font-size: 16.5px; color: var(--ink-3); line-height: 1.65; margin: 0 0 16px; }
.intro-card .text p:last-child { margin: 0; }
.intro-card .offices { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.office-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: rgba(255,255,255,0.7); border: 1px solid var(--line); border-radius: 14px; font-size: 14px; }
.office-item .ic { width: 32px; height: 32px; border-radius: 10px; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.office-item .tx .t { font-weight: 600; color: var(--ink); }
.office-item .tx .s { font-size: 12.5px; color: var(--ink-3); }

/* ============ ATOUTS ============ */
.atouts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.atout-card { background: var(--glass-strong); backdrop-filter: blur(20px) saturate(160%); border: 1px solid var(--glass-border); border-radius: 28px; padding: 36px 32px; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.atout-card::before { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 999px; background: var(--accent); filter: blur(70px); opacity: 0; top: -100px; right: -80px; transition: opacity 0.4s; pointer-events: none; }
.atout-card:hover { transform: translateY(-6px); box-shadow: 0 28px 56px -20px rgba(10,20,40,0.18); }
.atout-card:hover::before { opacity: 0.18; }
.atout-icon { width: 52px; height: 52px; border-radius: 16px; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 24px; transition: background 0.3s, transform 0.3s; }
.atout-card:hover .atout-icon { background: var(--accent); color: white; transform: scale(1.08); }
body.page-part .atout-card:hover .atout-icon { color: var(--ink); }
.atout-card h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 12px; line-height: 1.2; }
.atout-card p { font-size: 14.5px; color: var(--ink-3); line-height: 1.6; margin: 0; }

/* ============ SERVICES (PRO) ============ */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { background: var(--glass-strong); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 28px; padding: 36px 32px; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 28px 56px -20px rgba(10,20,40,0.18); }
.service-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 20px; }
.service-card h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 12px; }
.service-card p { font-size: 14.5px; color: var(--ink-3); line-height: 1.6; margin: 0 0 24px; flex: 1; }
.service-tag { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; background: var(--accent-light); color: var(--accent); width: fit-content; }

/* ============ PRODUCTS (PART) ============ */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-card { background: var(--glass-strong); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 28px; padding: 32px 28px; display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 28px 56px -20px rgba(10,20,40,0.18); }
.product-icon { width: 52px; height: 52px; border-radius: 16px; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; transition: background 0.3s, transform 0.3s; }
.product-card:hover .product-icon { background: var(--accent); color: var(--ink); transform: scale(1.08); }
.product-card h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 10px; }
.product-card p { font-size: 14px; color: var(--ink-3); line-height: 1.6; margin: 0 0 20px; flex: 1; }
.product-tag { display: inline-flex; align-items: center; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; background: var(--accent-light); color: var(--accent); width: fit-content; }

/* ============ CONTACT ============ */
.contact-card { background: var(--glass-strong); backdrop-filter: blur(28px) saturate(180%); -webkit-backdrop-filter: blur(28px) saturate(180%); border: 1px solid var(--glass-border); border-radius: 40px; padding: 56px; position: relative; overflow: hidden; box-shadow: 0 40px 80px -30px rgba(10,20,40,0.2); }
.contact-card::before { content: ""; position: absolute; width: 600px; height: 600px; border-radius: 999px; filter: blur(120px); opacity: 0.25; top: -300px; left: -200px; pointer-events: none; }
body.page-home .contact-card::before { background: linear-gradient(135deg, var(--particulier), var(--pro)); }
body.page-pro .contact-card::before { background: linear-gradient(135deg, var(--pro), #6fd6f5); }
body.page-part .contact-card::before { background: linear-gradient(135deg, var(--particulier), #8af5cb); opacity: 0.2; }
.contact-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; position: relative; }
.contact-grid h2 { font-size: clamp(32px, 3.6vw, 52px); font-weight: 600; line-height: 1.0; letter-spacing: -0.035em; margin: 12px 0 16px; max-width: 14ch; }
body.page-home .contact-grid h2 { font-size: clamp(36px, 4vw, 56px); margin: 12px 0 16px; }
.contact-grid h2 .grad { background: linear-gradient(120deg, var(--accent), var(--accent-end)); -webkit-background-clip: text; background-clip: text; color: transparent; }
body.page-home .contact-grid h2 .grad { background: linear-gradient(120deg, var(--particulier), var(--pro)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.contact-grid .lede { font-size: 17px; color: var(--ink-3); line-height: 1.55; max-width: 44ch; margin-bottom: 32px; }
.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ci-card { background: rgba(255,255,255,0.6); border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; transition: all 0.2s; }
.ci-card:hover { background: white; transform: translateY(-2px); }
.ci-card .l { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.ci-card .v { font-size: 15px; font-weight: 500; line-height: 1.35; }
.ci-card .v a { color: var(--ink); }

/* ── HORAIRES ── */
.hours-block { margin-top: 24px; background: rgba(255,255,255,0.6); border: 1px solid var(--line); border-radius: 18px; padding: 20px 22px; transition: all 0.2s; }
.hours-block:hover { background: white; transform: translateY(-2px); }
.hours-title { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; display: flex; align-items: center; gap: 7px; }
.hours-grid { display: flex; flex-direction: column; gap: 6px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.hours-day { color: var(--ink-2); font-weight: 500; }
.hours-val { font-family: var(--font-mono); font-size: 13px; color: var(--ink); }
.hours-row.hours-closed .hours-day,
.hours-row.hours-closed .hours-val { color: var(--muted); }

/* ============ FORM ============ */
.form-card { background: white; border-radius: 24px; padding: 32px; border: 1px solid var(--line); }
.form-card h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 4px; }
.form-card .sub { font-size: 13.5px; color: var(--ink-3); margin-bottom: 24px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; }
.field input, .field select { width: 100%; background: var(--bg-base); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; font: inherit; font-size: 14.5px; color: var(--ink); transition: border-color 0.15s, background 0.15s; appearance: none; }
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); background: white; box-shadow: 0 0 0 4px var(--accent-light); }
.field input.input-error, .field select.input-error { border-color: #EF4444; background: rgba(239,68,68,0.04); }
.field input.input-error:focus, .field select.input-error:focus { border-color: #EF4444; box-shadow: 0 0 0 4px rgba(239,68,68,0.15); }
.field span.field-error { display: block; color: #EF4444; font-size: 11px; margin-top: 5px; font-weight: 500; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-card button[type="submit"] {
  width: 100%; margin-top: 8px; padding: 14px 20px;
  background: var(--ink); color: white; border-radius: 12px;
  font-weight: 600; font-size: 14.5px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  position: relative; isolation: isolate; overflow: hidden;
  transition: transform 0.22s cubic-bezier(.2,.6,.3,1), box-shadow 0.22s;
}
.form-card button[type="submit"]::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit;
  background: linear-gradient(120deg, var(--accent), var(--accent-end));
  opacity: 0; transition: opacity 0.3s; z-index: -1;
}
body.page-home .form-card button[type="submit"]::before {
  background: linear-gradient(120deg, var(--particulier), var(--pro));
}
.form-card button[type="submit"] > * { position: relative; z-index: 1; }
.form-card button[type="submit"]:hover::before { opacity: 1; }
.form-card button[type="submit"]:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 10px 24px -10px var(--accent-glow); }

.btn-confirm {
  background: var(--ink); color: white;
  position: relative; isolation: isolate; overflow: hidden;
  transition: transform 0.22s cubic-bezier(.2,.6,.3,1), box-shadow 0.22s;
}
.btn-confirm::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit;
  background: linear-gradient(120deg, var(--accent), var(--accent-end));
  opacity: 0; transition: opacity 0.3s; z-index: -1;
}
body.page-home .btn-confirm::before { background: linear-gradient(120deg, var(--particulier), var(--pro)); }
.btn-confirm > * { position: relative; z-index: 1; }
.btn-confirm:hover::before { opacity: 1; }
.btn-confirm:hover { background: var(--accent); color: white; transform: translateY(-1px); box-shadow: 0 10px 24px -10px var(--accent-glow); }
.form-card .note { text-align: center; font-size: 12px; color: var(--ink-3); margin-top: 12px; }

/* ============ FOOTER ============ */
.site-footer { margin: 64px 24px 24px; padding: 56px 48px 32px; background: rgba(10,20,40,0.92); backdrop-filter: blur(20px); color: rgba(255,255,255,0.75); border-radius: 32px; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 999px; filter: blur(120px); top: -200px; right: -150px; }
body.page-home .site-footer::before { background: linear-gradient(135deg, var(--particulier), var(--pro)); opacity: 0.18; }
body.page-pro .site-footer::before { background: linear-gradient(135deg, var(--pro), #6fd6f5); opacity: 0.18; }
body.page-part .site-footer::before { background: linear-gradient(135deg, var(--particulier), #8af5cb); opacity: 0.15; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); position: relative; }
.footer-brand img { height: 48px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.55; max-width: 36ch; color: rgba(255,255,255,0.65); }
.footer-col h5 { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin: 0 0 16px; font-weight: 500; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 8px; transition: color 0.15s; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); }
.footer-bf { opacity: 0.45; transition: opacity 0.25s; display: inline-flex; }
.footer-bf:hover { opacity: 1; }

/* ============ MODAL ============ */
.modal-overlay { position: fixed; inset: 0; background: rgba(10,20,40,0.5); backdrop-filter: blur(6px); z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal { background: var(--glass-strong); backdrop-filter: blur(40px) saturate(180%); border: 1px solid var(--glass-border); border-radius: 32px; max-width: 480px; width: 100%; padding: 40px; position: relative; transform: scale(0.96) translateY(10px); transition: transform 0.3s ease; box-shadow: 0 40px 80px -30px rgba(10,20,40,0.3); }
.modal-overlay.open .modal { transform: none; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 999px; background: rgba(255,255,255,0.6); display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; transition: background 0.15s; }
.modal-close:hover { background: white; }
.modal h3 { font-size: 28px; font-weight: 600; letter-spacing: -0.025em; margin: 0 0 6px; }
.modal h3 .grad { background: linear-gradient(120deg, var(--accent), var(--accent-end)); -webkit-background-clip: text; background-clip: text; color: transparent; }
body.page-home .modal h3 .grad { background: linear-gradient(120deg, var(--particulier), var(--pro)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.modal .lede { font-size: 14.5px; color: var(--ink-3); margin-bottom: 24px; }

/* ============ URGENCE MODAL ============ */
.modal-urg { max-width: 560px; padding: 0; overflow: hidden; max-height: 88vh; display: flex; flex-direction: column; }
.urg-header { background: #D63030; padding: 24px 28px; flex-shrink: 0; display: flex; align-items: center; gap: 16px; }
.urg-header i { font-size: 26px; color: rgba(255,255,255,0.85); flex-shrink: 0; }
.urg-header-text .urg-num { font-size: 52px; font-weight: 700; line-height: 1; letter-spacing: -0.04em; color: white; text-align: center; }
.urg-contacts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 18px 24px; border-bottom: 1px solid var(--line); flex-shrink: 0; }
.urg-contact-item:first-child { grid-column: 1 / -1; }
.urg-contact-item { background: rgba(214,48,48,0.06); border: 1px solid rgba(214,48,48,0.14); border-radius: 12px; padding: 11px 14px; }
.urg-contact-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.urg-contact-num { font-size: 15px; font-weight: 600; color: #D63030; letter-spacing: -0.01em; text-decoration: none; display: block; }
.urg-contact-num:hover { text-decoration: underline; }
.urg-sections { overflow-y: auto; padding: 18px 24px 24px; display: flex; flex-direction: column; gap: 10px; }
.urg-section { background: rgba(255,255,255,0.7); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; }
.urg-section-title { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.urg-section-title i { color: #D63030; font-size: 13px; flex-shrink: 0; }
.urg-list { margin: 0; padding-left: 16px; display: flex; flex-direction: column; gap: 6px; }
.urg-list li { font-size: 15px; color: var(--ink-3); line-height: 1.55; }
.urg-list li strong { color: var(--ink); }

/* ============ LEGAL PAGE ============ */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-section { background: var(--glass-strong); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 28px; padding: 40px 44px; margin-bottom: 20px; }
.legal-h2 { font-size: 24px; font-weight: 600; letter-spacing: -0.025em; margin: 0 0 20px; display: flex; align-items: center; gap: 14px; }
.legal-num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, var(--particulier), var(--pro)); color: white; font-weight: 600; font-size: 16px; flex-shrink: 0; }
.legal-h3 { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); margin: 28px 0 10px; padding-top: 20px; border-top: 1px solid var(--line); }
.legal-content p { font-size: 15px; color: var(--ink-3); line-height: 1.7; margin: 0 0 14px; }
.legal-content p:last-child { margin-bottom: 0; }
@media (max-width: 600px) { .legal-section { padding: 24px 20px; } }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-layout, .intro-card, .contact-grid, .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .atouts, .services, .products { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 20px; }
  .contact-card { padding: 32px; border-radius: 28px; }
  .header-inner { padding: 6px 8px 6px 18px; }
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn-primary { display: none; }
  .site-footer { margin: 32px 16px 16px; padding: 32px 24px; }
}
@media (max-width: 900px) {
  .audience-gateway { grid-template-columns: 1fr; }
  .audience-card { min-height: 0; padding: 36px 28px; }
  .stat-cards, .team, .testi { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1100px) {
  .btn-glass { display: none; }
}
@media (max-width: 600px) {
  .atouts, .services, .products, .stat-cards, .team, .testi, .steps { grid-template-columns: 1fr; }
  .contact-info-grid, .field-row, .hero-products { grid-template-columns: 1fr; }
  .hero-intro h1 { font-size: 52px; }
  body.page-home .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 48px; }
  .hero { padding: 52px 0 48px; }
  .section { padding: 64px 0; }
  body.page-home .section { padding: 64px 0; }
  .urg-header-text .urg-num { font-size: 30px; }
}
