/* ================================================================
   CANACHINEFOOD — Feuille de styles principale
   Style aligné avec canachine-website : feeling premium, clean
   Palette hybride : rouge CanaChine + vert food + terracotta CTA
   ================================================================ */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

/* ─── VARIABLES ─── */
:root {
  /* Neutres */
  --bg: #FAFAF8;
  --white: #FFFFFF;
  --ink: #111010;
  --muted: #6B6866;
  --border: #E8E5DF;
  --surface: #F3F1ED;

  /* Marque CanaChine (conservé) */
  --red: #C8271F;
  --red-dark: #A81F18;
  --red-soft: #FBF0EF;
  --navy: #0E2340;
  --navy-light: #1A3358;

  /* Nouveau food */
  --green: #3D6B47;
  --green-dark: #2D5235;
  --green-soft: #EEF4EF;
  --terracotta: #D4733E;
  --terracotta-dark: #B85F2D;
  --terracotta-soft: #FBF1EA;

  --radius: 12px;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* ─── TOPBAR (navy) ─── */
.topbar {
  background: var(--navy);
  padding: 0.55rem 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.topbar a, .topbar span {
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.topbar a:hover { color: #fff; }

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo CanaChineFood (texte stylisé) */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 2.6rem;
  height: 2.6rem;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem;
  font-style: italic;
  box-shadow: 0 4px 12px rgba(61,107,71,0.25);
}
.nav-logo-texts {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}
.nav-logo-name {
  font-family: 'Instrument Serif', serif;
  font-size: 1.45rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.nav-logo-name em {
  font-style: italic;
  color: var(--green);
}
.nav-logo-tag {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-logo-tag b {
  color: var(--red);
  font-weight: 700;
}

/* Liens nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
  background: var(--surface);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Boutons header */
.btn-cta {
  background: var(--terracotta);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.55rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--terracotta-dark); transform: translateY(-1px); }

.btn-cta-green {
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.55rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-cta-green:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--ink); }

.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--ink);
}

/* ─── BOUTONS GÉNÉRIQUES ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 9px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 9px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.88rem 1.8rem;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-secondary:hover { border-color: var(--ink); transform: translateY(-2px); }

/* ─── HERO ─── */
.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 3.5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  min-height: auto;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.38rem 0.95rem;
  border-radius: 100px;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s both;
}
.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}
.hero-h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-h1 em { font-style: italic; color: var(--terracotta); }
.hero-h1 .green { font-style: italic; color: var(--green); }
.hero-p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 470px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s both;
}
.hero-bullets {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s both;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
}
.hero-bullets li::before {
  content: '✓';
  width: 1.4rem;
  height: 1.4rem;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s both;
}

/* Hero droit : mosaïque visuelle */
.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s both;
}
.hero-img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-img-main:hover img { transform: scale(1.03); }
.hero-img-sub {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.hero-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-img-sub:hover img { transform: scale(1.04); }
.hero-stat-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hsc-n {
  font-family: 'Instrument Serif', serif;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hsc-n span { color: var(--terracotta); font-style: italic; }
.hsc-l {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── BANDEAU POWERED BY ─── */
.powered-by {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 2rem;
  text-align: center;
}
.powered-by-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.powered-by-inner strong {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--red);
  font-weight: 400;
}
.powered-by-inner a {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.powered-by-inner a:hover { color: var(--ink); }

/* ─── SECTIONS ─── */
section { padding: 4.5rem 2rem; }
.sec-wrap { max-width: 1160px; margin: 0 auto; }
.sec-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.sec-label.terracotta { color: var(--terracotta); }
.sec-label.red { color: var(--red); }
.sec-label::before {
  content: '';
  display: block;
  width: 1.8rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.sec-h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.sec-h2 em { font-style: italic; color: var(--green); }
.sec-h2 em.terracotta { color: var(--terracotta); }
.sec-h2 em.red { color: var(--red); }
.sec-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 580px;
  margin-top: 1rem;
}

/* ─── SERVICES (3 cards : emballages, vaisselle, surgelés) ─── */
.svc-s { background: var(--white); }
.svc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 2.5rem;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.svc-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.svc-img-wrap { overflow: hidden; }
.svc-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.svc-card:hover .svc-img { transform: scale(1.04); }
.svc-body { padding: 1.6rem; }
.svc-num {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.svc-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.svc-text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}
.svc-features {
  list-style: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.svc-features li {
  font-size: 0.78rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.svc-features li::before {
  content: '•';
  color: var(--green);
  font-weight: 700;
}

/* ─── SECTION PERSONNALISATION (vedette) ─── */
.perso-s {
  background: var(--white);
  padding: 5rem 2rem;
  position: relative;
}
.perso-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem;
}
.perso-left h2 em { color: var(--terracotta); }
.perso-tagline {
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.7;
  margin: 1.5rem 0 2.5rem;
}
.perso-tagline strong {
  background: var(--terracotta-soft);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  color: var(--terracotta-dark);
  font-weight: 700;
}
.perso-process {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.perso-step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.perso-step-num {
  width: 2.2rem;
  height: 2.2rem;
  background: var(--terracotta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}
.perso-step-text strong {
  font-size: 0.92rem;
  display: block;
  margin-bottom: 0.2rem;
}
.perso-step-text p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}
.perso-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.perso-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.perso-img.tall { grid-row: span 2; }
.perso-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.perso-img:hover img { transform: scale(1.04); }

/* ═══════════════════════════════════════════════════
   PERSO V3 — Sobre B2B : 3 cards + process bar
   ═══════════════════════════════════════════════════ */

/* 3 cards de categories */
.perso-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.perso-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.perso-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--terracotta);
}
.perso-card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.perso-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.perso-card:hover .perso-card-img img { transform: scale(1.04); }
.perso-card-body {
  padding: 1.5rem 1.5rem 1.6rem;
}
.perso-card-cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}
.perso-card-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.perso-card-text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Process bar sobre */
.perso-process-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin: 3.5rem auto 0;
  max-width: 1100px;
  padding: 1.6rem 1.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.perso-pb-step {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-start;
}
.perso-pb-n {
  font-family: 'Instrument Serif', serif;
  font-size: 1.6rem;
  color: var(--terracotta);
  line-height: 1;
  font-style: italic;
}
.perso-pb-t {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.perso-pb-sep {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
  margin: 0 1.2rem;
}

/* CTA finale */
.perso-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.perso-cta-meta {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .perso-cards { grid-template-columns: 1fr 1fr; }
  .perso-cards .perso-card:nth-child(3) { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
  .perso-process-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .perso-pb-sep { display: none; }
}
@media (max-width: 640px) {
  .perso-cards { grid-template-columns: 1fr; }
  .perso-cards .perso-card:nth-child(3) { max-width: 100%; }
  .perso-process-bar { grid-template-columns: 1fr; gap: 1rem; padding: 1.2rem; }
}

/* ═══════════════════════════════════════════════════
   PERSO V2 — Spotlight + Gallery + Flow (LEGACY, conservé inactif)
   ═══════════════════════════════════════════════════ */

/* Intro centree */
.perso-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.perso-intro .sec-label { justify-content: center; }
.perso-intro .sec-desc { margin: 1rem auto 0; }

/* SPOTLIGHT : visuel hero avec animation */
.perso-spotlight {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  box-shadow: 0 30px 80px -20px rgba(212, 115, 62, 0.35),
              0 10px 30px -10px rgba(14, 35, 64, 0.2);
  isolation: isolate;
}
.perso-spotlight img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.perso-spotlight:hover img { transform: scale(1.05); }

.perso-spotlight-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0) 0%, rgba(14, 35, 64, 0.55) 100%),
    linear-gradient(135deg, rgba(212, 115, 62, 0.18) 0%, transparent 50%);
  z-index: 2;
}

.perso-spotlight-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  animation: persoShine 6s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}
@keyframes persoShine {
  0%, 30% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

/* Tag "Votre logo ici" sur le spotlight */
.perso-spotlight-tag {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.96);
  color: var(--terracotta-dark);
  padding: 0.9rem 1.6rem;
  border-radius: 100px;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 4;
  box-shadow: 0 8px 30px rgba(212, 115, 62, 0.35);
  animation: tagFloat 4s ease-in-out infinite;
}
@keyframes tagFloat {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 6px)); }
}
.ps-tag-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--terracotta);
  position: relative;
  flex-shrink: 0;
}
.ps-tag-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--terracotta);
  animation: tagPulse 1.8s ease-out infinite;
}
@keyframes tagPulse {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Caption en bas du spotlight */
.perso-spotlight-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 4;
  color: #fff;
}
.ps-cap-label {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}
.ps-cap-name {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* GALERIE 8 exemples */
.perso-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2.5rem auto 0;
  max-width: 1160px;
}
.perso-gal {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  cursor: default;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
}
.perso-gal:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.25);
  z-index: 2;
}
.perso-gal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.perso-gal:hover img { transform: scale(1.08); }
.perso-gal-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.2rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transform: translateY(20%);
  opacity: 0.85;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.perso-gal:hover .perso-gal-overlay {
  transform: translateY(0);
  opacity: 1;
}
.perso-gal-type {
  font-family: 'Instrument Serif', serif;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.perso-gal-detail {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

/* Process inline minimaliste */
.perso-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin: 3rem auto 1.5rem;
  max-width: 1000px;
  padding: 1.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(212, 115, 62, 0.18);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.perso-flow-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.perso-flow-num {
  width: 1.8rem;
  height: 1.8rem;
  background: var(--terracotta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-size: 1rem;
  flex-shrink: 0;
}
.perso-flow-arrow {
  color: var(--terracotta);
  font-weight: 700;
  font-size: 1.2rem;
  opacity: 0.5;
}

/* CTA finale */
.perso-cta {
  text-align: center;
  margin-top: 2rem;
}
.perso-cta-fineprint {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.perso-cta-fineprint strong { color: var(--terracotta-dark); }

/* Responsive */
@media (max-width: 1024px) {
  .perso-gallery { grid-template-columns: repeat(2, 1fr); }
  .perso-spotlight { aspect-ratio: 16 / 9; }
}
@media (max-width: 640px) {
  .perso-gallery { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .perso-spotlight { aspect-ratio: 4 / 3; border-radius: 12px; }
  .perso-spotlight-tag { font-size: 1.1rem; padding: 0.6rem 1.1rem; }
  .perso-flow { padding: 1rem; gap: 0.6rem; }
  .perso-flow-arrow { display: none; }
  .perso-flow-step { font-size: 0.78rem; }
}

/* Bar des elements personnalisables */
.perso-what {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
  margin: 2.5rem 0 1rem;
  padding: 1.4rem 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(212, 115, 62, 0.15);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.perso-what-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  transition: transform 0.2s;
}
.perso-what-item:hover { transform: translateY(-3px); }
.perso-what-ico {
  width: 2.6rem;
  height: 2.6rem;
  background: var(--terracotta-soft);
  color: var(--terracotta);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.perso-what-item span {
  font-size: 0.72rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.3;
}

/* Titre Comment ca marche dans perso-left */
.perso-h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

/* Mini-stats personnalisation */
.perso-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1.8rem;
  padding: 1.4rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.perso-stat {
  text-align: center;
}
.perso-stat-n {
  font-family: 'Instrument Serif', serif;
  font-size: 1.8rem;
  color: var(--terracotta-dark);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.perso-stat-n span {
  font-size: 1rem;
  color: var(--terracotta);
  margin-left: 0.1rem;
}
.perso-stat-l {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .perso-what { grid-template-columns: repeat(3, 1fr); }
  .perso-stats { grid-template-columns: 1fr; gap: 1rem; padding: 1rem; }
  .perso-stat { display: flex; align-items: center; gap: 0.8rem; text-align: left; }
  .perso-stat-n { margin-bottom: 0; }
}

/* ─── POURQUOI (3 colonnes) ─── */
.why-s { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.why-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  border-color: var(--green);
}
.why-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.3rem;
}
.why-icon.green { background: var(--green-soft); color: var(--green); }
.why-icon.terracotta { background: var(--terracotta-soft); color: var(--terracotta); }
.why-icon.red { background: var(--red-soft); color: var(--red); }
.why-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
  line-height: 1.2;
}
.why-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── PROCESSUS (étapes simples) ─── */
.proc-s { background: var(--navy); color: #fff; }
.proc-s .sec-label { color: rgba(255,255,255,0.5); }
.proc-s .sec-label::before { background: rgba(255,255,255,0.3); }
.proc-s .sec-h2 { color: #fff; }
.proc-s .sec-h2 em { color: var(--terracotta); }
.proc-s .sec-desc { color: rgba(255,255,255,0.55); }
.proc-header { margin-bottom: 3.5rem; }
.proc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.proc-step {
  background: var(--navy);
  padding: 2.2rem 1.6rem;
  transition: background 0.25s;
}
.proc-step:hover { background: var(--navy-light); }
.proc-step-num {
  font-family: 'Instrument Serif', serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(255,255,255,0.1);
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.proc-step:hover .proc-step-num { color: var(--terracotta); opacity: 0.7; }
.proc-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.proc-step-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ─── CTA BANDE FINALE ─── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 115, 62, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 2; }
.cb-h em { color: var(--terracotta); opacity: 1; font-style: italic; }
.btn-white { color: var(--navy); }
.btn-white:hover { color: var(--navy); }
.cta-band-inner { max-width: 720px; margin: 0 auto; }
.cb-h {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cb-h em { font-style: italic; opacity: 0.88; }
.cb-p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cb-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--terracotta-dark);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.95rem 2.2rem;
  border-radius: 9px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-white:hover { opacity: 0.93; transform: translateY(-2px); }
.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.95rem 2.2rem;
  border-radius: 9px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.55);
  transition: background 0.2s, border-color 0.2s;
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* ─── FORMULAIRES ─── */
.form-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.form-h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}
.form-h1 em { font-style: italic; color: var(--green); }
.form-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.form-group { display: grid; grid-template-columns: 1fr 1fr; }
.form-field {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 1.1rem 1.4rem;
  transition: background 0.2s;
}
.form-field:focus-within { background: #FDFCFB; }
.form-field.full { grid-column: 1 / -1; border-right: none; }
.form-field.noborder-bottom { border-bottom: none; }
.form-field:nth-child(even):not(.full) { border-right: none; }
.form-field label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 0.35rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #C5C1BB; }
.form-field select option { background: white; }

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.4rem;
}
.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  text-transform: none;
  letter-spacing: normal;
  cursor: pointer;
  margin: 0;
}
.checkbox-grid input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--green);
  cursor: pointer;
}

.form-footer {
  padding: 1.2rem 1.4rem;
  background: var(--surface);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.form-note { font-size: 0.78rem; color: var(--muted); }
.btn-send {
  background: var(--green);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-send:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-send:disabled { opacity: 0.6; cursor: not-allowed; }

.form-msg {
  margin-top: 1.2rem;
  padding: 1rem 1.3rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
}
.form-msg.success { background: #ECFDF5; border: 1px solid #6EE7B7; color: #065F46; display: flex; align-items: center; gap: 0.6rem; }
.form-msg.error { background: #FEF2F2; border: 1px solid #FCA5A5; color: #991B1B; display: flex; align-items: center; gap: 0.6rem; }

/* ─── CONTACT (3 options côte à côte) ─── */
.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 4rem;
}
.contact-opt {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.contact-opt:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.contact-opt-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}
.contact-opt-icon.green { background: var(--green-soft); color: var(--green); }
.contact-opt-icon.wa { background: #DCFCE7; color: #16a34a; }
.contact-opt-icon.email { background: var(--terracotta-soft); color: var(--terracotta); }
.contact-opt h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.contact-opt p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}
.contact-opt-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
}

/* ─── MERCI ─── */
.merci-card {
  max-width: 600px;
  margin: 5rem auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 3.5rem 2.5rem;
  text-align: center;
}
.merci-ico {
  width: 4.5rem;
  height: 4.5rem;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
}
.merci-card h1 {
  font-family: 'Instrument Serif', serif;
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}
.merci-card h1 em { font-style: italic; color: var(--green); }
.merci-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.merci-actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
.footer {
  background: var(--ink);
  padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ft-brand {}
.ft-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.ft-logo-mark {
  width: 2.4rem;
  height: 2.4rem;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Instrument Serif', serif;
  font-size: 1.2rem;
  font-style: italic;
}
.ft-brand-name {
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
}
.ft-brand-name em { font-style: italic; color: var(--green); opacity: 0.95; }
.ft-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
  max-width: 280px;
}
.ft-cana {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
  padding: 0.55rem 0.9rem;
  background: rgba(200,39,31,0.12);
  border: 1px solid rgba(200,39,31,0.3);
  border-radius: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.ft-cana:hover {
  background: rgba(200,39,31,0.2);
  color: #fff;
}
.ft-cana b {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--red);
  font-weight: 400;
  font-size: 0.95rem;
}
.ft-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.28);
  margin-bottom: 1.2rem;
}
.ft-links { display: flex; flex-direction: column; gap: 0.7rem; }
.ft-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  transition: color 0.2s;
}
.ft-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.fb-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ─── WHATSAPP FLOTTANT ─── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}
.wa-btn {
  width: 3.6rem;
  height: 3.6rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s;
  text-decoration: none;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-btn:hover { transform: scale(1.08); animation: none; }
.wa-btn svg { width: 1.8rem; height: 1.8rem; fill: #fff; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ─── REVEAL ─── */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.rv.visible { opacity: 1; transform: none; }
.rv.d1 { transition-delay: 0.1s; }
.rv.d2 { transition-delay: 0.2s; }
.rv.d3 { transition-delay: 0.3s; }
.rv.d4 { transition-delay: 0.4s; }

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

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}
.mobile-menu.open { display: flex; }
.mobile-menu-inner {
  background: var(--white);
  width: 290px;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  animation: slideMenuIn 0.25s ease-out;
}
@keyframes slideMenuIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink);
  align-self: flex-end;
  padding: 0.3rem 0.6rem;
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
}
.mobile-menu-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-nav a:hover {
  background: var(--surface);
  color: var(--ink);
}
.mobile-menu-cta { margin-top: auto; padding-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 3rem 1.5rem;
  }
  .hero-right { display: none; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
  .proc-steps { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .svc-header { grid-template-columns: 1fr; }
  .perso-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-options { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .topbar { gap: 1.2rem; padding: 0.55rem 1rem; }
  section { padding: 4rem 1.2rem; }
  .svc-grid, .proc-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-group { grid-template-columns: 1fr; }
  .form-field:nth-child(even):not(.full) { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .nav-logo-name { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .hero { padding: 2rem 1rem; }
  .nav-inner { padding: 0 1rem; height: 60px; }
  .nav-logo-mark { width: 2.2rem; height: 2.2rem; font-size: 1.2rem; }
  .nav-logo-tag { display: none; }
  section { padding: 3rem 1rem; }
  .wa-float { bottom: 1rem; right: 1rem; }
  .wa-btn { width: 3rem; height: 3rem; }
  .wa-btn svg { width: 1.4rem; height: 1.4rem; }
  .merci-card { margin: 2rem auto; padding: 2.5rem 1.5rem; }
}
