/* =========================================================
   Digital Food — design tokens
========================================================= */
:root{
  --navy: #12162c;
  --navy-2: #1d2348;
  --orange: #FF4A1E;
  --orange-2: #FF7A45;
  --orange-dark: #D9350A;
  --cream: #FFF6EC;
  --cream-2: #FFECD9;
  --white: #FFFFFF;
  --ink: #181B2E;
  --muted: #635F72;
  --line: #EEE2D3;
  --success: #1F8A5C;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;

  --shadow-sm: 0 4px 14px rgba(23, 16, 8, 0.06);
  --shadow-md: 0 14px 40px rgba(23, 16, 8, 0.10);
  --shadow-lg: 0 24px 60px rgba(18, 15, 8, 0.16);

  --container: 1180px;
}

/* =========================================================
   Reset
========================================================= */
*, *::before, *::after{ box-sizing: border-box; }
/* NB : pas d'overflow-x sur <html> -> casserait le header position:sticky.
   On bloque le scroll horizontal via body + clip par section (sticky-safe). */
html{ scroll-behavior: auto; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
/* empeche le debordement horizontal : les enfants de grilles/flex peuvent
   retrecir sous leur contenu (min-width:auto par defaut = source de scroll) */
.hero-inner > *, .contact-inner > *, .virtual-inner > *,
.form-grid-2 > *, .stats-grid > *, .pricing-grid > *{ min-width: 0; }
/* garde-fou : ni une section ni le footer ne peuvent generer de scroll
   horizontal. clip (et pas hidden sur <html>) preserve le header sticky. */
section, .site-footer{ overflow-x: clip; }
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4{ font-family: var(--font-display); color: var(--navy); margin: 0; line-height: 1.08; }
p{ margin: 0; }
button{ font-family: inherit; cursor: pointer; }
input, select, textarea{ font-family: inherit; }

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

.skip-link{
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff; padding: 12px 20px; z-index: 999; border-radius: 0 0 10px 0;
}
.skip-link:focus{ left: 0; }

/* =========================================================
   Buttons
========================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(217, 53, 10, 0.28);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px rgba(217, 53, 10, 0.38); }
.btn-ghost{
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-ghost:hover{ background: var(--navy); color: #fff; }
.btn-outline{
  background: transparent;
  border-color: var(--orange);
  color: var(--orange-dark);
}
.btn-outline:hover{ background: var(--orange); color: #fff; }
.btn-lg{ padding: 18px 34px; font-size: 1.05rem; }
.btn-sm{ padding: 10px 18px; font-size: 0.85rem; }
.btn-block{ width: 100%; }
.btn-header{ padding: 11px 22px; font-size: 0.9rem; }

/* =========================================================
   Header
========================================================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 246, 236, 0.82);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled{ box-shadow: 0 6px 24px rgba(23,16,8,0.07); }

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo-link{ display: flex; align-items: center; gap: 10px; }
.logo-img{ border-radius: 8px; }
.logo-text{ font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; color: var(--navy); }
.logo-text strong{ color: var(--orange-dark); font-weight: 800; }

.main-nav{ display: flex; gap: 34px; }
.main-nav a{
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after{
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--orange);
  transition: width .22s ease;
}
.main-nav a:hover::after{ width: 100%; }

.header-actions{ display: flex; align-items: center; gap: 14px; }

.burger{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: transparent;
  border: none;
  border-radius: 10px;
}
.burger span{ width: 22px; height: 2px; background: var(--navy); margin: 0 auto; transition: transform .25s ease, opacity .25s ease; }
.burger.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger.is-active span:nth-child(2){ opacity: 0; }
.burger.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-nav{
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 24px 22px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a{ padding: 12px 4px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav .btn{ margin-top: 12px; }
.mobile-nav.is-open{ display: flex; }

@media (max-width: 900px){
  .main-nav{ display: none; }
  .btn-header{ display: none; }
  .burger{ display: flex; }
}

/* =========================================================
   Reveal animation
========================================================= */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* =========================================================
   Section basics
========================================================= */
section{ padding: 80px 0; position: relative; }
.eyebrow{
  display: inline-block;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: var(--cream-2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow--dark{ background: rgba(255,255,255,0.12); color: var(--orange-2); }

.section-head{ max-width: 680px; margin: 0 0 44px; }
.section-head h2{ font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.section-lead{ color: var(--muted); font-size: 1.08rem; line-height: 1.6; margin-top: 14px; }

/* =========================================================
   Hero
========================================================= */
.hero{
  padding: 48px 0 64px;
  overflow: hidden;
}
.hero-blob{
  position: absolute;
  top: -180px; right: -220px;
  width: 620px; height: 620px;
  background: radial-gradient(circle at 30% 30%, var(--orange-2), transparent 70%);
  opacity: .35;
  filter: blur(10px);
  z-index: 0;
  border-radius: 50%;
}
.hero-inner{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.eyebrow{ }
.hero h1{
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.text-accent{ color: var(--orange-dark); }
.hero-sub{
  margin-top: 22px;
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 560px;
}
.hero-ctas{ display: flex; gap: 16px; flex-wrap: wrap; margin-top: 34px; }
.hero-reassurance{
  margin-top: 26px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.98rem;
}

.hero-visual{ position: relative; }
.phone-mock{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  border: 6px solid #fff;
}
.hero-img{ width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.phone-badge{
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 10px 16px;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
  color: var(--navy);
  display: flex; flex-direction: column;
}
.phone-badge span{ font-weight: 500; font-size: 0.68rem; color: var(--muted); }
.phone-badge--rating{ top: 18px; left: -18px; color: #E8A020; }
.phone-badge--orders{ bottom: 18px; right: -18px; }

/* =========================================================
   Results
========================================================= */
.results{
  background: var(--navy);
  color: #fff;
  border-radius: 40px;
  margin: 0 20px;
  padding: 88px 0;
}
.results .section-head h2{ color: #fff; }
.stats-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  transition: transform .3s ease, background .3s ease;
}
.stat-card:hover{ transform: translateY(-6px); background: rgba(255,255,255,0.1); }
.stat-number{
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 800;
  color: var(--orange-2);
  margin-bottom: 10px;
}
.stat-label{ color: rgba(255,255,255,0.75); font-size: 0.98rem; }

.disclaimer{
  margin-top: 40px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   Problem
========================================================= */
.problem-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.problem-card{
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.problem-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.problem-icon{ font-size: 2rem; display: block; margin-bottom: 18px; }
.problem-card h3{ font-size: 1.05rem; font-weight: 700; }
.problem-conclusion{
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--orange-dark);
}

/* =========================================================
   Services
========================================================= */
.services{ background: var(--navy); color: #fff; }
.services .section-head h2{ color: #fff; }
.services-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.service-card:hover{
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
  border-color: var(--orange);
}
.service-number{
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange-2);
  display: block;
  margin-bottom: 14px;
}
.service-card h3{ color: #fff; font-size: 1.12rem; margin-bottom: 10px; }
.service-card p{ color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.55; }

/* =========================================================
   Before / After compare
========================================================= */
.compare-wrap{ max-width: 900px; margin: 0 auto; }
.compare{
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
  cursor: ew-resize;
  border: 6px solid #fff;
}
.compare-img{ position: absolute; inset: 0; width: 100%; height: 100%; }
.compare-img img{ width: 100%; height: 100%; object-fit: cover; }
.compare-img--before{ clip-path: inset(0 50% 0 0); }
.compare-tag{
  position: absolute;
  top: 18px;
  padding: 8px 18px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.compare-tag--after{ right: 18px; background: var(--orange); color: #fff; }
.compare-tag--before{ left: 18px; background: rgba(20,20,30,0.65); color: #fff; }
.compare-handle{
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  transform: translateX(-50%);
  cursor: ew-resize;
}
.compare-handle-grip{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-dark);
  box-shadow: var(--shadow-md);
}
.compare-hint{
  text-align: center;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

/* =========================================================
   Process
========================================================= */
.process-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.process-card{
  background: #fff;
  border-radius: var(--radius-md);
  padding: 34px 26px;
  border: 1px solid var(--line);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.process-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.process-step{
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 18px;
}
.process-card h3{ font-size: 1.1rem; margin-bottom: 8px; }
.process-card p{ color: var(--muted); font-size: 0.95rem; line-height: 1.55; }

/* =========================================================
   Virtual brand
========================================================= */
.virtual-brand{
  background: linear-gradient(135deg, var(--cream-2), var(--cream));
  border-radius: 40px;
  margin: 0 20px;
}
.virtual-inner{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.virtual-copy h2{ font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 20px; }
.virtual-copy p{ color: var(--muted); font-size: 1.05rem; line-height: 1.65; margin-bottom: 16px; }
.virtual-copy .btn{ margin-top: 12px; }

.virtual-visual{ position: relative; height: 280px; }
.virtual-card{
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px 26px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: var(--shadow-md);
  color: var(--navy);
}
.virtual-card--1{ top: 0; left: 10%; transform: rotate(-4deg); }
.virtual-card--2{ top: 42%; left: 40%; transform: rotate(3deg); background: var(--navy); color: #fff; }
.virtual-card--3{ top: 76%; left: 5%; transform: rotate(-2deg); }

/* =========================================================
   Pricing
========================================================= */
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}
.price-card{
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.price-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card--main{
  background: var(--navy);
  color: #fff;
  border: none;
  box-shadow: 0 24px 60px rgba(18,15,8,0.28);
}
.price-card--main h3{ color: #fff; }
.price-badge{
  position: absolute;
  top: -14px; left: 38px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
}
.price-card h3{ font-size: 1.4rem; margin-bottom: 8px; }
.price-desc{ color: var(--muted); font-size: 0.95rem; }
.price-card--main .price-desc{ color: rgba(255,255,255,0.65); }
.price-amount{
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  margin: 22px 0 26px;
  color: var(--orange-dark);
}
.price-card--main .price-amount{ color: var(--orange-2); }
.price-amount span{ font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.price-card--main .price-amount span{ color: rgba(255,255,255,0.6); }
.price-list{ margin-bottom: 30px; }
.price-list li{
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
  padding-left: 28px;
  position: relative;
}
.price-card--main .price-list li{ border-color: rgba(255,255,255,0.12); }
.price-list li::before{
  content: "✓";
  position: absolute; left: 0; top: 11px;
  color: var(--orange);
  font-weight: 800;
}
.pricing-note{
  text-align: center;
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* =========================================================
   Why us
========================================================= */
.why-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-card{
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.why-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-icon{ font-size: 2rem; display: block; margin-bottom: 16px; }
.why-card h3{ font-size: 1rem; font-weight: 700; line-height: 1.4; }

/* =========================================================
   FAQ
========================================================= */
.faq-list{ max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 6px 26px;
  box-shadow: var(--shadow-sm);
}
.faq-item summary{
  padding: 20px 0;
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 34px;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "+";
  position: absolute;
  right: 0; top: 18px;
  font-size: 1.4rem;
  color: var(--orange-dark);
  transition: transform .25s ease;
  font-weight: 400;
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item p{ color: var(--muted); line-height: 1.6; padding-bottom: 22px; font-size: 0.97rem; }

/* =========================================================
   Final CTA
========================================================= */
.final-cta{
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 40px;
  margin: 0 20px;
  padding: 56px 0;
}
.final-cta-inner{
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-cta h2{ color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 16px; }
.final-cta p{ color: rgba(255,255,255,0.9); font-size: 1.08rem; margin-bottom: 30px; }
.final-cta .btn-primary{
  background: #fff;
  color: var(--orange-dark);
  box-shadow: 0 14px 30px rgba(0,0,0,0.2);
}
.final-cta .btn-primary:hover{ background: var(--navy); color: #fff; }

/* =========================================================
   Contact
========================================================= */
.contact-inner{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: flex-start;
}
.contact-points{ margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.contact-points li{ font-weight: 600; color: var(--navy); }

.contact-form{
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-grid-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row{ display: flex; flex-direction: column; gap: 8px; }
.form-row label{ font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.form-row input,
.form-row select,
.form-row textarea{
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.97rem;
  background: var(--cream);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,74,30,0.12);
}
.form-row textarea{ resize: vertical; }
.form-row.has-error input,
.form-row.has-error select,
.form-row.has-error textarea{ border-color: #D9350A; }
.form-error{ font-size: 0.82rem; color: #D9350A; min-height: 1em; }

.form-row--checkbox{
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.form-row--checkbox input{ margin-top: 4px; width: 18px; height: 18px; accent-color: var(--orange); flex-shrink: 0; }
.form-row--checkbox label{ font-weight: 500; font-size: 0.92rem; color: var(--muted); flex: 1; }
.form-row--checkbox .form-error{ width: 100%; }

.form-success{
  display: none;
  background: rgba(31,138,92,0.1);
  color: var(--success);
  border: 1px solid rgba(31,138,92,0.3);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-weight: 600;
  text-align: center;
}
.form-success.is-visible{ display: block; }
.contact-form.is-submitted .form-fields{ display: none; }
.form-fields{ display: flex; flex-direction: column; gap: 20px; }
/* honeypot anti-spam : hors ecran, invisible pour l'humain, rempli par les bots */
.hp-field{ position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* =========================================================
   Footer
========================================================= */
.site-footer{ background: var(--navy); color: rgba(255,255,255,0.75); padding-top: 72px; }
.footer-inner{
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p{ margin-top: 16px; font-size: 0.92rem; line-height: 1.6; max-width: 320px; }
.footer-brand .logo-text{ color: #fff; }
.footer-nav, .footer-contact, .footer-legal{ display: flex; flex-direction: column; gap: 12px; }
.footer-nav h4, .footer-contact h4, .footer-legal h4{
  color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px;
}
.footer-contact p{ font-size: 0.92rem; }
.footer-contact .btn{ width: fit-content; margin-top: 8px; }
.footer-bottom{ padding: 26px 24px; text-align: center; font-size: 0.85rem; }

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 1024px){
  .hero-inner{ grid-template-columns: 1fr; }
  /* mobile/tablette : le visuel passe SOUS le titre et le bouton principal */
  .hero-visual{ order: 0; margin-top: 8px; }
  .stats-grid{ grid-template-columns: 1fr; }
  .problem-grid, .services-grid, .process-grid, .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .virtual-inner{ grid-template-columns: 1fr; }
  .virtual-visual{ height: 220px; order: -1; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .contact-inner{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px){
  section{ padding: 64px 0; }
  .results, .virtual-brand, .final-cta{ border-radius: 26px; margin: 0 12px; }
  .container{ padding: 0 18px; }
  .problem-grid, .services-grid, .process-grid, .why-grid{ grid-template-columns: 1fr; }
  .form-grid-2{ grid-template-columns: 1fr; }
  .hero-ctas{ flex-direction: column; }
  .hero-ctas .btn{ width: 100%; }
  /* CTA autonome : pleine largeur pour ne jamais depasser sur petit ecran */
  .final-cta .btn-lg{ width: 100%; }
  .btn-lg{ padding: 16px 22px; }
  /* dernier rempart : le texte des boutons peut passer a la ligne au lieu
     d'etre coupe sur les tres petits ecrans */
  .btn{ white-space: normal; }
  .phone-badge--rating{ left: 12px; top: 12px; }
  .phone-badge--orders{ right: 12px; bottom: 12px; }
  .phone-mock{ transform: none; }
  .footer-inner{ grid-template-columns: 1fr; }
  .price-card{ padding: 34px 26px; }
}
