/* ============================================================
   MonSiteGratuit.fr — Landing d'acquisition
   Direction : studio de confiance. Bleu (fiabilité) + vert (sans risque),
   fond clair et net. Parcours pensé pour capter le contact au plus tôt.
   ============================================================ */
:root {
  --paper: #f4f7fb;
  --paper-2: #e6eef6;
  --card: #ffffff;
  --ink: #0f2942;
  --ink-2: #375271;
  --muted: #6a7f95;
  --line: rgba(15, 41, 66, 0.1);
  --line-strong: rgba(15, 41, 66, 0.17);

  --brand: #1566b3;
  --brand-deep: #0f4d8c;
  --brand-soft: rgba(21, 102, 179, 0.1);
  --green: #159b6a;
  --green-deep: #0f7d54;
  --green-soft: rgba(21, 155, 106, 0.1);
  --navy: #0b2135;

  --display: "Outfit", "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --sans: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 2px 8px rgba(15, 41, 66, 0.06);
  --shadow-md: 0 16px 40px -12px rgba(15, 41, 66, 0.16);
  --shadow-lg: 0 40px 80px -24px rgba(15, 41, 66, 0.3);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); background: var(--paper); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; width: 100%; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.08; font-weight: 600; letter-spacing: -0.01em; text-wrap: balance; }
em { font-style: italic; }
a { color: inherit; text-decoration: none; touch-action: manipulation; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.hidden { display: none !important; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Boutons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 26px; border-radius: 12px; border: none; cursor: pointer; font-family: var(--sans); font-weight: 700; font-size: 15.5px; letter-spacing: -0.01em; transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px -8px rgba(21, 102, 179, 0.5); }
.btn-primary:hover { background: var(--brand-deep); transform: translateY(-2px); box-shadow: 0 16px 32px -8px rgba(21, 102, 179, 0.55); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 10px 24px -8px rgba(21, 155, 106, 0.5); }
.btn-green:hover { background: var(--green-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { background: rgba(15, 41, 66, 0.04); }
.btn-cream { background: #fff; color: var(--ink); box-shadow: var(--shadow-md); }
.btn-cream:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-link { background: transparent; color: var(--ink); padding: 14px 8px; }
.btn-link:hover { color: var(--brand-deep); }
.btn-link svg { transition: transform 0.18s ease; }
.btn-link:hover svg { transform: translateX(4px); }
.btn-lg { padding: 17px 34px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Brand ---------- */
/* Marque : sans-serif moderne, une seule couleur (bleu du logo).
   "MonSite" en graisse normale, "Gratuit" en gras. */
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--sans); font-weight: 400; font-size: 23px; letter-spacing: -0.02em; color: var(--brand); }
.brand .brand-reg { font-weight: 400; }
.brand .brand-strong { font-weight: 800; }
.brand-logo { height: 48px; width: auto; max-width: 170px; object-fit: contain; flex: none; transition: height 0.2s ease; }
.brand-mark { width: 22px; height: 22px; border-radius: 7px; background: linear-gradient(135deg, var(--brand), var(--brand-deep)); box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25); position: relative; flex: none; }
.brand-mark::after { content: ""; position: absolute; inset: 6px; background: var(--paper); clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%); }
.brand-light { color: #5aa2e0; }

/* ---------- Section heads ---------- */
.section-tag { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.02em; color: var(--brand-deep); background: var(--brand-soft); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; }
.section-tag-light { color: #7bb2e6; background: rgba(90, 162, 224, 0.16); }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 18px; }

/* ============================================================
   HEADER
   ============================================================ */
.hdr { position: sticky; top: 0; z-index: 100; background: rgba(244, 247, 251, 0.72); -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2); border-bottom: 1px solid transparent; transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; }
.hdr.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); background: rgba(244, 247, 251, 0.92); }
.hdr-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 28px; gap: 24px; }
.hdr-nav { display: flex; gap: 30px; margin-left: auto; }
.hdr-nav a { color: var(--ink-2); font-weight: 600; font-size: 15px; position: relative; }
.hdr-nav a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--brand); transition: width 0.2s ease; }
.hdr-nav a:hover { color: var(--ink); }
.hdr-nav a:hover::after { width: 100%; }
.hdr-nav .nav-phone, .hdr-nav .nav-cta { display: none; } /* réservés au menu mobile */
.hdr-actions { display: flex; align-items: center; gap: 18px; }
.hdr-phone { font-weight: 700; font-size: 15px; color: var(--ink); }
.hdr-phone:hover { color: var(--brand-deep); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; display: block; }
.nav-toggle .nt-close { display: none; }
.hdr.nav-open .nav-toggle .nt-open { display: none; }
.hdr.nav-open .nav-toggle .nt-close { display: block; }

/* ============================================================
   HERO (copie à gauche · formulaire à droite)
   ============================================================ */
.hero { position: relative; padding: 60px 0 0; overflow: hidden; }
.hero-glow { position: absolute; inset: 0; pointer-events: none; z-index: 0; background: radial-gradient(46% 42% at 10% 4%, rgba(21, 102, 179, 0.14), transparent 70%), radial-gradient(42% 46% at 96% 30%, rgba(21, 155, 106, 0.12), transparent 72%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 52px; align-items: center; padding-bottom: 56px; }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 700; color: var(--ink-2); background: var(--card); border: 1px solid var(--line); padding: 8px 15px; border-radius: 999px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px var(--green-soft); } 50% { box-shadow: 0 0 0 7px rgba(21, 155, 106, 0.04); } }

.hero-copy h1 { font-size: clamp(36px, 5vw, 58px); margin-bottom: 22px; }
.hero-copy h1 em { color: var(--brand); font-style: italic; }
.hero-lead { font-size: 18.5px; color: var(--ink-2); max-width: 540px; margin-bottom: 28px; }
.hero-trust { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; }
.hero-trust li { display: flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; color: var(--ink-2); }
.hero-trust svg { width: 19px; height: 19px; color: var(--green); flex: none; }
.hero-proof { display: flex; align-items: center; gap: 14px; }
.hero-proof-stars { display: flex; gap: 1px; }
.hero-proof-stars svg { width: 17px; height: 17px; color: #e0a53d; }
.hero-proof p { font-size: 14px; color: var(--muted); }
.hero-proof strong { color: var(--ink); }

/* ---------- Carte formulaire dans le hero ---------- */
.hero-form { position: relative; }
.hero-form-glow { position: absolute; inset: -1px; border-radius: 26px; background: linear-gradient(160deg, rgba(21, 102, 179, 0.35), rgba(21, 155, 106, 0.15) 60%, transparent); filter: blur(2px); z-index: 0; }
.form-shell { position: relative; z-index: 1; background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 30px; box-shadow: var(--shadow-lg); }
.form-head { margin-bottom: 22px; }
.form-head h2 { font-size: 25px; margin-bottom: 6px; }
.form-head p { font-size: 14.5px; color: var(--muted); }
.form-head .free-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--green-deep); background: var(--green-soft); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }
.form-head .free-pill svg { width: 14px; height: 14px; }

.progress { height: 7px; background: var(--paper-2); border-radius: 999px; overflow: hidden; }
.progress-bar { height: 100%; width: 33.33%; background: linear-gradient(90deg, var(--brand), var(--green)); border-radius: 999px; transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.progress-label { font-size: 13px; font-weight: 800; letter-spacing: -0.01em; margin: 11px 0 22px; background: linear-gradient(90deg, var(--brand-deep), #2196f3, var(--green-deep), var(--brand-deep)); background-size: 250% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: shineText 3.5s linear infinite; }
@keyframes shineText { 0% { background-position: 0% center; } 100% { background-position: 250% center; } }

fieldset { border: none; }
.form-step { display: none; animation: stepIn 0.35s ease; }
.form-step.active { display: grid; gap: 15px; }
@keyframes stepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.form-group-title { font-size: 12px; font-weight: 700; color: var(--brand-deep); text-transform: uppercase; letter-spacing: 0.04em; margin: 6px 0 -3px; }
.label-hint { display: block; font-weight: 500; font-size: 12px; color: var(--muted); margin-top: 2px; }
.field-tip { display: block; font-weight: 500; font-size: 12px; color: var(--brand-deep); background: var(--brand-soft); border-radius: 8px; padding: 8px 11px; margin-top: 7px; line-height: 1.4; }
label { display: grid; gap: 7px; font-size: 13.5px; color: var(--ink-2); font-weight: 700; }
input, textarea, select { width: 100%; padding: 13px 15px; border-radius: 11px; border: 1.5px solid var(--line); background: var(--paper); color: var(--ink); font-size: 16px; font-family: var(--sans); font-weight: 500; -webkit-appearance: none; appearance: none; transition: border-color 0.15s ease, box-shadow 0.15s ease; touch-action: manipulation; }
input::placeholder, textarea::placeholder { color: #a7b6c6; font-weight: 400; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); }
input.invalid, textarea.invalid, select.invalid { border-color: #d9534f; box-shadow: 0 0 0 4px rgba(217, 83, 79, 0.12); }
select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%236a7f95' stroke-width='2' fill='none'/></svg>"); background-repeat: no-repeat; background-position: right 15px center; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 2px; }
.chip { padding: 8px 14px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--paper); color: var(--ink-2); font-size: 13px; font-weight: 600; cursor: pointer; font-family: var(--sans); transition: all 0.15s ease; }
.chip:hover { border-color: var(--brand); color: var(--ink); }
.chip.selected { background: var(--brand); color: #fff; border-color: var(--brand); }

input[type="checkbox"] { width: 22px !important; height: 22px !important; min-width: 22px !important; min-height: 22px !important; -webkit-appearance: checkbox !important; appearance: checkbox !important; accent-color: var(--brand); cursor: pointer; margin-top: 1px; }

.check { display: flex !important; align-items: flex-start; gap: 12px; font-weight: 500; color: var(--ink-2); font-size: 13.5px; cursor: pointer; user-select: none; }
.check input { margin-top: 2px; }
.check span { flex: 1; line-height: 1.45; }
.recap { background: var(--green-soft); border: 1px solid rgba(21, 155, 106, 0.2); border-radius: 12px; padding: 16px 18px; font-size: 14px; color: var(--ink-2); }
.recap strong { color: var(--ink); }
.form-error { color: #c9302c; font-size: 13.5px; font-weight: 600; min-height: 18px; margin-top: 12px; }

.form-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
#submitBtn { display: none; margin-left: auto; }
#prevBtn { visibility: hidden; }

.form-reassure { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 16px; font-size: 12.5px; color: var(--muted); }
.form-reassure svg { width: 15px; height: 15px; color: var(--green); }

/* Loader */
.loader { text-align: center; padding: 20px 0 8px; }

/* Anneau de progression circulaire */
.loader-ring { position: relative; width: 132px; height: 132px; margin: 0 auto 22px; }
.loader-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.loader-ring circle { fill: none; stroke-width: 9; stroke-linecap: round; }
.lr-track { stroke: var(--paper-2); }
.lr-fill { stroke: url(#lrGrad); stroke-dasharray: 326.7; stroke-dashoffset: 326.7; transition: stroke-dashoffset 0.12s linear; }
.loader-percent { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 34px; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; }
.loader-percent i { font-style: normal; font-size: 17px; color: var(--muted); margin-left: 2px; align-self: center; margin-top: 6px; }

.loader-message { font-family: var(--display); font-size: 21px; font-weight: 600; margin-bottom: 6px; min-height: 28px; }
.loader-sub { font-size: 14px; color: var(--muted); margin-bottom: 26px; min-height: 20px; transition: opacity 0.3s ease; }
.loader-steps { display: grid; gap: 11px; max-width: 380px; margin: 0 auto 22px; text-align: left; }
.loader-steps span { color: var(--muted); font-size: 14px; font-weight: 600; padding-left: 26px; position: relative; transition: color 0.3s ease; }
.loader-steps span::before { content: ""; position: absolute; left: 0; top: 5px; width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--line-strong); }
.loader-steps span.active { color: var(--brand); }
.loader-steps span.active::before { border-color: var(--brand); }
.loader-steps span.done { color: var(--green-deep); }
.loader-steps span.done::before { background: var(--green); border-color: var(--green); }
.loader-note { font-size: 13px; color: var(--muted); }

/* Succès */
.success { text-align: center; padding: 24px 0 8px; }
.success-check { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--green-soft); display: flex; align-items: center; justify-content: center; animation: pop 0.5s cubic-bezier(0.22, 1.4, 0.4, 1); }
.success-check svg { width: 30px; height: 30px; color: var(--green); }
@keyframes pop { 0% { transform: scale(0.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.success h3 { font-size: 26px; margin-bottom: 12px; }
.success p { color: var(--muted); margin-bottom: 22px; }
.success-note { font-size: 13.5px; margin-top: 18px; }

/* Bloc d'abonnement (sous le bouton Découvrir) */
.sub-cta { margin-top: 26px; text-align: left; background: linear-gradient(165deg, var(--green-soft), rgba(21, 155, 106, 0.03)); border: 1.5px solid rgba(21, 155, 106, 0.25); border-radius: 18px; padding: 22px; }
.sub-cta-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.sub-price { font-family: var(--display); font-size: 30px; font-weight: 600; color: var(--ink); line-height: 1; }
.sub-price i { font-style: normal; font-size: 15px; font-weight: 500; color: var(--muted); margin-left: 2px; }
.sub-flag { font-size: 12px; font-weight: 700; color: var(--green-deep); background: #fff; border: 1px solid rgba(21, 155, 106, 0.3); padding: 5px 12px; border-radius: 999px; }
.sub-lead { font-size: 15px; color: var(--ink-2); margin-bottom: 16px; line-height: 1.55; }
.sub-lead strong { color: var(--ink); }
.sub-list { list-style: none; display: grid; gap: 11px; margin-bottom: 20px; }
.sub-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; color: var(--ink-2); line-height: 1.45; }
.sub-list svg { width: 18px; height: 18px; color: #fff; background: var(--green); border-radius: 50%; padding: 3px; flex: none; margin-top: 1px; }
.sub-list strong { color: var(--ink); }
.sub-btn { flex-direction: column; gap: 3px; padding-top: 14px; padding-bottom: 14px; line-height: 1.2; margin-bottom: 14px; }
.sub-btn-main { font-size: 17.5px; font-weight: 800; }
.sub-btn-desc { font-size: 13px; font-weight: 600; opacity: 0.9; }
.sub-note { font-size: 12.5px; color: var(--muted); line-height: 1.5; text-align: center; margin: 0; }
.sub-note strong { color: var(--ink-2); }

/* ---------- Marquee ---------- */
.marquee { position: relative; z-index: 1; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 22px; width: max-content; animation: marquee 34s linear infinite; }
.marquee-track span { font-family: var(--display); font-size: 21px; font-weight: 500; color: var(--ink-2); white-space: nowrap; }
.marquee-sep { color: var(--brand) !important; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   ARGUMENT (Le constat) — photo artisan + texte
   ============================================================ */
.argument { padding: 92px 0; }
.arg-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 56px; align-items: center; }
.arg-photo { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.arg-photo img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; background: var(--paper-2); }
.arg-photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 26px 24px 20px; font-size: 14.5px; font-weight: 600; color: #fff; line-height: 1.4; background: linear-gradient(to top, rgba(11, 33, 53, 0.88), rgba(11, 33, 53, 0.36) 55%, transparent); }
.arg-content h2 { font-size: clamp(30px, 4vw, 44px); }
.arg-content .section-tag { margin-bottom: 20px; }
.arg-intro { font-size: 18px; color: var(--ink-2); margin: 16px 0 36px; }
.arg-stats { display: grid; gap: 28px; }
.stat { display: grid; grid-template-columns: auto 1fr; gap: 4px 20px; align-items: baseline; padding-top: 24px; border-top: 1px solid var(--line); }
.stat-num { font-family: var(--display); font-size: 56px; font-weight: 600; color: var(--brand); line-height: 1; }
.stat-suffix { font-family: var(--display); font-size: 30px; font-weight: 500; color: var(--brand); align-self: center; }
.stat p { grid-column: 1 / -1; color: var(--muted); font-size: 15.5px; max-width: 360px; }

/* ============================================================
   SHOWCASE
   ============================================================ */
.showcase { padding: 92px 0; background: var(--paper-2); }
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.shot { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.shot:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.shot-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; }
.shot-tag { font-weight: 700; font-size: 13px; color: var(--ink); }
.shot-loc { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.shot-canvas { margin: 0 16px 16px; border-radius: 12px; overflow: hidden; }
.sc-nav { display: flex; align-items: center; gap: 7px; padding: 12px 16px; }
.sc-nav b { font-family: var(--display); font-size: 14px; }
.sc-nav i { width: 26px; height: 5px; border-radius: 3px; background: currentColor; opacity: 0.28; }
.sc-nav span { margin-left: auto; font-size: 10.5px; font-weight: 700; padding: 5px 11px; border-radius: 6px; }
.sc-hero { padding: 34px 22px 40px; display: flex; flex-direction: column; align-items: flex-start; }
.sc-hero em { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.75; }
.sc-hero strong { font-family: var(--display); font-weight: 600; font-size: 26px; line-height: 1.1; margin: 10px 0 18px; }
.sc-btn { font-size: 12px; font-weight: 700; padding: 10px 18px; border-radius: 8px; }
.sc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 16px 18px; }
.sc-cards span { height: 40px; border-radius: 8px; }

/* Chaque vignette = un métier différent, pour montrer notre polyvalence */
.theme-warm .shot-canvas { background: #fbeee7; color: #b34a2a; }
.theme-warm .sc-nav span { background: #c15535; color: #fff; }
.theme-warm .sc-hero strong { color: #7a2e17; }
.theme-warm .sc-btn { background: #c15535; color: #fff; }
.theme-warm .sc-cards span { background: #f3ddd2; }
.theme-blue .shot-canvas { background: #e6f0f8; color: #1a5a8f; }
.theme-blue .sc-nav span { background: #1a5a8f; color: #fff; }
.theme-blue .sc-hero strong { color: #123f66; }
.theme-blue .sc-btn { background: #1a5a8f; color: #fff; }
.theme-blue .sc-cards span { background: #d3e3f0; }
.theme-rose2 .shot-canvas { background: #f8ecf0; color: #a24a6a; }
.theme-rose2 .sc-nav span { background: #b0567a; color: #fff; }
.theme-rose2 .sc-hero strong { color: #6f2e45; }
.theme-rose2 .sc-btn { background: #b0567a; color: #fff; }
.theme-rose2 .sc-cards span { background: #ecd7df; }
.theme-green2 .shot-canvas { background: #e6f2ea; color: #2f7a52; }
.theme-green2 .sc-nav span { background: #2f7a52; color: #fff; }
.theme-green2 .sc-hero strong { color: #1d4d34; }
.theme-green2 .sc-btn { background: #2f7a52; color: #fff; }
.theme-green2 .sc-cards span { background: #d3e7db; }

/* ============================================================
   MÉTHODE (section sombre navy avec dégradé classe)
   ============================================================ */
.method { padding: 96px 0; background: radial-gradient(85% 85% at 50% 12%, rgba(21, 102, 179, 0.22) 0%, transparent 80%), linear-gradient(145deg, #193854 0%, #10263b 50%, #091826 100%); color: #eef4fa; position: relative; overflow: hidden; }
.method .section-head h2 { color: #eef4fa; }

/* Chemin en zigzag : les numéros ronds "flottent" à des hauteurs alternées,
   reliés par une ligne, pour une lecture plus vivante qu'une simple liste. */
.steps { list-style: none; display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; max-width: 980px; margin: 64px auto 0; position: relative; }
/* Ligne en zigzag reliant les centres des pastilles (hautes/basses alternées) */
.steps::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 136px; z-index: 0; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 136' preserveAspectRatio='none'><polyline points='50,42 150,94 250,42 350,94' fill='none' stroke='rgba(90,162,224,0.5)' stroke-width='2' stroke-dasharray='6 5'/></svg>") center / 100% 100% no-repeat; }
.step { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.step:nth-child(even) { margin-top: 52px; }
.step-index, .step-icon { width: 84px; height: 84px; flex: none; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #0b2135; border: 2px solid rgba(90, 162, 224, 0.4); font-family: var(--display); font-size: 27px; font-weight: 600; color: #5aa2e0; transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, background 0.3s ease; box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.step-icon svg { width: 34px; height: 34px; color: #5aa2e0; flex: none; transition: transform 0.3s ease, color 0.3s ease; }
.step:hover .step-index, .step:hover .step-icon { transform: scale(1.1); border-color: #5aa2e0; background: rgba(90, 162, 224, 0.16); }
.step:hover .step-icon svg { transform: scale(1.1); color: #fff; }
.step h3 { font-size: 17.5px; color: #eef4fa; max-width: 170px; line-height: 1.3; }

/* ============================================================
   OFFRE
   ============================================================ */
.offer { padding: 96px 0; }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.offer-copy h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 20px; }
.offer-copy > p { font-size: 18px; color: var(--ink-2); margin-bottom: 32px; }
.offer-anchor { display: flex; align-items: center; gap: 20px; }
.anchor-old, .anchor-new { display: flex; flex-direction: column; gap: 4px; }
.anchor-old span, .anchor-new span { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--muted); }
.anchor-old b { font-family: var(--display); font-size: 24px; color: var(--ink-2); text-decoration: line-through; text-decoration-color: rgba(217, 83, 79, 0.6); }
.anchor-new b { font-family: var(--display); font-size: 24px; color: var(--green-deep); }
.anchor-arrow { width: 30px; height: 30px; color: var(--brand); flex: none; }

.pricing { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 40px; box-shadow: var(--shadow-md); }
.pricing::before { content: ""; position: absolute; inset: 0; border-radius: 24px; padding: 1.5px; background: linear-gradient(160deg, var(--brand), var(--green) 60%, transparent); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.pricing-flag { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.02em; color: var(--brand-deep); background: var(--brand-soft); padding: 6px 14px; border-radius: 999px; margin-bottom: 22px; }
.pricing-price { display: flex; align-items: baseline; gap: 6px; }
.pp-amount { font-family: var(--display); font-size: 62px; font-weight: 600; line-height: 1; }
.pp-period { font-size: 19px; font-weight: 600; color: var(--muted); }
.pricing-sub { color: var(--muted); font-size: 14.5px; margin: 8px 0 26px; }
.pricing-list { list-style: none; display: grid; gap: 14px; margin-bottom: 30px; }
.pricing-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--ink-2); }
.pricing-list li span { flex: 1; }
.pricing-list svg { width: 20px; height: 20px; color: #fff; background: var(--green); border-radius: 50%; padding: 3px; flex: none; margin-top: 1px; }
.pricing-list strong { color: var(--ink); }
.pricing-foot { text-align: center; font-size: 13.5px; color: var(--muted); margin-top: 14px; }

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.voices { padding: 92px 0; }
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.voice { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); transition: transform 0.25s ease, box-shadow 0.25s ease; display: flex; flex-direction: column; gap: 16px; }
.voice:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.voice figcaption { display: flex; align-items: center; gap: 12px; margin-bottom: 2px; }
.v-info { display: flex; flex-direction: column; flex: 1; }
.v-avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: #fff; background: linear-gradient(140deg, var(--brand), var(--brand-deep)); flex: none; }
.voice:nth-child(2) .v-avatar { background: linear-gradient(140deg, var(--green), var(--green-deep)); }
.voice:nth-child(3) .v-avatar { background: linear-gradient(140deg, #4a7fb0, var(--navy)); }
.voice figcaption b { display: block; font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.voice figcaption i { font-style: normal; font-size: 13px; color: var(--muted); margin-top: 2px; }
.v-stars { display: flex; gap: 2px; color: #e0a53d; flex: none; }
.v-stars svg { width: 16px; height: 16px; }
.voice blockquote { font-family: var(--display); font-size: 17.5px; font-weight: 400; line-height: 1.5; color: var(--ink); margin-bottom: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 92px 0; background: var(--paper-2); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 4px 24px; margin-bottom: 12px; transition: box-shadow 0.2s ease; }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 700; font-size: 16.5px; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; }
.faq summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 18px; height: 18px; flex: none; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--brand); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.faq-plus::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq-plus::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq details[open] .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq details p { color: var(--ink-2); font-size: 15.5px; padding: 0 0 20px; margin-top: -4px; }

/* ============================================================
   CLOSER
   ============================================================ */
.closer { position: relative; padding: 96px 0; background: var(--navy); color: #eef4fa; overflow: hidden; }
.closer-glow { position: absolute; inset: 0; background: radial-gradient(50% 60% at 50% 0%, rgba(21, 102, 179, 0.34), transparent 70%); pointer-events: none; }
.closer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.8fr 1fr; gap: 56px; align-items: center; }
.closer-photo { border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55); }
.closer-photo img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 4.4; background: #0b2135; }
.closer-inner { max-width: 560px; }
.closer h2 { font-size: clamp(30px, 4vw, 44px); color: #eef4fa; margin-bottom: 16px; }
.closer p { font-size: 18px; color: rgba(238, 244, 250, 0.72); margin-bottom: 30px; }
.closer-note { display: block; margin-top: 18px; font-size: 14px; color: rgba(238, 244, 250, 0.55); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.ftr { background: #081826; color: rgba(238, 244, 250, 0.7); padding: 60px 0 28px; }
.ftr-inner { display: flex; justify-content: space-between; gap: 40px 64px; flex-wrap: wrap; padding-bottom: 34px; border-bottom: 1px solid rgba(238, 244, 250, 0.1); }
.ftr-brand { max-width: 380px; }
.ftr-brand .brand { margin-bottom: 14px; }
.ftr-brand p { font-size: 14.5px; line-height: 1.65; color: rgba(238, 244, 250, 0.6); }
.ftr-links { display: flex; flex-direction: column; gap: 11px; }
.ftr-links-title { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(238, 244, 250, 0.4); margin-bottom: 3px; }
.ftr-links a { font-size: 14.5px; font-weight: 600; color: rgba(238, 244, 250, 0.7); transition: color 0.15s ease; }
.ftr-links a:hover { color: #eef4fa; }
.ftr-bottom { padding-top: 22px; font-size: 13px; color: rgba(238, 244, 250, 0.45); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px 24px; }
.ftr-made { color: rgba(238, 244, 250, 0.4); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-form { max-width: 520px; }
  .arg-grid, .offer-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery, .voices-grid { grid-template-columns: 1fr; }
  /* Constat & CTA : photo au-dessus du texte, hauteur maîtrisée */
  .arg-photo { max-width: 480px; margin: 0 auto; }
  .arg-photo img { aspect-ratio: 16 / 10; }
  .closer-grid { grid-template-columns: 1fr; gap: 34px; text-align: center; }
  .closer-photo { max-width: 460px; margin: 0 auto; }
  .closer-photo img { aspect-ratio: 16 / 10; }
  .closer-inner { max-width: none; margin: 0 auto; }
  /* Nav mobile : panneau déroulant plein sous le header, ouvert via le burger */
  .nav-toggle { display: block; }
  /* Le CTA du header est redondant en mobile (il est dans le menu déroulant) et
     provoquait un repli de son texte sur plusieurs lignes → header épaissi. */
  .hdr-actions > .btn-primary { display: none; }
  .hdr-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; margin: 0; padding: 8px 28px 20px; background: var(--card); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
  .hdr.nav-open .hdr-nav { display: flex; }
  .hdr-nav a { padding: 18px 4px; border-bottom: 1px solid var(--line); font-size: 17.5px; font-weight: 700; color: var(--ink); display: flex; align-items: center; justify-content: space-between; }
  .hdr-nav a::before { content: "›"; order: 2; color: var(--brand); font-size: 22px; font-weight: 400; }
  .hdr-nav a:last-child { border-bottom: none; }
  .hdr-nav a::after { display: none; }
  .hdr-nav .nav-phone { display: flex; color: var(--brand-deep); }
  .hdr-nav .nav-cta { display: flex; margin-top: 14px; padding: 16px; border-bottom: none; justify-content: center; background: var(--brand); color: #fff; border-radius: 12px; box-shadow: 0 10px 24px -8px rgba(21, 102, 179, 0.5); }
  .hdr-nav .nav-cta::before { display: none; }
  .steps { flex-direction: column; align-items: stretch; gap: 28px; margin-top: 40px; }
  .steps::before { display: none; }
  .step { flex-direction: row; text-align: left; margin-top: 0 !important; }
  .step-index { width: 60px; height: 60px; font-size: 21px; }
  .step h3 { max-width: none; text-align: left; }
}
@media (max-width: 560px) {
  /* --- Rythme vertical resserré (sections, titres) --- */
  .argument, .showcase, .method, .offer, .voices, .faq { padding-top: 56px; padding-bottom: 56px; }
  .section-head { margin-bottom: 34px; }
  .section-head p { font-size: 16px; }
  .container { padding: 0 18px; }

  /* --- En-tête (logo + burger uniquement) --- */
  .brand { font-size: 19px; }
  .brand-logo { height: 32px; }
  .hdr-phone { display: none; }
  /* Le header garde une vraie épaisseur (la règle .container ci-dessus remettrait sinon son padding vertical à 0) */
  .hdr-inner { padding: 13px 18px; }

  /* --- Hero : aéré et lisible sur mobile --- */
  .hero { padding-top: 24px; }
  .hero-grid { gap: 32px; padding-bottom: 44px; }
  .eyebrow { font-size: 12px; padding: 7px 13px; margin-bottom: 16px; line-height: 1.35; }
  .hero-copy h1 { font-size: clamp(38px, 9.2vw, 48px); line-height: 1.12; margin-bottom: 20px; letter-spacing: -0.025em; }
  .hero-lead { font-size: 16.5px; line-height: 1.6; color: var(--ink-2); margin-bottom: 24px; }
  .hero-trust { gap: 12px; margin-bottom: 26px; }
  .hero-trust li { font-size: 14.5px; line-height: 1.45; }
  .hero-form { max-width: none; }

  /* --- Carte formulaire --- */
  .form-shell { padding: 24px 18px; }
  .form-head { margin-bottom: 18px; }
  .form-head h2 { font-size: 22px; }
  .progress-label { margin: 10px 0 18px; }
  /* iOS zoome sur un champ dont la police < 16px : on force 16px sur mobile */
  input, textarea, select { font-size: 16px; }
  .form-step.active { gap: 13px; }
  .form-nav { flex-direction: column-reverse; margin-top: 18px; }
  .form-nav .btn { width: 100%; }
  #submitBtn { margin-left: 0; }
  /* Sur l'étape 1, « Retour » est masqué : on l'escamote pour éviter un vide */
  #prevBtn[style*="visibility: hidden"] { display: none; }

  /* --- Constat / stats --- */
  .arg-photo figcaption { padding: 18px 18px 16px; font-size: 13.5px; }
  .arg-intro { font-size: 16px; margin: 14px 0 26px; }
  .arg-stats { gap: 22px; }
  .stat { padding-top: 20px; }
  .stat-num { font-size: 46px; }
  .stat-suffix { font-size: 26px; }

  /* --- Showcase --- */
  .marquee-track span { font-size: 17px; }

  /* --- Méthode : 4 points centrés et lisibles sur mobile --- */
  .steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 16px; margin-top: 36px; justify-items: center; }
  .steps::before { display: none; }
  .step { margin-top: 0 !important; align-items: center; text-align: center; width: 100%; }
  .step h3 { text-align: center; font-size: 15.5px; margin: 0 auto; }

  /* --- Photos format portrait vertical 4:5 sur mobile --- */
  .arg-photo img, .closer-photo img { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; object-position: center; border-radius: 18px; }

  /* --- Offre / tarif --- */
  .offer-copy > p { font-size: 16px; }
  .offer-anchor { justify-content: center; text-align: center; margin: 0 auto 24px; gap: 16px; width: 100%; }
  .anchor-old, .anchor-new { align-items: center; text-align: center; }
  .pricing { padding: 28px 22px; }
  .pp-amount { font-size: 52px; }
  .pricing-list { gap: 12px; margin-bottom: 26px; }
  .pricing-list li { font-size: 15px; }

  /* --- Témoignages --- */
  .voice { padding: 26px 24px; }
  .voice blockquote { font-size: 16.5px; margin-bottom: 20px; }

  /* --- FAQ --- */
  .faq details { padding: 2px 20px; }
  .faq summary { font-size: 15.5px; padding: 16px 0; }
  .faq details p { font-size: 15px; }

  /* --- Closer --- */
  .closer { padding: 72px 0; }
  .closer h2 { font-size: 28px; }
  .closer p { font-size: 16px; margin-bottom: 24px; }

  /* --- Boutons plus sobres sur petit écran --- */
  .btn-lg { padding: 16px 26px; font-size: 16px; }

  /* --- Footer --- */
  .ftr-inner { flex-direction: column; gap: 28px; }

  /* --- Logo sur mobile --- */
  .brand-logo { height: 40px; max-width: 140px; }
  .brand { font-size: 20px; }
}

/* Très petits écrans (≤ 380px) : on évite tout débordement des gros chiffres */
@media (max-width: 380px) {
  .hero-copy h1 { font-size: 29px; }
  .pp-amount { font-size: 46px; }
  .stat-num { font-size: 40px; }
  .sub-price { font-size: 26px; }
  .form-shell { padding: 22px 15px; }
  .container { padding: 0 15px; }
}

/* ============================================================
   COMPAT — pages légales (mentions-legales / cgv / confidentialite)
   Ces pages statiques utilisent d'anciens noms de variables/classes.
   ============================================================ */
:root { --accent: var(--brand); --accent-deep: var(--brand-deep); --accent-soft: var(--brand-soft); --border: var(--line); --surface: var(--card); --text: var(--ink); --bg: var(--paper); }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(244, 247, 251, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.site-header .header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.section-title { font-family: var(--display); font-size: clamp(28px, 4vw, 42px); font-weight: 600; }
.site-header .brand span { color: var(--brand); }
.site-footer { background: #081826; color: rgba(238, 244, 250, 0.7); padding: 44px 0; margin-top: 40px; }
.site-footer .footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.site-footer .footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer a { color: rgba(238, 244, 250, 0.7); }
.site-footer a:hover { color: #eef4fa; }

/* ============================================================
   CRO IMPROVEMENTS — Dropzone Logo & Sticky Mobile Bar
   ============================================================ */
.logo-upload-group { display: grid; gap: 7px; margin-bottom: 8px; }
.file-dropzone { position: relative; border: 2px dashed var(--line-strong); border-radius: 14px; background: var(--paper); transition: border-color 0.2s ease, background 0.2s ease; overflow: hidden; }
.file-dropzone:hover, .file-dropzone.dragover { border-color: var(--brand); background: var(--brand-soft); }
.file-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 2; width: 100%; height: 100%; }
.file-dropzone-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 20px 16px; text-align: center; color: var(--ink-2); pointer-events: none; }
.file-dropzone-inner svg { width: 32px; height: 32px; color: var(--brand); }
.file-dropzone-inner span { font-size: 14px; }
.file-dropzone-inner small { font-size: 12px; color: var(--muted); }
.file-preview { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: var(--card); border-radius: 12px; z-index: 3; position: relative; }
.file-preview img { max-height: 48px; max-width: 160px; object-fit: contain; border-radius: 6px; }
.btn-remove-file { background: rgba(15, 41, 66, 0.08); border: none; border-radius: 50%; width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; color: var(--ink); cursor: pointer; transition: background 0.15s ease; }
.btn-remove-file:hover { background: rgba(225, 45, 45, 0.15); color: #d32f2f; }

.check-subtle { margin-top: 4px; font-weight: 500; font-size: 13px; color: var(--muted); }
.check-subtle input:checked + span { color: var(--ink); font-weight: 600; }

.file-input-hidden { position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 2; width: 100%; height: 100%; }
.dropzone-content { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 20px 16px; text-align: center; color: var(--ink-2); pointer-events: none; }
.dropzone-content svg { width: 32px; height: 32px; color: var(--brand); }
.dropzone-content span { font-size: 14px; }
.dropzone-content small { font-size: 12px; color: var(--muted); }
.photos-preview-grid { display: flex; flex-direction: column; gap: 8px; padding: 12px; z-index: 3; position: relative; width: 100%; }
.photos-status-bar { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 8px; background: var(--green-soft); color: var(--green-deep); font-size: 13px; font-weight: 600; padding: 9px 12px; border-radius: 8px; border: 1px solid rgba(21, 155, 106, 0.2); }
.photos-status-bar small { color: var(--muted); font-weight: 400; }
.photos-grid-inner { display: flex; flex-wrap: wrap; gap: 10px; width: 100%; }
.photo-chip-preview { position: relative; width: 68px; height: 68px; border-radius: 10px; overflow: hidden; border: 1.5px solid var(--brand-soft); box-shadow: var(--shadow-sm); }
.photo-chip-preview img { width: 100%; height: 100%; object-fit: cover; }
.photo-chip-remove { position: absolute; top: 3px; right: 3px; width: 22px; height: 22px; border-radius: 50%; background: rgba(0,0,0,0.72); color: #fff; border: none; font-size: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s ease; }
.photo-chip-remove:hover { background: #d32f2f; }

/* Sticky Mobile Bar avec gestion des encoches iOS (notch / home bar) */
.mobile-sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; padding: 12px 16px; padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px)); background: rgba(15, 41, 66, 0.94); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-top: 1px solid rgba(255, 255, 255, 0.12); box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2); transform: translateY(100%); transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
.mobile-sticky-bar.visible { transform: translateY(0); }
.msb-content { display: flex; align-items: center; justify-content: space-between; gap: 12px; max-width: 500px; margin: 0 auto; }
.msb-text { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.3; }
.msb-btn { padding: 10px 18px; font-size: 14px; flex: none; white-space: nowrap; }

@media (max-width: 768px) {
  .mobile-sticky-bar { display: block; }
}

/* Gallery Filters */
.gallery-filters { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-btn { padding: 8px 18px; border-radius: 999px; border: 1.5px solid var(--line-strong); background: var(--card); color: var(--ink-2); font-family: var(--sans); font-size: 13.5px; font-weight: 600; cursor: pointer; transition: all 0.2s ease; }
.filter-btn:hover { border-color: var(--brand); color: var(--brand); }
.filter-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: 0 4px 14px -3px rgba(21, 102, 179, 0.4); }
.shot.hidden-filter { display: none !important; }

/* Field Actions & Skip button */
.field-actions-row { display: flex; align-items: center; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.btn-skip-field { display: inline-flex; align-items: center; gap: 4px; padding: 6px 12px; border-radius: 8px; border: 1.5px dashed var(--brand); background: var(--brand-soft); color: var(--brand-deep); font-size: 12.5px; font-weight: 700; cursor: pointer; transition: all 0.18s ease; flex: none; }
.btn-skip-field:hover { background: var(--brand); color: #fff; border-style: solid; }
.field-tip-inline { font-size: 12px; color: var(--muted); font-weight: 500; line-height: 1.35; flex: 1; min-width: 180px; }



