
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0f1117;
  --ink-soft: #2a2d38;
  --ink-mute: #6b7280;
  --paper: #faf9f7;
  --paper-warm: #f5f3ef;
  --pink: #E21F70;
  --pink-light: #fde8f2;
  --pink-dark: #b8155a;
  --teal: #0d7a6b;
  --teal-light: #e3f5f2;
  --border: rgba(15,17,23,0.09);
  --border-strong: rgba(15,17,23,0.16);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 100px;
  --font: 'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--paper); color: var(--ink); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,249,247,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 96px;
}
.nav-logo {
  text-decoration: none; display: flex; align-items: center;
}
.nav-logo img { height: 88px; width: 88px; display: block; border-radius: 50%; object-fit: cover; }
.nav-links { display: flex; gap: 0.1rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--ink-mute); font-size: 0.875rem; font-weight: 600;
  padding: 0.4rem 0.9rem; border-radius: var(--radius-pill);
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--paper-warm); color: var(--ink); }
.btn-nav {
  background: var(--ink); color: #fff;
  font-family: var(--font); font-size: 0.85rem; font-weight: 700;
  padding: 0.5rem 1.3rem; border-radius: var(--radius-pill); border: none;
  cursor: pointer; text-decoration: none; transition: opacity 0.15s;
  white-space: nowrap;
}
.btn-nav:hover { opacity: 0.85; }

/* HERO */
.hero {
  max-width: 900px; margin: 0 auto;
  padding: 5.5rem 2rem 1rem; text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--pink-light); color: var(--pink-dark);
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.35rem 1rem;
  border-radius: var(--radius-pill); margin-bottom: 1.75rem;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--pink); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.07;
  letter-spacing: -0.035em; color: var(--ink); margin-bottom: 1.25rem;
}
h1 em { font-style: normal; color: var(--pink); }
.hero-sub {
  font-size: 1.1rem; color: var(--ink-mute); max-width: 540px;
  margin: 0 auto 1rem; line-height: 1.75; font-weight: 400;
}
.hero-note {
  font-size: 0.82rem; color: var(--ink-mute); margin-bottom: 2.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.hero-note svg { width: 15px; height: 15px; color: var(--teal); flex-shrink: 0; }

/* UPLOAD */
.upload-wrap { padding: 0 1.5rem; max-width: 720px; margin: 0 auto 1.5rem; }
.upload-card {
  background: #fff;
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem 2.5rem;
  cursor: pointer; text-align: center;
  transition: border-color 0.2s, background 0.2s;
  position: relative; overflow: hidden;
}
.upload-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 0%, var(--pink-light) 0%, transparent 70%);
  pointer-events: none; opacity: 0.6;
}
.upload-card:hover, .upload-card.drag-over { border-color: var(--pink); background: #fff9fb; }
.upload-card:hover .up-icon { background: var(--pink); }
.upload-card:hover .up-icon svg { stroke: #fff; }

.up-icon {
  width: 68px; height: 68px; background: var(--paper-warm); border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; transition: background 0.2s; position: relative; z-index: 1;
}
.up-icon svg { width: 30px; height: 30px; stroke: var(--ink-soft); transition: stroke 0.2s; }
.up-title { font-size: 1.15rem; font-weight: 800; color: var(--ink); margin-bottom: 0.4rem; position: relative; z-index: 1; }
.up-sub { font-size: 0.875rem; color: var(--ink-mute); margin-bottom: 1.75rem; position: relative; z-index: 1; }
.up-btn {
  display: inline-block; background: var(--ink); color: #fff;
  font-family: var(--font); font-size: 0.95rem; font-weight: 700;
  padding: 0.75rem 2rem; border-radius: var(--radius-pill);
  border: none; cursor: pointer; position: relative; z-index: 1;
  transition: opacity 0.15s;
}
.up-btn:hover { opacity: 0.82; }
.up-formats {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap; margin-top: 1.25rem;
  font-size: 0.78rem; color: var(--ink-mute); position: relative; z-index: 1;
}
.fmt { background: var(--paper-warm); border: 1px solid var(--border); border-radius: 6px; padding: 2px 7px; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.04em; color: var(--ink-soft); }

/* PRINT CTA BAR */
.print-bar {
  background: var(--pink); color: #fff;
  padding: 1.1rem 2rem; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.print-bar-text { font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }
.print-bar-text span { opacity: 0.8; font-weight: 500; margin-left: 6px; font-size: 0.9rem; }
.btn-print-white {
  background: #fff; color: var(--pink);
  font-family: var(--font); font-size: 0.85rem; font-weight: 800;
  padding: 0.55rem 1.4rem; border-radius: var(--radius-pill);
  border: none; cursor: pointer; white-space: nowrap;
  text-decoration: none; transition: transform 0.15s;
  letter-spacing: -0.01em;
}
.btn-print-white:hover { transform: scale(1.03); }

/* TOOLS GRID */
.tools-section { max-width: 760px; margin: 0 auto; padding: 2.5rem 1.5rem 0; }
.tools-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); text-align: center; margin-bottom: 1rem; }
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.875rem; }
.tool-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 2rem; display: flex; align-items: center; gap: 1.25rem;
  cursor: pointer; text-decoration: none; color: inherit;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.tool-card:hover { border-color: var(--pink); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(226,31,112,0.1); }
.t-icon { width: 62px; height: 62px; border-radius: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.t-icon svg { width: 28px; height: 28px; }
.ti-pink { background: var(--pink-light); color: var(--pink); }
.ti-teal { background: var(--teal-light); color: var(--teal); }
.ti-purple { background: #f0edff; color: #7c3aed; }
.t-label { font-size: 0.95rem; font-weight: 700; color: var(--ink); line-height: 1.25; }
.t-desc { font-size: 0.8rem; color: var(--ink-mute); margin-top: 4px; }

/* MARQUEE */
.marquee-strip { background: var(--ink); padding: 0.9rem 0; overflow: hidden; margin-top: 3rem; }
.marquee-inner { display: flex; width: max-content; animation: marquee 35s linear infinite; }
.marquee-inner span { font-weight: 800; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.m-item { display: flex; align-items: center; gap: 8px; padding: 0 2.5rem; white-space: nowrap; font-size: 0.85rem; color: rgba(255,255,255,0.65); font-weight: 500; }
.m-item::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--pink); flex-shrink:0; }

/* SECTION BASE */
.section { max-width: 1100px; margin: 0 auto; padding: 2.5rem 2rem; }
.s-label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); margin-bottom: 0.75rem; }
.s-title { font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--ink); margin-bottom: 0.875rem; }
.s-sub { font-size: 1rem; color: var(--ink-mute); max-width: 480px; line-height: 1.75; }

/* FEATURES GRID */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.feat-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.875rem; transition: box-shadow 0.2s, transform 0.2s;
}
.feat-card:hover { box-shadow: 0 10px 36px rgba(15,17,23,0.07); transform: translateY(-3px); }
.f-icon { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.f-icon svg { width: 22px; height: 22px; }
.fi-p { background: var(--pink-light); color: var(--pink); }
.fi-t { background: var(--teal-light); color: var(--teal); }
.fi-v { background: #f0edff; color: #7c3aed; }
.fi-b { background: #eff6ff; color: #2563eb; }
.fi-g { background: #f0fdf4; color: #16a34a; }
.fi-a { background: #fffbeb; color: #d97706; }
.f-badge { display: inline-block; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; padding: 3px 8px; border-radius: 7px; margin-bottom: 0.875rem; }
.fb-fix { background: var(--pink-light); color: var(--pink-dark); }
.fb-inst { background: var(--teal-light); color: var(--teal); }
.f-title { font-size: 1.05rem; font-weight: 800; color: var(--ink); margin-bottom: 0.5rem; line-height: 1.3; }
.f-desc { font-size: 0.875rem; color: var(--ink-mute); line-height: 1.7; }

/* INLINE PRINT CTA CARD */
.print-cta-card {
  background: var(--ink); border-radius: var(--radius-lg);
  padding: 2rem 2.25rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.pcc-left { flex: 1; min-width: 220px; }
.pcc-tag { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.5rem; }
.pcc-title { font-size: 1.25rem; font-weight: 800; color: #fff; line-height: 1.3; letter-spacing: -0.02em; }
.pcc-title em { font-style: normal; color: var(--pink); }
.pcc-sub { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 0.35rem; }
.btn-pcc {
  background: #fff; color: var(--ink);
  font-family: var(--font); font-size: 0.9rem; font-weight: 800;
  padding: 0.7rem 1.75rem; border-radius: var(--radius-pill);
  border: none; cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: background 0.15s; flex-shrink: 0;
}
.btn-pcc:hover { background: var(--paper-warm); }

/* HOW IT WORKS */
.steps-wrap { background: var(--paper-warm); border-radius: var(--radius-lg); padding: 4rem 3rem; margin-top: 3rem; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.step-num {
  width: 38px; height: 38px; background: var(--pink); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; margin-bottom: 1rem;
}
.step-t { font-size: 1rem; font-weight: 800; color: var(--ink); margin-bottom: 0.4rem; line-height: 1.3; }
.step-d { font-size: 0.85rem; color: var(--ink-mute); line-height: 1.65; }
.step-arrow { display: flex; align-items: flex-start; justify-content: flex-end; padding-top: 2.5rem; }
.step-arrow svg { width: 28px; height: 28px; color: var(--border-strong); }

/* AUDIENCE */
.aud-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.aud-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.aud-icon { font-size: 1.8rem; line-height: 1; margin-bottom: 0.75rem; }
.aud-t { font-size: 0.95rem; font-weight: 800; color: var(--ink); margin-bottom: 0.4rem; }
.aud-d { font-size: 0.825rem; color: var(--ink-mute); line-height: 1.6; }

/* STATS ROW */
.stats-row {
  display: flex; background: var(--pink); border-radius: var(--radius-lg);
  overflow: hidden; margin-top: 2rem;
}
.stat { flex: 1; padding: 2.25rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.12); }
.stat:last-child { border-right: none; }
.stat-n { font-size: 2.2rem; font-weight: 800; color: #fff; letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.4rem; }
.stat-n span { color: rgba(255,255,255,0.6); font-size: 1.4rem; }
.stat-l { font-size: 0.78rem; color: rgba(255,255,255,0.55); font-weight: 500; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border); padding: 2rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; gap: 1rem; flex-wrap: wrap;
}
.f-logo { font-size: 1.1rem; font-weight: 800; color: var(--ink); letter-spacing: -0.025em; }
.f-logo span { color: var(--pink); }
.f-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.f-links a { font-size: 0.825rem; color: var(--ink-mute); text-decoration: none; font-weight: 500; transition: color 0.15s; }
.f-links a:hover { color: var(--ink); }
.f-copy { font-size: 0.78rem; color: var(--ink-mute); }

/* TOAST */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(120px);
  background: var(--ink); color: #fff; padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill); font-size: 0.875rem; font-weight: 600;
  z-index: 999; transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap; max-width: 90vw; text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* STATS COUNTER */
.stat-block { padding:2rem 1.5rem; text-align:center; }
.stat-num-anim {
  font-family:var(--font); font-size:clamp(1.8rem,3vw,2.6rem); font-weight:800;
  color:#fff; letter-spacing:-0.04em; line-height:1;
  margin-bottom:0.4rem;
}
.stat-lbl { font-size:0.75rem; color:rgba(255,255,255,0.4); font-weight:600; text-transform:uppercase; letter-spacing:0.08em; }

/* PORTFOLIO */
.portfolio-item { position:relative; border-radius:var(--radius); overflow:hidden; cursor:pointer; }
.portfolio-item:hover .portfolio-overlay { opacity:1; }
.portfolio-item:hover .portfolio-bg { transform:scale(1.04); }
.portfolio-bg { width:100%; height:100%; transition:transform 0.4s ease; }
.portfolio-overlay {
  position:absolute; inset:0; background:rgba(15,17,23,0.82);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:1.5rem; opacity:0; transition:opacity 0.3s ease;
}
.po-tag { font-size:0.65rem; font-weight:800; letter-spacing:0.1em; text-transform:uppercase; color:var(--pink); margin-bottom:0.35rem; }
.po-title { font-size:1rem; font-weight:800; color:#fff; margin-bottom:0.4rem; line-height:1.3; }
.po-desc { font-size:0.78rem; color:rgba(255,255,255,0.55); line-height:1.6; margin-bottom:1rem; }
.po-btn { display:inline-block; background:var(--pink); color:#fff; font-family:var(--font); font-size:0.78rem; font-weight:800; padding:0.5rem 1.1rem; border-radius:var(--radius-pill); border:none; cursor:pointer; transition:opacity 0.15s; align-self:flex-start; }
.po-btn:hover { opacity:0.85; }

/* FAQ */
.faq-item { background:#fff; border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; cursor:pointer; transition:box-shadow 0.15s; }
.faq-item:hover { box-shadow:0 4px 16px rgba(15,17,23,0.07); }
.faq-item.open { border-color:var(--pink); }
.faq-q { display:flex; align-items:center; justify-content:space-between; padding:1.1rem 1.5rem; gap:1rem; }
.faq-q span { font-size:0.95rem; font-weight:700; color:var(--ink); line-height:1.4; }
.faq-icon { width:32px; height:32px; border-radius:50%; background:var(--paper-warm); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:background 0.15s, transform 0.25s; color:var(--ink-mute); }
.faq-item.open .faq-icon { background:var(--pink); color:#fff; transform:rotate(180deg); }
.faq-a { font-size:0.875rem; color:var(--ink-mute); line-height:1.75; padding:0 1.5rem; max-height:0; overflow:hidden; transition:max-height 0.35s ease, padding 0.25s ease; }
.faq-item.open .faq-a { max-height:300px; padding:0 1.5rem 1.25rem; }

@keyframes dot { 0%,80%,100%{transform:scale(0.6);opacity:0.4} 40%{transform:scale(1);opacity:1} }
.ai-quick { background:#fff; border:1.5px solid var(--border-strong); border-radius:var(--radius-pill); padding:6px 14px; font-size:0.78rem; font-weight:700; color:var(--ink); cursor:pointer; font-family:var(--font); transition:all 0.15s; white-space:nowrap; }
.ai-quick:hover { background:var(--pink); color:#fff; border-color:var(--pink); }

/* BEFORE / AFTER */
.ba-card {
  background:#fff; border:1px solid var(--border);
  border-radius:var(--radius-lg); overflow:hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ba-card:hover { box-shadow:0 12px 40px rgba(15,17,23,0.1); transform:translateY(-3px); }
.ba-label-top {
  font-size:0.72rem; font-weight:800; color:var(--ink-mute);
  letter-spacing:0.1em; text-transform:uppercase;
  padding:1.1rem 1.4rem 0.6rem;
  display:flex; align-items:center; gap:7px;
}
.ba-label-top::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background:var(--pink); display:inline-block; flex-shrink:0;
}
.ba-label-bot {
  font-size:0.82rem; font-weight:700; color:var(--teal);
  padding:0.65rem 1.4rem 1.1rem;
  display:flex; align-items:center; gap:6px;
  border-top:1px solid var(--border);
  background:var(--paper);
}
.ba-label-bot::before { content:'✓'; color:var(--teal); font-weight:900; }
.ba-slider-wrap { position:relative; overflow:hidden; cursor:col-resize; user-select:none; }
.ba-before { position:absolute; inset:0; overflow:hidden; }
.ba-before img { width:100%; height:100%; object-fit:cover; display:block; }
.ba-after { position:absolute; top:0; left:0; height:100%; overflow:hidden; }
.ba-after img { height:100%; object-fit:cover; display:block; position:absolute; top:0; left:0; }
.ba-handle {
  position:absolute; top:0; bottom:0; width:44px; margin-left:-22px;
  display:flex; align-items:center; justify-content:center;
  cursor:col-resize; z-index:10;
}
.ba-handle::before {
  content:''; position:absolute; top:0; bottom:0; left:50%; width:3px;
  background:#fff; transform:translateX(-50%);
  box-shadow:0 0 14px rgba(0,0,0,0.35);
}
.ba-handle::after {
  content:''; width:44px; height:44px; border-radius:50%;
  background:#fff; box-shadow:0 4px 20px rgba(0,0,0,0.25);
  position:relative; z-index:1;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23E21F70' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23E21F70' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  background-repeat:no-repeat, no-repeat;
  background-position:24% center, 76% center;
  background-size:18px, 18px;
}
.ba-pill-before, .ba-pill-after {
  position:absolute; top:14px; font-size:0.72rem; font-weight:800;
  padding:5px 12px; border-radius:var(--radius-pill); z-index:5;
  letter-spacing:0.04em; backdrop-filter:blur(6px);
}
.ba-pill-before { left:14px; background:rgba(15,17,23,0.65); color:#fff; }
.ba-pill-after  { right:14px; background:var(--pink); color:#fff; }

/* ══ RESPONSIVE — Tablet 768px ══ */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 1.5rem; }
  h1 { font-size: 2rem; }
  .nav-links { display: none; }
  #burger { display: flex !important; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .steps-wrap { padding: 2.5rem 1.75rem; }
  .aud-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 1.5rem 1.5rem; }

  /* Tools 2x2 on tablet */
  #corriger > div[style*="grid-template-columns:1fr 1fr 1fr"] { grid-template-columns: 1fr 1fr !important; }

  /* Portfolio 2 cols on tablet */
  div[style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }

  /* Inline CTA card */
  .print-cta-card { flex-direction: column; align-items: flex-start; }

  /* Google reviews */
  div[style*="grid-template-columns:repeat(auto-fit,minmax(280px,1fr))"] { grid-template-columns: 1fr 1fr !important; }

  /* Hero card Before/After → 1 col on tablet */
  div[style*="grid-template-columns:1fr 1fr;gap:1.25rem"] { grid-template-columns: 1fr !important; }

  /* CTA rose/noir full width */
  div[style*="background:var(--pink)"] > div,
  div[style*="background:var(--ink)"] > div { flex-direction: column !important; text-align: center !important; align-items: center !important; }
}

/* ══ RESPONSIVE — Mobile 480px ══ */
@media (max-width: 480px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  #burger { display: flex !important; }
  .btn-nav { font-size: 0.78rem; padding: 0.45rem 0.875rem; }

  /* Hero card */
  div[style*="max-width:720px;margin:1.5rem auto"] { margin: 1rem 0 !important; max-width: 100% !important; padding: 1.25rem !important; }
  div[style*="max-width:660px;margin:1.5rem auto"] { margin: 1rem 0 !important; max-width: 100% !important; padding: 1.25rem !important; }

  /* Before/After 1 col */
  div[style*="grid-template-columns:1fr 1fr;gap:1.25rem"] { grid-template-columns: 1fr !important; }

  /* 4 tools → 1 col */
  #corriger > div[style*="grid-template-columns:1fr 1fr 1fr"] { grid-template-columns: 1fr !important; }
  /* Slogan */
  #corriger > div[style*="text-align:center"] { margin-bottom: 1.5rem !important; }

  /* Features 1 col */
  .feat-grid { grid-template-columns: 1fr !important; }

  /* Steps 1 col */
  .steps { grid-template-columns: 1fr; }
  .steps-wrap { padding: 1.75rem 1.25rem; }

  /* Audience 1 col */
  .aud-grid { grid-template-columns: 1fr !important; }

  /* Portfolio 1 col */
  div[style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
  .portfolio-item { height: 260px !important; }

  /* Google reviews 1 col */
  div[style*="grid-template-columns:repeat(auto-fit,minmax(280px,1fr))"] { grid-template-columns: 1fr !important; }

  /* Marquee slower on mobile */
  .marquee-inner { animation-duration: 22s; }

  /* Sections padding */
  .section { padding: 1.25rem 1rem; }

  /* Process section */
  div[style*="grid-template-columns:repeat(3,1fr);gap:1.5rem"] { grid-template-columns: 1fr !important; }

  /* CTA noir full width — stack vertical */
  div[style*="background:var(--ink);width:100%"] > div { flex-direction: column !important; text-align: center !important; align-items: center !important; padding: 2.5rem 1.5rem !important; }
  div[style*="background:var(--pink);width:100%"] > div { flex-direction: column !important; text-align: center !important; align-items: center !important; padding: 2.5rem 1.5rem !important; }

  /* CTA final */
  div[style*="padding:4rem 2.75rem;text-align:center"] { padding: 2.5rem 1.5rem !important; }
  div[style*="max-width:1100px;margin:0 auto 5rem"] { padding: 0 1rem !important; }

  /* Modals full screen on mobile */
  #orderCard, #devisCard { max-width: 100% !important; border-radius: 20px 20px 0 0 !important; }
  #orderModal, #devisModal { align-items: flex-end !important; padding: 0 !important; }
  #aiCard { max-width: 100% !important; border-radius: 20px 20px 0 0 !important; height: 88vh !important; min-height:unset !important; }
  #aiModal { align-items: flex-end !important; justify-content:center !important; padding: 0 !important; }

  /* Inline print CTA */
  .print-cta-card { flex-direction: column; padding: 1.5rem !important; }

  /* Stats counter */
  .stat-block { padding: 1.5rem 0.75rem; }
  .stat-num-anim { font-size: 1.6rem; }

  /* Devis calculator grid */
  div[style*="grid-template-columns:1fr 1fr;gap:0.875rem"] { grid-template-columns: 1fr !important; }

  /* Nav AI button */
  .btn-nav { font-size: 0.78rem; padding: 0.45rem 0.875rem; }

  /* FAQ */
  .faq-q span { font-size: 0.875rem; }

  /* Hero card padding mobile */
  div[style*="max-width:720px;margin:0 auto;border"] { padding: 1.5rem 1.25rem !important; }

  /* Section title mobile */
  .s-title { font-size: 1.6rem !important; }
}

/* ══ RESPONSIVE — Small mobile 360px ══ */
@media (max-width: 380px) {
  h1 { font-size: 1.5rem; }
  .btn-nav { display: none; }
  .nav-logo { font-size: 1.1rem; }
  div[style*="grid-template-columns:1fr 1fr;gap:1.25rem"] { grid-template-columns: 1fr !important; }
}

