/* ═══ KODA OFFRES · Swiss minimal + liquid glass (forked from Dolly v0.3) ═══ */

:root {
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;

  --sans: 'Helvetica Neue', Helvetica, 'Inter', Arial, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ─── Light theme (default) ─────────────────────────────────────── */
:root, [data-theme="light"] {
  --bg:           #F4F4F6;
  --bg-deep:      #ECECEF;
  --surface:      #FFFFFF;
  --surface-2:    #F8F8FA;

  --ink:          #0A0A0B;
  --ink-2:        #2A2A2E;
  --muted:        #6B6B72;
  --faint:        #A0A0A8;
  --whisper:      #C8C8CE;

  --hair:         rgba(10, 10, 11, 0.08);
  --hair-2:       rgba(10, 10, 11, 0.14);
  --hair-strong:  rgba(10, 10, 11, 0.22);

  --glass:        rgba(255, 255, 255, 0.55);
  --glass-2:      rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.6);

  --shadow-sm: 0 1px 2px rgba(10, 10, 11, 0.06);
  --shadow-md: 0 4px 16px -6px rgba(10, 10, 11, 0.12), 0 1px 2px rgba(10, 10, 11, 0.04);
  --shadow-lg: 0 30px 80px -30px rgba(10, 10, 11, 0.35), 0 8px 24px -12px rgba(10, 10, 11, 0.12);

  --blob-a: #B8C5FF;
  --blob-b: #FFC9D9;
  --blob-c: #C8F0DC;
  --blob-opacity: 0.55;

  /* ── Accent colors (chips, badges) — derived from blob palette ── */
  --accent-blue:        #4A5CC0;
  --accent-blue-soft:   rgba(74, 92, 192, 0.10);
  --accent-blue-border: rgba(74, 92, 192, 0.18);

  --accent-rose:        #B53D65;
  --accent-rose-soft:   rgba(181, 61, 101, 0.10);
  --accent-rose-border: rgba(181, 61, 101, 0.18);

  --accent-mint:        #2F7A52;
  --accent-mint-soft:   rgba(47, 122, 82, 0.10);
  --accent-mint-border: rgba(47, 122, 82, 0.18);
}

/* ─── Dark theme ─────────────────────────────────────────────────── */
[data-theme="dark"] {
  --bg:           #08080A;
  --bg-deep:      #050506;
  --surface:      #131316;
  --surface-2:    #1B1B1F;

  --ink:          #FAFAFB;
  --ink-2:        #E4E4E8;
  --muted:        #8E8E96;
  --faint:        #5A5A62;
  --whisper:      #3A3A42;

  --hair:         rgba(255, 255, 255, 0.08);
  --hair-2:       rgba(255, 255, 255, 0.14);
  --hair-strong:  rgba(255, 255, 255, 0.24);

  --glass:        rgba(22, 22, 26, 0.55);
  --glass-2:      rgba(22, 22, 26, 0.78);
  --glass-border: rgba(255, 255, 255, 0.08);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px -8px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 30px 80px -30px rgba(0, 0, 0, 0.9), 0 8px 24px -12px rgba(0, 0, 0, 0.5);

  --blob-a: #3B4DA8;
  --blob-b: #8B3D6A;
  --blob-c: #2B6B58;
  --blob-opacity: 0.32;

  /* ── Accent colors (chips, badges) — luminous variants for dark bg ── */
  --accent-blue:        #8E9DFF;
  --accent-blue-soft:   rgba(142, 157, 255, 0.14);
  --accent-blue-border: rgba(142, 157, 255, 0.28);

  --accent-rose:        #FF8FB0;
  --accent-rose-soft:   rgba(255, 143, 176, 0.14);
  --accent-rose-border: rgba(255, 143, 176, 0.28);

  --accent-mint:        #7FD8AB;
  --accent-mint-soft:   rgba(127, 216, 171, 0.14);
  --accent-mint-border: rgba(127, 216, 171, 0.28);
}

/* ─── Base ───────────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  letter-spacing: -0.005em;
  transition: background .4s var(--ease), color .4s var(--ease);
  overflow-x: hidden;
}

/* Ambient color blobs — the "liquid" of liquid glass */
body::before, body::after {
  content: '';
  position: fixed;
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  filter: blur(120px);
  opacity: var(--blob-opacity);
  transition: opacity .4s var(--ease), background .4s var(--ease);
}
body::before {
  top: -200px; left: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blob-a), transparent 70%);
}
body::after {
  bottom: -200px; right: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--blob-b), transparent 70%);
}
.blob-3 {
  position: fixed;
  top: 40%; left: 50%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blob-c), transparent 70%);
  filter: blur(120px);
  opacity: var(--blob-opacity);
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  transition: opacity .4s var(--ease), background .4s var(--ease);
}

button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; padding: 0; }
a { color: inherit; text-decoration: none; }

/* ─── Layout ─────────────────────────────────────────────────────── */
.app {
  display: grid;
  grid-template-rows: 60px 1fr auto;
  min-height: 100vh;
}

/* ═══ HEADER ═══════════════════════════════════════════════════════ */
.header {
  position: sticky; top: 0; z-index: 30;
  background: var(--glass-2);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-logo {
  height: 28px; width: auto;
  display: block;
}
.brand-name {
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-name small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: -2px;
}

.header-actions {
  display: flex; align-items: center; gap: 8px;
}
.icon-btn {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  color: var(--muted);
  transition: background .15s, color .15s;
}
.icon-btn:hover { background: var(--hair); color: var(--ink); }
.icon-btn svg { width: 18px; height: 18px; }

.header-cta {
  height: 36px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  background: var(--ink);
  color: var(--bg);
  display: inline-flex; align-items: center; gap: 6px;
  transition: opacity .15s, transform .15s;
}
.header-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* ═══ WORKSPACE (single column) ════════════════════════════════════ */
.workspace {
  padding: 64px 32px 96px;
}
.workspace-inner {
  max-width: 980px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.h1 {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 16px;
}
.h2 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 18px;
}
.h3 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 8px;
}
.lead {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 48px;
  max-width: 58ch;
  letter-spacing: -0.005em;
  line-height: 1.55;
}

/* ─── HERO ──────────────────────────────────────────────────────── */
.hero {
  text-align: left;
  padding: 24px 0 16px;
}

/* ─── SECTIONS ──────────────────────────────────────────────────── */
.section {
  margin-top: 72px;
}
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
}
.section-meta {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

/* ─── TIER GRID (les 4 formules) ────────────────────────────────── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.tier-card {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  box-shadow: var(--shadow-sm);
}
.tier-card:hover,
.tier-card.anim-fade-up.is-in:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--hair-strong);
}

.tier-card.is-featured {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 1px var(--accent-blue), var(--shadow-md);
}
.tier-card.is-featured::before {
  content: '✦ La plus demandée';
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent-blue);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px -4px rgba(74, 92, 192, 0.5);
}
.tier-card.is-premium {
  border-color: var(--accent-rose);
  box-shadow: 0 0 0 1px var(--accent-rose-soft), var(--shadow-sm);
}
.tier-card.is-premium::before {
  content: '◆ Sur devis · production complète';
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent-rose);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px -4px rgba(181, 61, 101, 0.5);
}

/* ─── CHIPS — colored tags ──────────────────────────────────────── */
.tier-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.chip {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  white-space: nowrap;
}
.chip--photo {
  background: var(--accent-blue-soft);
  color: var(--accent-blue);
  border-color: var(--accent-blue-border);
}
.chip--video {
  background: var(--accent-rose-soft);
  color: var(--accent-rose);
  border-color: var(--accent-rose-border);
}
.chip--mint {
  background: var(--accent-mint-soft);
  color: var(--accent-mint);
  border-color: var(--accent-mint-border);
}
.chip--neutral {
  background: var(--hair);
  color: var(--ink-2);
  border-color: var(--hair-2);
}

.tier-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.tier-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.15;
}
.tier-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 22px;
  letter-spacing: -0.005em;
}

.tier-price {
  font-family: var(--mono);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1;
}
.tier-price-suffix {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 22px;
  letter-spacing: -0.005em;
}

.tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier-list li {
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  line-height: 1.4;
  padding-left: 18px;
  position: relative;
}

/* ─── Non-inclus / upgrade hint ─────────────────────────────────── */
.tier-locked {
  list-style: none;
  padding: 14px 0 0;
  margin: 0 0 22px;
  border-top: 1px dashed var(--hair-2);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier-locked li {
  font-size: 12px;
  color: var(--faint);
  letter-spacing: -0.005em;
  line-height: 1.45;
  padding-left: 18px;
  position: relative;
}
.tier-locked li::before {
  content: '';
  position: absolute;
  left: 0; top: 5px;
  width: 12px; height: 12px;
  background-color: var(--muted);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'><line x1='2.5' y1='2.5' x2='9.5' y2='9.5'/><line x1='9.5' y1='2.5' x2='2.5' y2='9.5'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'><line x1='2.5' y1='2.5' x2='9.5' y2='9.5'/><line x1='9.5' y1='2.5' x2='2.5' y2='9.5'/></svg>") center/contain no-repeat;
}
.tier-locked li strong {
  color: var(--muted);
  font-weight: 500;
}
.tier-locked .up {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-style: italic;
  color: var(--accent-blue);
  letter-spacing: 0.005em;
}
.tier-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-left: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: rotate(-45deg) translate(2px, -2px);
}

.tier-cta {
  margin-top: auto;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--hair-2);
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  transition: background .15s, border-color .15s, transform .15s;
  cursor: pointer;
}
.tier-cta:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.tier-card.is-featured .tier-cta {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.tier-card.is-featured .tier-cta:hover {
  opacity: 0.9;
}

/* ─── INCLUS — strip horizontal sous les cards ─────────────────── */
.included {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.included-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.included-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 13px;
  color: var(--ink-2);
  flex: 1;
  min-width: 200px;
}
.included-list span {
  position: relative;
  padding-left: 14px;
}
.included-list span::before {
  content: '·';
  position: absolute;
  left: 4px; top: -1px;
  color: var(--faint);
  font-size: 16px;
}
.included-list span:first-child { padding-left: 0; }
.included-list span:first-child::before { display: none; }

/* ─── OPTIONS TABLE ─────────────────────────────────────────────── */
.options-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.options-table th,
.options-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 13px;
  letter-spacing: -0.005em;
}
.options-table th {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--hair);
}
.options-table td {
  color: var(--ink-2);
  border-bottom: 1px solid var(--hair);
}
.options-table tr:last-child td {
  border-bottom: 0;
}
.options-table td.price {
  text-align: right;
  font-family: var(--mono);
  color: var(--ink);
  white-space: nowrap;
}
.options-table th.price {
  text-align: right;
}

/* ─── CONDITIONS BLOCK ──────────────────────────────────────────── */
.conditions {
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
}
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.conditions-item h3 {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.conditions-item p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.5;
  letter-spacing: -0.005em;
}

/* ─── CTA SECTION ───────────────────────────────────────────────── */
.cta-section {
  margin-top: 80px;
  padding: 56px 48px;
  background: var(--glass-2);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-section h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 0 12px;
}
.cta-section p {
  font-size: 15px;
  color: var(--muted);
  margin: 0 auto 28px;
  max-width: 52ch;
  letter-spacing: -0.005em;
  line-height: 1.55;
}
.cta-buttons {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-primary {
  height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  background: var(--ink);
  color: var(--bg);
  display: inline-flex; align-items: center; gap: 8px;
  transition: opacity .15s, transform .15s;
}
.cta-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.cta-secondary {
  height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--hair-2);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .15s, border-color .15s, transform .15s;
}
.cta-secondary:hover {
  background: var(--surface-2);
  border-color: var(--hair-strong);
  transform: translateY(-1px);
}

/* ─── FOOTER ────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--hair);
  padding: 32px;
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}
.footer-inner a {
  color: var(--ink-2);
  transition: color .15s;
}
.footer-inner a:hover { color: var(--ink); }
.footer-legal {
  font-family: var(--mono);
  letter-spacing: 0.01em;
  font-size: 11px;
}

/* ─── RESPONSIVE ────────────────────────────────────────────────── */
/* ─── RESPONSIVE breakpoints ────────────────────────────────────── */

/* Tablet & below */
@media (max-width: 920px) {
  .workspace-inner { max-width: 100%; }
  .tier-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .header { padding: 0 16px; }
  .workspace { padding: 32px 16px 56px; }
  .h1 { font-size: 28px; line-height: 1.12; }
  .lead { font-size: 14px; margin-bottom: 32px; }
  .section { margin-top: 48px; }
  .section-head { margin-bottom: 22px; }
  .section-title { font-size: 18px; }
  .cta-section { padding: 36px 20px; margin-top: 56px; }
  .cta-section h2 { font-size: 20px; }
  .cta-section p { font-size: 14px; }

  .tier-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .tier-card { padding: 22px 18px 18px; }
  .tier-title { font-size: 20px; }
  .tier-price { font-size: 26px; }
  .tier-title { font-size: 20px; }
  .tier-price { font-size: 26px; }

  .options-table { font-size: 13px; }
  .options-table th,
  .options-table td { padding: 12px 14px; font-size: 12.5px; }
  .options-table th { font-size: 10px; }

  .brand { gap: 10px; }
  .brand-logo { height: 24px; }
  .brand-name { font-size: 13px; }
  .brand-name small { font-size: 9px; }

  .included {
    padding: 16px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .included-list {
    flex-direction: column;
    gap: 6px;
  }
  .included-list span { padding-left: 0; }
  .included-list span::before { display: none; }

  .conditions { padding: 20px 22px; }
  .conditions-grid { gap: 18px; }
}

@media (max-width: 480px) {
  .header { padding: 0 14px; }
  .header-cta { display: none; }
  .workspace { padding: 24px 14px 48px; }
  .h1 { font-size: 24px; }
  .lead { font-size: 13.5px; }
  .footer { padding: 24px 16px; }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
  }
  .footer-legal { font-size: 10px; }

  /* Badges featured/premium — raccourcis + ajustés */
  .tier-card.is-featured::before { content: '✦ La plus demandée'; font-size: 9px; padding: 4px 11px; top: -10px; }
  .tier-card.is-premium::before { content: '◆ Production complète'; font-size: 9px; padding: 4px 11px; top: -10px; }

  .tier-tags { gap: 5px; margin-bottom: 12px; }
  .chip { height: 20px; padding: 0 8px; font-size: 10px; }

  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-primary, .cta-secondary { width: 100%; justify-content: center; }
}

/* Modal mobile : 1 col d'options, plus de respiration */
@media (max-width: 420px) {
  .modal { padding: 24px 20px; border-radius: 18px; }
  .modal-title { font-size: 16px; }
  .modal-sub { font-size: 12px; }
  .mail-options { grid-template-columns: 1fr; gap: 8px; }
  .mail-option { padding: 12px 14px; }
  .modal-foot { flex-direction: column; align-items: stretch; gap: 10px; }
  .modal-foot-copy { justify-content: center; }
  .modal-foot-email { text-align: center; font-size: 11px; }
}

/* Drawer mobile : full width */
@media (max-width: 380px) {
  .drawer { width: 100%; }
  .drawer-body { padding: 18px; gap: 24px; }
  .drawer-head { padding: 14px 18px; }
}

/* Mobile horizontal scroll guard pour table */
@media (max-width: 720px) {
  .options-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px;
    padding: 0 16px;
  }
}

/* ─── HAMBURGER + DRAWER ────────────────────────────────────────── */
.hamburger-btn {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  color: var(--ink);
  transition: background .15s;
}
.hamburger-btn:hover { background: var(--hair); }
.hamburger-btn svg { width: 22px; height: 22px; }

.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 10, 11, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
  z-index: 40;
}
.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(380px, 88vw);
  background: var(--glass-2);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  border-left: 1px solid var(--hair);
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  z-index: 50;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--hair);
}
.drawer-head .brand {
  font-size: 14px;
}
.drawer-close {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  color: var(--muted);
  transition: background .15s, color .15s;
}
.drawer-close:hover { background: var(--hair); color: var(--ink); }
.drawer-close svg { width: 18px; height: 18px; }

.drawer-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.drawer-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin: 0 -14px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink-2);
  transition: background .15s, color .15s;
}
.drawer-link:hover { background: var(--hair); color: var(--ink); }
.drawer-link svg {
  width: 18px; height: 18px;
  color: var(--muted);
  flex-shrink: 0;
}
.drawer-link span.meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  margin-left: auto;
}

.drawer-cta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
}
.drawer-cta button {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--bg);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity .15s, transform .15s;
}
.drawer-cta button:hover { opacity: 0.9; transform: translateY(-1px); }

/* ─── MODAL — Choix messagerie ─────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 10, 11, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease);
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-xl);
  padding: 32px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  transform: scale(0.96) translateY(8px);
  opacity: 0;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.modal-overlay.is-open .modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.modal-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 4px;
}
.modal-sub {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  letter-spacing: -0.005em;
}
.modal-close {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 8px;
  color: var(--muted);
  flex-shrink: 0;
  transition: background .15s, color .15s;
}
.modal-close:hover { background: var(--hair); color: var(--ink); }
.modal-close svg { width: 16px; height: 16px; }

.mail-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.mail-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--hair);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .15s;
}
.mail-option:hover {
  background: var(--surface);
  border-color: var(--hair-strong);
  transform: translateY(-1px);
}
.mail-option svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.mail-option .ico {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 600;
  color: #FFFFFF;
  flex-shrink: 0;
}
.ico-gmail { background: #EA4335; }
.ico-outlook { background: #0078D4; }
.ico-yahoo { background: #6001D2; }
.ico-apple { background: var(--ink); color: var(--bg); }

.modal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--hair);
  flex-wrap: wrap;
}
.modal-foot-email {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: -0.005em;
  word-break: break-all;
}
.modal-foot-copy {
  height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--hair);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.modal-foot-copy:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.modal-foot-copy.is-copied {
  background: var(--accent-mint);
  color: #FFFFFF;
  border-color: var(--accent-mint);
}
.modal-foot-copy svg { width: 14px; height: 14px; }

/* Desktop nav links — visible only on desktop */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 24px;
}
.header-nav a {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--muted);
  transition: background .15s, color .15s;
}
.header-nav a:hover { color: var(--ink); background: var(--hair); }

@media (max-width: 720px) {
  .header-nav { display: none; }
}

/* Hide hamburger on desktop, show CTA */
.hamburger-btn { display: none; }
@media (max-width: 720px) {
  .hamburger-btn { display: grid; }
  .header-cta { display: none; }
  .icon-btn { display: none; }
}

/* ─── REVIEWS (avis.html) ───────────────────────────────────────── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.review-card {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.review-stars {
  display: inline-flex;
  gap: 2px;
  color: #F5B73D;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1px;
}
.review-quote {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
  letter-spacing: -0.005em;
  flex: 1;
}
.review-quote::before {
  content: '“';
  color: var(--faint);
  font-size: 22px;
  line-height: 0;
  margin-right: 2px;
  vertical-align: -6px;
}
.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--hair);
  font-size: 12px;
}
.review-author {
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.review-date {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 11px;
}

.review-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 28px;
  margin-bottom: 28px;
  background: var(--glass-2);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  flex-wrap: wrap;
}
.review-stat-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-stat-value {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.review-stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.review-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--hair-2);
}

.review-source-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--hair-2);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background .15s, border-color .15s, transform .15s;
}
.review-source-cta:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.review-source-cta svg { width: 16px; height: 16px; }

.review-source-google { color: #4285F4; font-weight: 600; }

@media (max-width: 720px) {
  .review-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .review-stat-divider { display: none; }
}

/* ─── Scroll animations (fade-up, IntersectionObserver) ─────────── */
@media (prefers-reduced-motion: no-preference) {
  .anim-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
    will-change: opacity, transform;
  }
  .anim-fade-up.is-in {
    opacity: 1;
    transform: translateY(0);
  }
  /* Stagger pour les enfants directs */
  .anim-stagger > .anim-fade-up.is-in:nth-child(1) { transition-delay: 0ms; }
  .anim-stagger > .anim-fade-up.is-in:nth-child(2) { transition-delay: 80ms; }
  .anim-stagger > .anim-fade-up.is-in:nth-child(3) { transition-delay: 160ms; }
  .anim-stagger > .anim-fade-up.is-in:nth-child(4) { transition-delay: 240ms; }
}

/* ─── Gallery (aperçu photos · masonry CSS columns) ─────────────── */
.gallery {
  column-count: 3;
  column-gap: 12px;
}
.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  margin-bottom: 12px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .55s var(--ease);
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.gallery-item:hover img {
  transform: scale(1.03);
}
@media (max-width: 720px) {
  .gallery { column-count: 2; column-gap: 8px; }
  .gallery-item { margin-bottom: 8px; }
}
@media (max-width: 480px) {
  .gallery { column-count: 1; }
  .gallery-item { margin-bottom: 10px; }
}

/* ─── FAQ accordion ─────────────────────────────────────────────── */
.faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq-item[open] {
  border-color: var(--hair-strong);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  position: relative;
  padding-right: 48px;
  transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px; height: 10px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: translateY(-65%) rotate(45deg);
  transition: transform .25s var(--ease), border-color .15s;
}
.faq-item[open] summary::after {
  transform: translateY(-25%) rotate(-135deg);
  border-color: var(--ink);
}
.faq-item summary:hover { color: var(--ink-2); }
.faq-answer {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  letter-spacing: -0.005em;
}
