/* ========================================================================== 
   CLEVOXA — Agence web & Marketing
   Design system — thème clair alterné (inspiré de la structure Monsieur Site Web)
   Palette : magenta #FF297B · noir #0e0e12 · jaune #FACC15 · fonds clairs
   ========================================================================== */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/poppins-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/poppins-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/poppins-latin-700-normal.woff2") format("woff2");
}

:root {
  --pink:      #ff297b;
  --pink-600:  #e01e69;
  --pink-soft: #fff0f6;
  --pink-glow: rgba(255,41,123,0.35);
  --yellow:    #facc15;
  --ink:       #0e0e12;   /* sections foncées */
  --ink-2:     #16161c;
  --ink-card:  #1c1c24;
  --text:      #14141a;   /* texte sur clair */
  --muted:     #5b5b66;
  --muted-2:   #8a8a95;
  --line:      #ececef;
  --bg:        #ffffff;
  --bg-soft:   #f6f6f8;
  --white:     #ffffff;
  --radius:    20px;
  --radius-sm: 14px;
  --maxw:      1280px;
  --head:      "Poppins", ui-sans-serif, system-ui, sans-serif;
  --body:      "Inter", ui-sans-serif, system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px; line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--head); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; }
img { max-width: 100%; display: block; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section-sm { padding: 60px 0; }
.center { text-align: center; }

.accent { color: var(--pink); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--head); font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 18px;
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--pink); border-radius: 2px; }
.eyebrow.c { justify-content: center; }

.h-xl { font-size: clamp(38px, 5.4vw, 60px); }
.h-lg { font-size: clamp(30px, 4vw, 44px); }
.lead { color: var(--muted); font-size: 19px; margin-top: 18px; }
.lead-c { max-width: 720px; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--head); font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 999px; cursor: pointer; border: 2px solid transparent;
  transition: all .22s ease; white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--pink); color: #fff; box-shadow: 0 10px 26px -8px var(--pink-glow); }
.btn-primary:hover { background: var(--pink-600); transform: translateY(-2px); box-shadow: 0 16px 34px -10px var(--pink-glow); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #23232c; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 16px 34px; font-size: 16px; }
/* on dark bg */
.on-dark .btn-outline { color: #fff; border-color: rgba(255,255,255,0.3); }
.on-dark .btn-outline:hover { background: #fff; color: var(--ink); border-color:#fff; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: var(--ink); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .logo { height: 28px; width: auto; display: block; align-self: flex-start; }
.brand .baseline { font-size: 10.5px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: #a7a7b2; margin-top: 8px; padding-left: 2px; white-space: nowrap; }
.brand .baseline a { color: inherit; } .brand .baseline a:hover { color: var(--pink); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-family: var(--head); font-size: 14.5px; color: #d7d7dd; font-weight: 500; transition: color .2s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after { content:""; position:absolute; left:0; right:0; bottom:-9px; height:2px; background: var(--pink); border-radius:2px; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 9px 18px; font-size: 13.5px; gap: 8px; }
.nav-cta .btn svg { width: 15px; height: 15px; }
.menu-toggle { display: none; background: none; border: 0; color: #fff; cursor: pointer; }
.menu-toggle svg { width: 26px; height: 26px; }

/* ---------- Sections theming ---------- */
.dark { background: var(--ink); color: #fff; }
.dark .lead, .dark p.lead { color: #b6b6c0; }
.soft { background: var(--bg-soft); }

/* ---------- Hero ---------- */
.hero { background: #08080b url('/assets/images/hero-bg-1280.webp') center/cover no-repeat; color: #fff; position: relative; overflow: hidden; }
.hero::before { content:""; position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(8,8,11,0.82) 0%, rgba(8,8,11,0.7) 38%, rgba(8,8,11,0.42) 70%, rgba(8,8,11,0.22) 100%),
              linear-gradient(0deg, rgba(8,8,11,0.4), rgba(8,8,11,0.08)),
              radial-gradient(680px circle at 88% 12%, rgba(255,41,123,0.16), transparent 55%); }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding: 90px 0; }
.hero h1 { font-size: clamp(40px, 6vw, 66px); }
.hero h1 .accent { color: var(--pink); }
.hero .sub { color: #c2c2cc; font-size: 20px; margin-top: 24px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 16px 26px; margin-top: 34px; }
.hero-badge { display: flex; align-items: center; gap: 9px; color: #c2c2cc; font-size: 14.5px; }
.hero-badge svg { width: 18px; height: 18px; color: var(--pink); flex-shrink: 0; }

/* Hero visual — dashboard mockup card */
.mock-card {
  position: relative; border-radius: 22px; overflow: hidden;
  background: linear-gradient(160deg, #1a1a22, #101015);
  border: 1px solid #2a2a34; padding: 22px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7);
}
.mock-top { display: flex; gap: 7px; margin-bottom: 20px; }
.mock-top span { width: 11px; height: 11px; border-radius: 50%; background: #34343f; }
.mock-top span:first-child { background: var(--pink); }
.mock-row { height: 12px; border-radius: 6px; background: #26262f; margin: 12px 0; }
.mock-row.s { width: 55%; } .mock-row.m { width: 78%; } .mock-row.l { width: 92%; }
.mock-hl { height: 40px; width: 46%; border-radius: 10px; margin: 22px 0 8px; background: linear-gradient(90deg, var(--pink), rgba(255,41,123,0.35)); }
.mock-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.mock-tile { height: 74px; border-radius: 12px; background: #1e1e27; border: 1px solid #2a2a34; }
.mock-tile.hl { background: linear-gradient(160deg, rgba(255,41,123,0.16), #1a1a22); border-color: rgba(255,41,123,0.4); }
.float-badge { position: absolute; background: #fff; color: var(--ink); border-radius: 14px; padding: 12px 16px; box-shadow: 0 18px 40px -14px rgba(0,0,0,0.55); }
.float-badge .n { font-family: var(--head); font-weight: 700; font-size: 20px; color: var(--pink); }
.float-badge.y .n { color: #d9a800; }
.float-badge .t { font-size: 12px; color: var(--muted); }
.float-badge.a { top: 18px; right: -14px; } .float-badge.b { bottom: 22px; left: -18px; }
.hero-visual-wrap { position: relative; width: 100%; max-width: 360px; margin: 0 auto; }

/* Hero video player */
.video-frame { position: relative; aspect-ratio: 9/16; border-radius: 22px; overflow: hidden; border: 1px solid #2a2a34; cursor: pointer;
  background: radial-gradient(420px circle at 60% 35%, rgba(255,41,123,0.22), transparent 62%), linear-gradient(160deg, #17171f, #0c0c10);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7); }
.video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.video-play { width: 82px; height: 82px; border-radius: 50%; border: 0; cursor: pointer; background: var(--pink); color: #fff;
  position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%, -50%); display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 40px -8px var(--pink-glow); transition: transform .2s, opacity .2s; }
.video-play:hover { transform: translate(-50%, -50%) scale(1.07); }
.video-play svg { width: 32px; height: 32px; margin-left: 4px; }
.video-cap { position: absolute; z-index: 2; bottom: 20px; left: 0; right: 0; text-align: center; font-family: var(--head); font-weight: 500; font-size: 13px; letter-spacing: 0.06em; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.8); transition: opacity .2s; }
.video-frame.playing { cursor: default; }
.video-frame.playing .video-play,
.video-frame.playing .video-cap { opacity: 0; pointer-events: none; }

/* ---------- Two dark cards (agence section) ---------- */
.mini-cards { display: flex; flex-direction: column; gap: 20px; }
.mini-card { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 30px 32px; display: flex; gap: 20px; align-items: center; }
.mini-card .ico { width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(255,41,123,0.14); border: 1px solid rgba(255,41,123,0.32); }
.mini-card .ico svg { width: 26px; height: 26px; color: var(--pink); }
.mini-card p { font-family: var(--head); font-weight: 500; font-size: 18px; line-height: 1.4; }
.mini-card p b { color: var(--yellow); font-weight: 700; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.btn-row { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

/* ---------- Portfolio mockups row ---------- */
.showcase { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
.shot { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: var(--ink); aspect-ratio: 3/4; position: relative; transition: transform .3s, box-shadow .3s; }
.shot:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -22px rgba(0,0,0,0.4); }
.shot .head { height: 34px; background: #191921; display: flex; align-items: center; gap: 5px; padding: 0 12px; }
.shot .head span { width: 7px; height: 7px; border-radius: 50%; background: #34343f; }
.shot .body { position: absolute; inset: 34px 0 0; }
.shot .name { position: absolute; left: 14px; bottom: 14px; font-family: var(--head); font-weight: 700; color: #fff; font-size: 16px; z-index: 2; }
.shot .cat { position: absolute; left: 14px; top: 46px; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--pink); font-weight: 600; z-index: 2; }

/* ---------- Confiez-nous (dark split) ---------- */
.feature-visual { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; border: 1px solid #2a2a34; position: relative;
  background: radial-gradient(360px circle at 30% 25%, rgba(255,41,123,0.28), transparent 60%), linear-gradient(160deg,#1a1a22,#101015); }
.feature-visual .ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.08); }
.feature-visual .ring.r1 { inset: 18%; } .feature-visual .ring.r2 { inset: 30%; } .feature-visual .ring.r3 { inset: 42%; }
.feature-visual .dot { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 24px var(--pink); top: 30%; left: 62%; }
.feature-visual .dot.y { background: var(--yellow); box-shadow: 0 0 24px var(--yellow); top: 64%; left: 34%; }
.feature-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.check-list { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.check-list li svg { width: 22px; height: 22px; color: var(--pink); flex-shrink: 0; margin-top: 2px; }

/* ---------- Accent (magenta) section — "raisons" ---------- */
.accent-band { background: linear-gradient(135deg, #ff2f80, #d4155e); color: #fff; }
.accent-band .eyebrow { color: #fff; } .accent-band .eyebrow::before { background: #fff; }
.reasons { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 50px; }
.reason { background: #fff; border-radius: var(--radius); padding: 30px 22px; text-align: center; transition: transform .3s; }
.reason:hover { transform: translateY(-6px); }
.reason .ico { width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: var(--pink-soft); }
.reason .ico svg { width: 26px; height: 26px; color: var(--pink); }
.reason h3 { font-size: 18px; margin-bottom: 10px; color: var(--text); }
.reason p { color: var(--muted); font-size: 14px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.stat { text-align: center; }
.stat .num { font-family: var(--head); font-weight: 700; font-size: clamp(34px,4vw,48px); color: var(--pink); }
.dark .stat .num { color: #fff; }
.stat .lbl { color: var(--muted); font-size: 14px; margin-top: 6px; }
.dark .stat .lbl { color: #b6b6c0; }

/* ---------- Testimonials (dark) ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 44px; }
.testi { position: relative; background: var(--ink-card); border: 1px solid #2a2a34; border-radius: var(--radius); padding: 28px; }
.testi .g-badge { position: absolute; top: 22px; right: 22px; width: 22px; height: 22px; opacity: .95; }
.testi .g-badge svg { width: 22px; height: 22px; display: block; }
.testi .stars { color: var(--yellow); letter-spacing: 2px; margin-bottom: 14px; }
.testi p { color: #d7d7dd; font-size: 15.5px; }
.testi .who { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.testi .avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: linear-gradient(135deg,var(--pink),#7a1440); display: flex; align-items: center; justify-content: center; font-family: var(--head); font-weight: 700; font-size: 15px; color: #fff; }
.testi .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testi .who strong { display: block; font-size: 15px; color:#fff; } .testi .who span { font-size: 13px; color: #8a8a95; }

/* ---------- FAQ (barres) ---------- */
.faq { max-width: 860px; margin: 44px auto 0; }
.faq-item { margin-bottom: 12px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: var(--ink); color: #fff; border: 0; cursor: pointer;
  font-family: var(--head); font-weight: 600; font-size: 16px; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; transition: background .2s; }
.faq-item.open .faq-q { color: var(--pink); }
.faq-q .plus { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after { content:""; position:absolute; background: var(--pink); border-radius:2px; }
.faq-q .plus::before { top:50%; left:0; right:0; height:2px; transform: translateY(-50%); }
.faq-q .plus::after { left:50%; top:0; bottom:0; width:2px; transform: translateX(-50%); transition: opacity .3s; }
.faq-item.open .faq-q .plus::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; background: #fff; transition: max-height .35s ease; }
.faq-a p { padding: 20px 24px; color: var(--muted); font-size: 15.5px; }

/* ---------- Budget banner ---------- */
.banner { border-radius: 24px; overflow: hidden; position: relative; padding: 66px 56px;
  background: radial-gradient(500px circle at 85% 20%, rgba(255,41,123,0.16), transparent 60%), var(--bg-soft); border: 1px solid var(--line); }
.banner h2 { font-size: clamp(28px, 3.6vw, 40px); max-width: 560px; }
.banner p { color: var(--muted); font-size: 18px; margin: 16px 0 28px; max-width: 460px; }

/* ---------- CTA band (dark) ---------- */
.cta-band { background: var(--ink); color: #fff; border-radius: 24px; padding: 64px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(600px circle at 50% -30%, rgba(255,41,123,0.3), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(28px,3.6vw,42px); } .cta-band p { color:#b6b6c0; font-size: 18px; margin: 16px auto 30px; max-width: 540px; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--ink); color: #fff; text-align: center; padding: 78px 0; position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(600px circle at 50% 0%, rgba(255,41,123,0.2), transparent 55%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(36px,5vw,56px); }
.page-hero p { color: #b6b6c0; font-size: 19px; max-width: 620px; margin: 18px auto 0; }

/* ---------- Cards grid (services) ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.steps-grid { grid-template-columns: repeat(4,1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; transition: transform .3s, box-shadow .3s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -26px rgba(0,0,0,0.28); }
.card .ico { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: var(--pink-soft); margin-bottom: 22px; }
.card .ico svg { width: 25px; height: 25px; color: var(--pink); }
.card h3 { font-size: 21px; margin-bottom: 11px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card ul { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.card ul li { color: var(--muted); font-size: 14.5px; display: flex; gap: 9px; align-items: flex-start; }
.card ul li::before { content:""; width: 16px; height: 16px; margin-top: 4px; flex-shrink: 0; background: var(--pink);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M16.7 5.3a1 1 0 0 1 0 1.4l-7.5 7.5a1 1 0 0 1-1.4 0L3.3 10.2a1 1 0 1 1 1.4-1.4l3 3 6.8-6.8a1 1 0 0 1 1.4 0z'/%3E%3C/svg%3E") center/contain no-repeat; }

/* ---------- Portfolio (realisations) ---------- */
.projects { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.project { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; transition: transform .3s, box-shadow .3s; }
.project:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -26px rgba(0,0,0,0.28); }
.project .thumb { aspect-ratio: 16/11; position: relative; background: var(--bg-soft); overflow: hidden; }
.project .thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.project .thumb .label { position: absolute; left: 18px; bottom: 16px; font-family: var(--head); font-weight: 700; font-size: 22px; color: #fff; z-index: 2; }
.project .meta { padding: 22px; }
.project .meta .cat { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--pink); font-weight: 600; }
.project .meta h3 { font-size: 18px; margin: 8px 0; }
.project .meta p { color: var(--muted); font-size: 14px; }
.project .meta .res { margin-top: 14px; display: inline-flex; gap: 8px; align-items: center; font-size: 13px; color: #c99000; font-weight: 700; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
.chip { font-family: var(--head); font-size: 14px; color: #fff; border: 1px solid rgba(255,255,255,0.25); padding: 9px 18px; border-radius: 999px; }
.chip.on { color: var(--ink); background: #fff; border-color: #fff; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
.contact-info .item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info .item .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--pink-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info .item .ico svg { width: 20px; height: 20px; color: var(--pink); }
.contact-info .item .contact-heading { font-size: 16px; margin-bottom: 3px; }
.contact-info .item p, .contact-info .item a { color: var(--muted); font-size: 15px; }
.contact-info .item a:hover { color: var(--pink); }
.form { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 38px; box-shadow: 0 30px 60px -40px rgba(0,0,0,0.35); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; font-family: var(--head); }
.field input, .field textarea, .field select { width: 100%; background: var(--bg-soft); border: 1.5px solid var(--line); border-radius: 12px; padding: 14px 16px; color: var(--text); font-family: var(--body); font-size: 15px; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,41,123,0.12); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #fff; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand .logo { height: 28px; width: auto; display: block; align-self: flex-start; }
.footer-brand .baseline { font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase; color: #8a8a95; margin-top: 8px; padding-left: 2px; white-space: nowrap; }
.footer-brand p { color: #a0a0aa; font-size: 14.5px; margin-top: 18px; max-width: 300px; }
.footer-col .footer-heading { font-family: var(--head); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: #8a8a95; margin-bottom: 18px; }
.footer-col a { display: block; color: #c2c2cc; font-size: 14.5px; margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); color: #8a8a95; font-size: 13.5px; flex-wrap: wrap; }
.footer-bottom .legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom .legal-links a { color: #a0a0aa; font-size: 13.5px; transition: color .2s; }
.footer-bottom .legal-links a:hover { color: var(--pink); }
.footer-bottom .socials { display: flex; gap: 12px; }
.footer-bottom .socials a { width: 36px; height: 36px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: #c2c2cc; transition: all .2s; }
.footer-bottom .socials a:hover { color: #fff; border-color: var(--pink); background: rgba(255,41,123,0.14); }
.footer-bottom .socials svg { width: 17px; height: 17px; }

/* ---------- Legal / prose pages ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose .updated { color: var(--muted-2); font-size: 14px; margin-bottom: 8px; }
.toc { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 16px; padding: 26px 30px; margin: 0 0 44px; }
.toc h2 { font-family: var(--head); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); margin: 0 0 16px; }
.toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 32px; }
.toc li { margin-bottom: 9px; break-inside: avoid; }
.toc a { color: var(--muted); font-size: 14.5px; transition: color .2s; }
.toc a:hover { color: var(--pink); }
.prose h2 { font-size: 22px; margin: 40px 0 12px; scroll-margin-top: 96px; }
.prose h3 { font-size: 17px; margin: 22px 0 8px; color: var(--text); }
.prose p { color: var(--muted); margin-bottom: 14px; }
.prose ul { margin: 0 0 16px 20px; color: var(--muted); }
.prose ul li { margin-bottom: 8px; }
.prose a { color: var(--pink); }
.prose strong { color: var(--text); font-weight: 600; }
@media (max-width: 680px) { .toc ol { columns: 1; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

/* Tablette paysage & petits écrans (≤ 1000px) */
@media (max-width: 1000px) {
  .section { padding: 80px 0; }
  .hero .container .hero-grid, .hero-grid { padding: 72px 0; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .reasons { grid-template-columns: repeat(3,1fr); }
  .showcase, .steps-grid { grid-template-columns: repeat(2,1fr); }
  .grid-3, .projects, .testi-grid, .stats { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .float-badge.a { right: 0; } .float-badge.b { left: 0; }
  /* le visuel passe sous le texte dans les sections dédiées */
  .hero-visual-wrap { max-width: 360px; margin: 0 auto; width: 100%; }
  .feature-visual { max-width: 560px; margin: 0 auto; }
}

/* Bascule du menu en hamburger (≤ 1024px) */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open { display: flex; position: absolute; top: 78px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--ink-2); padding: 8px 24px 18px; z-index: 60; border-top: 1px solid rgba(255,255,255,0.06); }
  .nav-links.open a { padding: 14px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links.open a.active::after { display: none; }
  .nav-cta .btn-appt-text { display: none; }
}

/* Tablette portrait (≤ 820px) */
@media (max-width: 820px) {
  .reasons { grid-template-columns: repeat(2,1fr); }
  .h-xl { font-size: clamp(34px, 6vw, 48px); }
  .hero h1 { font-size: clamp(34px, 7vw, 52px); }
}

/* Mobile (≤ 680px) */
@media (max-width: 680px) {
  body { font-size: 16px; }
  .hero { background-image: url('/assets/images/hero-bg-768.webp'); }
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .hero-grid { padding: 56px 0; gap: 36px; }
  .nav { height: 68px; }
  .nav-links.open { top: 68px; padding: 8px 20px 18px; }
  .nav-cta .btn { padding: 9px 12px; }
  .reasons, .showcase, .steps-grid, .grid-3, .grid-2, .projects, .testi-grid, .stats, .field-row, .footer-grid { grid-template-columns: 1fr; }
  .stats { gap: 14px; }
  .banner, .cta-band { padding: 40px 24px; }
  .quote-block { padding: 32px 24px; }
  .form { padding: 24px; }
  .testi { padding: 24px; }
  .hero-cta, .btn-row { width: 100%; }
  .hero-cta .btn, .btn-row .btn { flex: 1 1 auto; }
  .float-badge { padding: 10px 13px; }
  .float-badge .n { font-size: 17px; }
  .brand .baseline { letter-spacing: 0.2em; }
  .video-play { width: 66px; height: 66px; }
  .video-play svg { width: 26px; height: 26px; }
  .page-hero { padding: 60px 0; }
}

@media (min-width: 1600px) {
  .hero { background-image: url('/assets/images/hero-bg.jpg'); }
}

/* Très petits mobiles (≤ 400px) */
@media (max-width: 400px) {
  .brand .logo { height: 24px; }
  .brand .baseline { font-size: 9.5px; letter-spacing: 0.16em; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}
