/* ======= Klartey Studio — Shared Styles ======= */

  :root {
    --bg: #fafaf6;
    --bg-2: #f3eee2;
    --bg-3: #ebe3d0;
    --bg-card: #ffffff;
    --text: #0a0a0a;
    --text-2: #2a2a2a;
    --text-muted: #6b6b6b;
    --text-dim: #a3a3a3;
    --accent: #0a0a0a;
    --accent-soft: #f0ebe0;
    --gold: #c9a878;
    --gold-2: #b8915c;
    --gold-soft: #f5ead4;
    --emerald: #10b981;
    --rose: #d4a8a8;
    --border: #e7e5e0;
    --shadow-sm: 0 2px 8px rgba(10, 10, 10, 0.04);
    --shadow-md: 0 8px 28px rgba(10, 10, 10, 0.08);
    --shadow-lg: 0 24px 70px rgba(10, 10, 10, 0.12);
    --serif: 'Fraunces', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 10px;
    --radius-lg: 22px;
    --max: 1240px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: 0; background: none; }
  img { max-width: 100%; display: block; }

  .container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
  @media (max-width: 720px) { .container { padding: 0 22px; } }

  .reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-1 { transition-delay: 0.12s; }
  .reveal-2 { transition-delay: 0.24s; }
  .reveal-3 { transition-delay: 0.36s; }
  .reveal-4 { transition-delay: 0.48s; }

  .ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
  }

  /* HEADER */
  header.site {
    position: sticky; top: 0; z-index: 100;
    background: rgba(250, 250, 246, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    height: 80px;
  }
  .logo {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--sans);
    font-weight: 500;
    letter-spacing: 0.18em;
    font-size: 15px;
    text-transform: uppercase;
  }
  .logo-svg {
    width: 36px; height: 36px;
    color: var(--text);
    transition: transform 0.4s;
  }
  .logo:hover .logo-svg { transform: rotate(-6deg); }
  .logo .name { display: flex; flex-direction: column; line-height: 1.1; }
  .logo .name .top { font-size: 15px; }
  .logo .name .bot { font-size: 9px; letter-spacing: 0.3em; color: var(--text-muted); }
  .nav-links {
    display: flex; gap: 36px;
    font-size: 14.5px;
    color: var(--text-muted);
  }
  .nav-links a { transition: color 0.2s; position: relative; }
  .nav-links a:hover { color: var(--text); }
  .nav-cta {
    background: var(--text); color: var(--bg);
    padding: 11px 22px; border-radius: 999px;
    font-size: 14px; font-weight: 500;
    transition: all 0.25s;
    border: 1px solid var(--text);
  }
  .nav-cta:hover {
    background: transparent;
    color: var(--text);
  }
  @media (max-width: 880px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-burger { display: flex; }
  }

  /* MENU BURGER MOBILE */
  .nav-burger {
    display: none;
    width: 44px; height: 44px;
    border-radius: 10px;
    align-items: center; justify-content: center;
    background: var(--text);
    color: var(--bg);
    flex-direction: column;
    gap: 4px;
    z-index: 110;
    position: relative;
    transition: background 0.2s;
  }
  .nav-burger:hover { background: var(--gold-2); }
  .nav-burger .bar {
    width: 18px; height: 2px;
    background: var(--bg);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
  }
  .nav-burger.open .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-burger.open .bar:nth-child(2) { opacity: 0; }
  .nav-burger.open .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* OVERLAY MENU MOBILE */
  .mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    z-index: 105;
    display: flex;
    flex-direction: column;
    padding: 100px 32px 40px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }
  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-menu a {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--text);
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between;
    align-items: center;
    transition: color 0.2s, padding-left 0.2s;
  }
  .mobile-menu a:active { color: var(--gold-2); padding-left: 8px; }
  .mobile-menu a::after {
    content: '→';
    color: var(--gold-2);
    font-size: 22px;
    font-style: normal;
  }
  .mobile-menu .mm-cta {
    margin-top: 28px;
    background: linear-gradient(90deg, var(--gold), var(--gold-2));
    color: white;
    border: 0;
    border-radius: 999px;
    padding: 20px 28px;
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(201, 168, 120, 0.35);
  }
  .mobile-menu .mm-cta::after { display: none; }
  body.menu-open { overflow: hidden; }

  /* CUSTOM CURSOR */
  .k-cursor-dot, .k-cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .k-cursor-dot {
    width: 6px; height: 6px;
    background: var(--gold-2);
    transition: transform 0.1s, width 0.3s, height 0.3s;
  }
  .k-cursor-ring {
    width: 38px; height: 38px;
    border: 1px solid var(--gold);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), height 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, opacity 0.3s;
    opacity: 0.7;
  }
  .k-cursor-ring.active {
    width: 70px; height: 70px;
    border-color: var(--gold-2);
    background: rgba(201, 168, 120, 0.08);
  }
  @media (max-width: 720px) { .k-cursor-dot, .k-cursor-ring { display: none; } }

  /* HERO */
  .hero {
    padding: 120px 0 140px;
    position: relative; overflow: hidden;
    min-height: 100vh;
    display: flex; align-items: center;
  }
  @media (max-width: 720px) {
    .hero { padding: 80px 0 90px; min-height: auto; }
    .hero-content::before { display: none; }
  }
  .hero .ambient-blob:nth-child(1) {
    width: 540px; height: 540px;
    background: var(--gold);
    top: -150px; left: -200px;
    opacity: 0.22;
    animation: drift 20s ease-in-out infinite;
    z-index: 1;
  }
  .hero .ambient-blob:nth-child(2) {
    width: 480px; height: 480px;
    background: var(--gold);
    top: 100px; right: -150px;
    opacity: 0.18;
    animation: drift 22s ease-in-out infinite reverse;
    z-index: 1;
  }
  .hero .ambient-blob:nth-child(3) {
    width: 320px; height: 320px;
    background: var(--rose);
    bottom: -100px; left: 40%;
    opacity: 0.22;
    animation: drift 28s ease-in-out infinite;
    z-index: 1;
  }
  @keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.05); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
  }

  /* HERO MOCKUPS BACKGROUND */
  .hero-mockups {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    display: flex;
    gap: 24px;
    padding: 0 24px;
    transform: skewY(-8deg) scale(1.1);
    transform-origin: center;
    overflow: hidden;
    opacity: 0.55;
    mask-image: radial-gradient(ellipse 80% 60% at center, transparent 0%, transparent 25%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.85) 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at center, transparent 0%, transparent 25%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.85) 100%);
  }
  @media (max-width: 720px) { .hero-mockups { opacity: 0.25; transform: skewY(-6deg) scale(1.3); } }

  .mockup-col {
    flex: 1;
    display: flex; flex-direction: column;
    gap: 24px;
    height: max-content;
  }
  .mockup-col.col-1 { animation: scrollDown 60s linear infinite; }
  .mockup-col.col-2 {
    margin-top: -120px;
    animation: scrollUp 70s linear infinite;
  }
  .mockup-col.col-3 { animation: scrollDown 80s linear infinite; }
  .mockup-col.col-4 {
    margin-top: -200px;
    animation: scrollUp 65s linear infinite;
  }
  @media (max-width: 900px) { .mockup-col.col-4 { display: none; } }
  @media (max-width: 720px) { .mockup-col.col-3 { display: none; } }

  @keyframes scrollUp {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
  }
  @keyframes scrollDown {
    from { transform: translateY(-50%); }
    to { transform: translateY(0); }
  }

  .mockup {
    aspect-ratio: 4/3;
    background: white;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(10, 10, 10, 0.12), 0 4px 12px rgba(10, 10, 10, 0.06);
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
    flex-shrink: 0;
  }
  .mockup .mk-bar {
    height: 18px;
    background: #f5f4ef;
    display: flex; align-items: center;
    padding: 0 8px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .mockup .mk-bar span {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #ccc;
  }
  .mockup .mk-content {
    padding: 14px 14px;
    height: calc(100% - 18px);
    display: flex; flex-direction: column;
    gap: 8px;
  }
  .mockup .mk-title {
    font-family: var(--serif);
    font-size: 13px;
    font-style: italic;
    line-height: 1;
  }
  .mockup .mk-bars {
    display: flex; flex-direction: column;
    gap: 4px; margin-top: auto;
  }
  .mockup .mk-bars span {
    height: 5px;
    border-radius: 2px;
    opacity: 0.5;
  }

  /* Variations de mockups */
  .mockup.mk-photo .mk-content { background: linear-gradient(135deg, #1a1a1a, #4a3a2a); color: white; }
  .mockup.mk-photo .mk-bars span { background: rgba(201, 168, 120, 0.7); }
  .mockup.mk-photo .mk-bars span:nth-child(1) { width: 80%; }
  .mockup.mk-photo .mk-bars span:nth-child(2) { width: 60%; }

  .mockup.mk-resto .mk-content { background: linear-gradient(160deg, #2a1810, #6b2a1a); color: white; }
  .mockup.mk-resto .mk-bars span { background: rgba(196, 77, 44, 0.6); }
  .mockup.mk-resto .mk-bars span:nth-child(1) { width: 90%; }
  .mockup.mk-resto .mk-bars span:nth-child(2) { width: 70%; }

  .mockup.mk-archi .mk-content { background: linear-gradient(160deg, #faf8f3, #d4c4a8); color: #2a1810; }
  .mockup.mk-archi .mk-bars span { background: rgba(107, 82, 48, 0.4); }
  .mockup.mk-archi .mk-bars span:nth-child(1) { width: 85%; }
  .mockup.mk-archi .mk-bars span:nth-child(2) { width: 65%; }

  .mockup.mk-yoga .mk-content { background: linear-gradient(160deg, #e8ede2, #8a9b76); color: #2a3622; }
  .mockup.mk-yoga .mk-bars span { background: rgba(42, 54, 34, 0.3); }
  .mockup.mk-yoga .mk-bars span:nth-child(1) { width: 75%; }
  .mockup.mk-yoga .mk-bars span:nth-child(2) { width: 55%; }

  .mockup.mk-coach .mk-content { background: linear-gradient(160deg, #14141c, #2a2418); color: #d4af6d; }
  .mockup.mk-coach .mk-bars span { background: rgba(212, 175, 109, 0.6); }
  .mockup.mk-coach .mk-bars span:nth-child(1) { width: 92%; }
  .mockup.mk-coach .mk-bars span:nth-child(2) { width: 70%; }

  .mockup.mk-psy .mk-content { background: linear-gradient(160deg, #ede4d3, #a08862); color: #2a1810; }
  .mockup.mk-psy .mk-bars span { background: rgba(107, 82, 48, 0.4); }
  .mockup.mk-psy .mk-bars span:nth-child(1) { width: 80%; }
  .mockup.mk-psy .mk-bars span:nth-child(2) { width: 60%; }

  .mockup.mk-mariage .mk-content { background: linear-gradient(160deg, #f5e6d3, #d4a8a8); color: #6b2a1a; }
  .mockup.mk-mariage .mk-bars span { background: rgba(212, 168, 168, 0.6); }
  .mockup.mk-mariage .mk-bars span:nth-child(1) { width: 70%; }
  .mockup.mk-mariage .mk-bars span:nth-child(2) { width: 50%; }

  .mockup.mk-creative .mk-content { background: linear-gradient(160deg, #fff8e7, #c9a878); color: #2a1810; }
  .mockup.mk-creative .mk-bars span { background: rgba(184, 145, 92, 0.5); }
  .mockup.mk-creative .mk-bars span:nth-child(1) { width: 88%; }
  .mockup.mk-creative .mk-bars span:nth-child(2) { width: 65%; }

  /* Floating sparkles */
  .hero-sparkles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
  }
  .float-spark {
    position: absolute;
    color: var(--gold);
    font-size: 14px;
    animation: floatUp 12s linear infinite;
    opacity: 0;
  }
  @keyframes floatUp {
    0% { transform: translateY(100vh) rotate(0); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
  }

  /* Hero text reveal */
  .hero h1 .word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
  }
  .hero h1 .word-anim {
    display: inline-block;
    transform: translateY(120%);
    animation: wordReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  @keyframes wordReveal {
    to { transform: translateY(0); }
  }

  .hero-content { position: relative; z-index: 3; text-align: center; max-width: 920px; margin: 0 auto; }
  .hero-content::before {
    content: '';
    position: absolute;
    inset: -40px -80px;
    background: radial-gradient(ellipse at center, rgba(250, 250, 246, 0.85) 0%, rgba(250, 250, 246, 0.7) 50%, transparent 80%);
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(20px);
  }
  .hero-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px; color: var(--text-muted);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
  }
  .hero-pill .dot {
    width: 7px; height: 7px;
    background: var(--emerald);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
  }

  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(48px, 8vw, 100px);
    line-height: 0.98;
    font-weight: 500;
    letter-spacing: -0.035em;
    margin-bottom: 32px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold-2);
    position: relative;
  }
  .hero h1 .sparkle {
    display: inline-block;
    color: var(--gold);
    font-size: 0.6em;
    vertical-align: super;
    animation: twinkle 3s ease-in-out infinite;
    margin-left: 4px;
  }
  @keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0); }
    50% { opacity: 0.6; transform: scale(1.2) rotate(15deg); }
  }
  .hero-sparkle {
    text-align: center;
    margin: 24px auto 36px;
  }
  .hero-sparkle .sparkle {
    display: inline-block;
    color: var(--gold);
    font-size: 28px;
    animation: twinkle 3s ease-in-out infinite;
  }
  .hero-sub {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--text-2);
    max-width: 660px;
    margin: 0 auto 44px;
    line-height: 1.6;
  }
  .hero-cta {
    display: flex; gap: 14px; justify-content: center;
    flex-wrap: wrap; margin-bottom: 44px;
  }
  .btn {
    padding: 16px 30px;
    border-radius: 999px;
    font-weight: 500; font-size: 15px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid transparent;
    font-family: inherit;
  }
  .btn-primary {
    background: var(--text); color: var(--bg);
    box-shadow: 0 4px 0 #1a1a1a, 0 10px 30px rgba(10, 10, 10, 0.25);
  }
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 0 #1a1a1a, 0 14px 40px rgba(10, 10, 10, 0.3);
    background: var(--gold-2);
  }
  .btn-secondary {
    background: var(--bg-card); color: var(--text);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
  }
  .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--text);
  }

  .hero-trust {
    display: flex; justify-content: center; align-items: center;
    gap: 32px; flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 13.5px;
  }
  .hero-trust span {
    display: inline-flex; align-items: center; gap: 8px;
  }
  .hero-trust .checkmark {
    color: var(--gold-2);
    font-weight: 700;
  }

  /* TRUST MARQUEE — ticker promesses */
  .trust-marquee {
    background: var(--text);
    color: var(--bg);
    padding: 22px 0;
    overflow: hidden;
    border-top: 1px solid var(--text);
    border-bottom: 1px solid var(--text);
    position: relative;
  }
  .trust-marquee .marquee-track {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 38s linear infinite;
    white-space: nowrap;
    width: max-content;
  }
  .trust-marquee .marquee-track span {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(20px, 2.2vw, 28px);
    color: var(--gold);
    font-weight: 400;
    display: inline-flex;
    align-items: center;
  }
  @keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* TABLEAU COMPARATIF — version équilibrée */
  .compare-section {
    background: var(--bg-2);
    position: relative;
  }
  .compare-table-wrap {
    margin-top: 30px;
    background: transparent;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  @media (max-width: 720px) {
    .compare-table-wrap {
      margin-left: -22px; margin-right: -22px;
      padding: 0 22px;
    }
    .compare-table-wrap::after {
      content: '← faites défiler →';
      display: block;
      text-align: center;
      margin-top: 14px;
      font-size: 12px;
      color: var(--text-muted);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-style: italic;
    }
  }
  .compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 760px;
    background: var(--card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
  }
  .compare-table th, .compare-table td {
    padding: 22px 26px;
    text-align: center;
    font-size: 14.5px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    color: var(--text-2);
  }
  .compare-table thead th {
    font-family: var(--sans);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    font-weight: 700;
    padding: 22px 24px;
    background: var(--bg-2);
    border-bottom: 2px solid var(--border);
  }
  .compare-table thead th:first-child { background: var(--card); }
  /* Colonne featured (Klartey) — fond crème doré au lieu de noir */
  .compare-table thead th.featured {
    background: linear-gradient(180deg, var(--gold-soft) 0%, #f8e8c2 100%);
    color: var(--text);
    position: relative;
    border-bottom: 2px solid var(--gold);
    padding-top: 36px !important;
    padding-bottom: 24px !important;
  }
  .recommend-badge {
    position: absolute;
    top: 10px; left: 50%;
    transform: translateX(-50%);
    background: var(--text);
    color: var(--gold);
    font-size: 11px;
    padding: 5px 14px;
    border-radius: 999px;
    letter-spacing: 0.2em;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(10, 10, 10, 0.25);
    display: inline-block;
  }
  .compare-table thead th.featured .col-name {
    font-size: 14px;
    color: var(--text);
    font-weight: 800;
    letter-spacing: 0.15em;
  }
  /* Première colonne (libellés) */
  .compare-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text);
    background: var(--card);
    font-family: var(--serif);
    font-size: 17px;
    padding-left: 28px;
  }
  /* Cellules colonne featured */
  .compare-table tbody td.featured {
    background: rgba(212, 168, 108, 0.08);
    color: var(--text);
    font-weight: 600;
    border-left: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
  }
  .compare-table tbody td.featured strong {
    color: var(--gold-2);
    font-weight: 700;
  }
  .compare-table tbody tr:last-child td { border-bottom: 0; }
  .compare-table tbody tr:hover td:not(.featured):not(:first-child) {
    background: var(--bg-2);
  }
  .compare-check { color: var(--green); font-weight: 700; font-size: 20px; }
  .compare-cross { color: #c0392b; font-weight: 700; font-size: 20px; }
  .compare-meh { color: var(--text-muted); font-style: italic; font-size: 13.5px; }

  /* SECTION BASE */
  section.block { padding: 140px 0; position: relative; }
  @media (max-width: 980px) { section.block { padding: 90px 0; } }
  @media (max-width: 720px) { section.block { padding: 70px 0; } }
  @media (max-width: 540px) { section.block { padding: 56px 0; } }
  @media (max-width: 720px) {
    .section-head { margin-bottom: 50px; }
  }
  .section-head { text-align: center; max-width: 700px; margin: 0 auto 80px; }
  .section-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gold-soft);
    color: var(--gold-2);
    font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.18em; font-weight: 600;
    border-radius: 999px;
    margin-bottom: 20px;
  }
  h2 {
    font-family: var(--serif);
    font-size: clamp(36px, 5.5vw, 60px);
    line-height: 1.05; font-weight: 500;
    letter-spacing: -0.025em;
    margin-bottom: 22px;
  }
  h2 em { font-style: italic; color: var(--gold-2); }
  .section-sub {
    font-size: 18px;
    color: var(--text-2);
    line-height: 1.65;
  }

  /* POUR QUI */
  .for-who { background: var(--bg); }
  .audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  @media (max-width: 880px) { .audience-grid { grid-template-columns: 1fr; } }
  .audience-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; overflow: hidden;
  }
  .audience-card::before {
    content: ""; position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--text), var(--gold));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
  }
  .audience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-soft);
  }
  .audience-card:hover::before { transform: translateX(0); }
  .audience-emoji {
    font-size: 40px;
    margin-bottom: 22px;
    display: inline-block;
    transition: transform 0.4s;
  }
  .audience-card:hover .audience-emoji { transform: scale(1.15) rotate(-5deg); }
  .audience-card h3 {
    font-family: var(--serif);
    font-size: 26px; font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .audience-card p {
    color: var(--text-muted);
    font-size: 15px; line-height: 1.65;
  }
  .audience-card .examples {
    margin-top: 18px; padding-top: 18px;
    border-top: 1px solid var(--border);
    font-size: 13px; color: var(--text-dim);
    font-style: italic;
  }

  /* SHOWCASE 3D */
  .showcase {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
    position: relative; overflow: hidden;
  }
  .showcase .ambient-blob:nth-child(1) {
    width: 600px; height: 600px;
    background: var(--gold);
    top: 20%; left: -250px;
    opacity: 0.1;
  }
  .showcase .ambient-blob:nth-child(2) {
    width: 500px; height: 500px;
    background: var(--gold);
    bottom: 10%; right: -200px;
    opacity: 0.13;
  }

  .demo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
    perspective: 2000px;
  }
  @media (max-width: 900px) { .demo-grid { grid-template-columns: 1fr; gap: 50px; } }

  .demo-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s;
    box-shadow: var(--shadow-md);
    position: relative;
    cursor: pointer;
    display: block;
  }
  .demo-card:hover {
    transform: translateY(-12px) rotateX(2deg) rotateY(-3deg);
    box-shadow: var(--shadow-lg), 0 30px 80px rgba(201, 168, 120, 0.2);
  }
  .demo-mock {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    background: var(--bg-2);
  }
  .demo-browser {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 10px 14px;
    display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .demo-browser .dots { display: flex; gap: 5px; }
  .demo-browser .dots span {
    width: 9px; height: 9px;
    border-radius: 50%;
  }
  .demo-browser .dots span:nth-child(1) { background: #ff5f57; }
  .demo-browser .dots span:nth-child(2) { background: #febc2e; }
  .demo-browser .dots span:nth-child(3) { background: #28c840; }
  .demo-browser .url {
    flex: 1;
    background: var(--bg-2);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11.5px;
    color: var(--text-muted);
    margin-left: 10px;
  }
  .demo-content { height: calc(100% - 36px); position: relative; overflow: hidden; }

  /* === REAL PHOTO BACKGROUND POUR CARDS DÉMO === */
  .mock-photo,
  .mock-psy,
  .mock-coach,
  .mock-salon {
    position: relative;
    overflow: hidden;
  }
  .mock-photo::after,
  .mock-psy::after,
  .mock-coach::after,
  .mock-salon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
    transition: opacity 0.5s;
  }
  .demo-card:hover .mock-photo::after,
  .demo-card:hover .mock-psy::after,
  .demo-card:hover .mock-coach::after,
  .demo-card:hover .mock-salon::after {
    opacity: 0.8;
  }
  .mock-photo > *,
  .mock-psy > *,
  .mock-coach > *,
  .mock-salon > * {
    position: relative;
    z-index: 2;
  }

  /* Photo de fond pour chaque démo */
  .mock-photo {
    background-color: #1a1a1a;
    background-image: url('https://images.unsplash.com/photo-1452587925148-ce544e77e70d?auto=format&fit=crop&w=900&q=80');
    background-size: cover;
    background-position: center;
    transition: background-size 0.6s, transform 0.6s;
    padding: 30px 28px;
    color: white;
    height: 100%;
    display: flex; flex-direction: column;
  }
  .demo-card:hover .mock-photo {
    background-size: 110% auto;
  }

  .mock-photo-old {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2418 100%);
    padding: 30px 28px;
    color: white;
    height: 100%;
    display: flex; flex-direction: column;
    position: relative;
  }
  .mock-photo::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(201, 168, 120, 0.35), transparent 60%);
    pointer-events: none;
  }
  .mock-photo .ph-name {
    font-family: var(--serif);
    font-style: italic;
    font-size: 28px;
    margin-bottom: 4px;
    z-index: 1;
  }
  .mock-photo .ph-tag {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 18px;
    z-index: 1;
  }
  .mock-photo .ph-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 6px;
    flex: 1;
    z-index: 1;
    transform-style: preserve-3d;
  }
  .mock-photo .ph-gallery div {
    border-radius: 6px;
    transition: transform 0.5s;
  }
  .mock-photo .ph-gallery div:nth-child(1) {
    grid-row: 1 / 3;
    background: linear-gradient(135deg, #6b5230, #c9a878);
    transform: translateZ(20px);
  }
  .mock-photo .ph-gallery div:nth-child(2) {
    background: linear-gradient(45deg, #c9a878, #b89060);
    transform: translateZ(10px);
  }
  .mock-photo .ph-gallery div:nth-child(3) {
    background: linear-gradient(135deg, #4a3a2a, #8b7250);
    transform: translateZ(15px);
  }
  .mock-photo .ph-gallery div:nth-child(4) {
    background: linear-gradient(45deg, #8b7250, #c9a878);
    transform: translateZ(8px);
  }
  .mock-photo .ph-gallery div:nth-child(5) {
    background: linear-gradient(135deg, #d4a878, #a08050);
    transform: translateZ(12px);
  }
  .demo-card:hover .mock-photo .ph-gallery div { transform: translateZ(0); }

  /* Mock Psy */
  .mock-psy {
    background-color: #6b5e4a;
    background-image: url('assets/coline-cabinet.jpg');
    background-size: cover;
    background-position: center;
    transition: background-size 0.6s;
    padding: 30px 28px;
    height: 100%;
    color: white;
  }
  .demo-card:hover .mock-psy { background-size: 110% auto; }
  .mock-psy-old {
    background: linear-gradient(160deg, #ede4d3 0%, #d4c4a8 60%, #a08862 100%);
    padding: 30px 28px;
    height: 100%;
    color: #3a2a1a;
    position: relative;
  }
  .mock-psy .psy-name {
    font-family: var(--serif);
    font-style: italic;
    font-size: 30px;
    margin-bottom: 4px;
    color: white;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  }
  .mock-psy .psy-tag {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
  .mock-psy .psy-circle {
    position: absolute;
    bottom: -40px; right: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
  }
  .mock-psy .psy-bars {
    display: flex; flex-direction: column; gap: 8px;
    margin-top: 12px;
  }
  .mock-psy .psy-bars span {
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 4px;
  }
  .mock-psy .psy-bars span:nth-child(1) { width: 90%; }
  .mock-psy .psy-bars span:nth-child(2) { width: 70%; }
  .mock-psy .psy-bars span:nth-child(3) { width: 80%; }

  /* Mock Coach */
  .mock-coach {
    background-color: #1a1a1a;
    background-image: url('https://images.unsplash.com/photo-1552581234-26160f608093?auto=format&fit=crop&w=900&q=80');
    background-size: cover;
    background-position: center;
    transition: background-size 0.6s;
    padding: 30px 28px;
    height: 100%;
    color: white;
  }
  .demo-card:hover .mock-coach { background-size: 110% auto; }
  .mock-coach-old {
    background: linear-gradient(135deg, #0a0a0a 0%, #1c1c1c 50%, #2a2418 100%);
    padding: 30px 28px;
    height: 100%;
    color: white;
    position: relative;
    overflow: hidden;
  }
  .mock-coach::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 20% 80%, rgba(201, 168, 120, 0.3), transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(201, 168, 120, 0.2), transparent 50%);
  }
  .mock-coach > * { position: relative; z-index: 1; }
  .mock-coach .co-name {
    font-family: var(--serif);
    font-size: 26px;
    margin-bottom: 4px;
  }
  .mock-coach .co-name em { color: var(--gold); font-style: italic; }
  .mock-coach .co-tag {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 22px;
  }
  .mock-coach .co-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .mock-coach .co-stat {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
  }
  .mock-coach .co-stat .v {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--gold);
  }
  .mock-coach .co-stat .l {
    font-size: 9px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* Mock Salon */
  .mock-salon {
    background-color: #c9a878;
    background-image: url('assets/villa-moderne.svg');
    background-size: cover;
    background-position: center;
    transition: background-size 0.6s;
    padding: 30px 28px;
    height: 100%;
    color: white;
  }
  .demo-card:hover .mock-salon { background-size: 110% auto; }
  .mock-salon-old {
    background: linear-gradient(160deg, #e8ede2 0%, #c5d2b8 60%, #8a9b76 100%);
    padding: 30px 28px;
    height: 100%;
    color: #2a3622;
    position: relative;
  }
  .mock-salon .sa-name {
    font-family: var(--serif);
    font-style: italic;
    font-size: 30px;
    margin-bottom: 4px;
    color: white;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  }
  .mock-salon .sa-tag {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 22px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
  .mock-salon .sa-tabs {
    display: flex; gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }
  .mock-salon .sa-tab {
    background: rgba(255,255,255,0.4);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
  }
  .mock-salon .sa-tab.active {
    background: #2a3622;
    color: white;
  }
  .mock-salon .sa-list {
    display: flex; flex-direction: column; gap: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: 10px;
    padding: 12px 14px;
  }
  .mock-salon .sa-row {
    display: flex; justify-content: space-between;
    font-size: 12px;
  }
  .mock-salon .sa-row .price { font-family: var(--serif); }

  .demo-info { padding: 24px 28px 28px; }
  .demo-info .meta {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 10px;
  }
  .demo-info .tag {
    background: var(--accent-soft);
    color: var(--text);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .demo-info .tag.real {
    background: linear-gradient(135deg, var(--gold-soft), #f0d9a8);
    color: var(--gold-2);
  }
  .demo-info .meta-text { font-size: 12px; color: var(--text-muted); }
  .demo-info h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
  }
  .demo-info p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 14px;
  }
  .demo-info .visit {
    color: var(--gold-2);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
  }
  .demo-card:hover .demo-info .visit { gap: 12px; }

  /* DEMO FEATURED */
  .demo-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    margin-bottom: 80px;
    background: linear-gradient(160deg, #0c0a08 0%, #1a1410 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    color: var(--bg);
  }
  .demo-featured:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 100px rgba(196, 77, 44, 0.3);
  }
  @media (max-width: 900px) { .demo-featured { grid-template-columns: 1fr; } }

  .df-visual {
    position: relative;
    min-height: 480px;
    overflow: hidden;
  }
  @media (max-width: 900px) { .df-visual { min-height: 320px; } }
  .df-img {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1400&q=80') center/cover;
    transform: scale(1.08);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.55) contrast(1.1) saturate(1.1);
  }
  .demo-featured:hover .df-img {
    transform: scale(1.15);
    filter: brightness(0.65) contrast(1.15) saturate(1.2);
  }
  .df-visual::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(12, 10, 8, 0.7) 100%);
    z-index: 1;
  }
  .df-overlay {
    position: absolute;
    bottom: 30px; left: 30px;
    z-index: 2;
    color: white;
  }
  .df-name {
    font-family: var(--serif);
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 0.9;
    margin-bottom: 8px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  }
  .df-tag {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.85;
    color: #d4af6d;
  }
  .df-badges {
    position: absolute;
    top: 24px; left: 24px; right: 24px;
    z-index: 2;
    display: flex; justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .df-badge {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
    border: 1px solid rgba(255,255,255,0.15);
  }
  .df-badge.df-pulse {
    color: #d4af6d;
    border-color: rgba(212, 175, 109, 0.3);
  }
  .df-badge.df-pulse::before {
    content: '';
    display: inline-block;
    width: 7px; height: 7px;
    background: #d4af6d;
    border-radius: 50%;
    margin-right: 6px;
    animation: pulse 2s infinite;
    vertical-align: 1px;
  }

  .df-info {
    padding: 50px 50px;
    display: flex; flex-direction: column;
    justify-content: center;
    color: var(--bg);
  }
  @media (max-width: 720px) { .df-info { padding: 36px 28px; } }
  .df-info .meta { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
  .df-info .meta .meta-text { color: rgba(250, 250, 246, 0.6); font-size: 12px; letter-spacing: 0.05em; }
  .df-info h3 {
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 500;
    margin-bottom: 16px;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
  .df-info .lead {
    color: rgba(250, 250, 246, 0.75);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .df-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    margin-bottom: 32px;
  }
  @media (max-width: 600px) { .df-features { grid-template-columns: 1fr; } }
  .df-features li {
    font-size: 13.5px;
    color: rgba(250, 250, 246, 0.85);
    line-height: 1.5;
  }
  .df-info .visit {
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
  }
  .demo-featured:hover .df-info .visit { gap: 14px; color: #d4af6d; }

  /* PROCESS */
  .process { background: var(--bg); }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    counter-reset: step;
  }
  @media (max-width: 880px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }
  .step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px 30px;
    counter-increment: step;
    position: relative;
    transition: transform 0.3s;
  }
  .step:hover { transform: translateY(-6px); }
  .step::before {
    content: counter(step, decimal-leading-zero);
    font-family: var(--serif);
    font-style: italic;
    font-size: 56px;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 16px;
    opacity: 0.95;
  }
  .step h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .step p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* PRICING */
  .pricing { background: var(--bg-2); }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
  .price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .price-card.signature {
    background: linear-gradient(160deg, #faf6ed 0%, var(--bg-card) 100%);
    border-color: var(--gold);
    border-width: 1.5px;
    position: relative;
    overflow: hidden;
  }
  .price-card.signature::before {
    content: '✦';
    position: absolute;
    top: 16px; right: 24px;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.08;
    line-height: 1;
  }
  .price-card.signature .pname { color: var(--gold-2); }
  .price-card.signature .pcta {
    background: var(--text);
    color: var(--bg);
  }
  .price-card.signature .pcta:hover {
    background: var(--gold-2);
    color: white;
  }
  .price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }
  .price-card.featured {
    background: linear-gradient(160deg, var(--text) 0%, #1c1c1c 100%);
    color: var(--bg);
    border-color: var(--text);
    transform: scale(1.04);
    box-shadow: 0 20px 60px rgba(10, 10, 10, 0.3);
  }
  .price-card.featured:hover { transform: scale(1.04) translateY(-8px); }
  .price-card .pop {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--gold), var(--gold-2));
    color: white;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .price-card .pname {
    font-family: var(--serif);
    font-size: 28px;
    font-style: italic;
    margin-bottom: 6px;
  }
  .price-card .ptag {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 24px;
  }
  .price-card.featured .ptag { color: rgba(255,255,255,0.6); }
  .price-card .pprice {
    font-family: var(--serif);
    font-size: 52px;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
    gap: 6px;
  }
  .price-card .pprice .currency {
    font-size: 26px;
    vertical-align: top;
    margin-right: 2px;
  }
  .price-card .pprice .ht-tag {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-left: 4px;
  }
  .price-card.featured .pprice .ht-tag { color: rgba(255,255,255,0.55); }
  .price-card .pprice-ttc {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-2);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    opacity: 0.85;
  }
  .price-card.featured .pprice-ttc { color: rgba(255,255,255,0.7); }
  .price-card .pprice-ttc .currency {
    font-size: 14px;
    vertical-align: top;
  }
  .price-card .pprice-ttc .ttc-tag {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-left: 4px;
  }
  .price-card.featured .pprice-ttc .ttc-tag { color: rgba(255,255,255,0.5); }
  .price-card .punit {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.55;
    padding-top: 10px;
    border-top: 1px dashed var(--border);
  }
  .price-card.featured .punit { color: rgba(255,255,255,0.6); border-top-color: rgba(255,255,255,0.15); }
  .price-card .tva-note {
    display: block;
    margin-top: 6px;
    font-size: 10.5px;
    font-style: italic;
    color: var(--text-dim);
    letter-spacing: 0.02em;
  }
  .price-card.featured .tva-note { color: rgba(255,255,255,0.4); }
  .price-card .from-tag {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-2);
    margin-bottom: 8px;
  }
  .price-card ul {
    list-style: none;
    margin-bottom: 30px;
    display: flex; flex-direction: column;
    gap: 12px;
  }
  .price-card ul li {
    font-size: 14px;
    display: flex; align-items: flex-start; gap: 10px;
    color: var(--text-2);
  }
  .price-card.featured ul li { color: rgba(255,255,255,0.85); }
  .price-card ul li::before {
    content: '\2713';
    color: var(--gold-2);
    font-weight: 700;
    flex-shrink: 0;
  }
  .price-card.featured ul li::before { color: var(--gold); }
  .price-card .pcta {
    display: block; text-align: center;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 500;
    background: var(--bg-2);
    color: var(--text);
    transition: all 0.25s;
  }
  .price-card .pcta:hover { background: var(--text); color: white; }
  .price-card.featured .pcta {
    background: linear-gradient(90deg, var(--gold), var(--gold-2));
    color: white;
  }
  .price-card.featured .pcta:hover { background: white; color: var(--text); }
  .pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 14.5px;
    color: var(--text-muted);
  }
  .pricing-note strong {
    color: var(--gold-2);
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: 17px;
  }

  /* OFFER BLOCK */
  .offer-block {
    margin-top: 70px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
  }
  .offer-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--text), var(--gold), var(--text));
  }
  .offer-head { text-align: center; margin-bottom: 50px; }
  .offer-head h3 {
    font-family: var(--serif);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-top: 16px;
  }
  .offer-head h3 em { font-style: italic; color: var(--gold-2); }

  .offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  @media (max-width: 880px) { .offer-grid { grid-template-columns: 1fr; gap: 40px; } }

  .offer-col h4 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 22px;
    letter-spacing: -0.01em;
  }
  .offer-icon {
    display: inline-flex;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--gold-soft);
    color: var(--gold-2);
    align-items: center; justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
  }
  .offer-col ul {
    list-style: none;
    display: flex; flex-direction: column;
    gap: 12px;
  }
  .offer-col ul li {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-2);
    display: flex; align-items: flex-start; gap: 10px;
  }
  .offer-col ul li::before {
    content: '\2713';
    color: var(--gold-2);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .offer-col ul li strong { color: var(--text); font-weight: 600; }
  .offer-col ul li .sub-note {
    color: var(--text-muted);
    font-size: 13px;
    font-style: italic;
  }

  .option-box {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 22px;
    margin-bottom: 14px;
    transition: border-color 0.3s, transform 0.3s;
  }
  .option-box:hover {
    border-color: var(--gold-2);
    transform: translateY(-2px);
  }
  .option-box .opt-name {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
  }
  .option-box .opt-price {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 500;
    color: var(--text);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }
  .option-box .opt-price span {
    font-size: 16px;
    color: var(--text-muted);
    font-style: italic;
    margin-left: 4px;
  }
  .option-box p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 12px;
  }
  .option-box .opt-tag {
    font-size: 12.5px;
    color: var(--gold-2);
    font-style: italic;
  }

  .offer-foot {
    text-align: center;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
  }
  @media (max-width: 720px) { .offer-block { padding: 40px 28px; } }

  /* AVIS */
  .avis { background: var(--bg); }
  .avis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 900px) { .avis-grid { grid-template-columns: 1fr; } }
  .avis-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.3s;
  }
  .avis-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  .avis-card .stars {
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 18px;
  }
  .avis-card .quote {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-2);
    margin-bottom: 24px;
    font-style: italic;
  }
  .avis-card .who {
    display: flex; align-items: center; gap: 12px;
  }
  .avis-card .who .av {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--text), var(--gold-2));
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 600;
    font-size: 14px;
  }
  .avis-card .who .name { font-weight: 600; font-size: 14.5px; }
  .avis-card .who .job { font-size: 13px; color: var(--text-muted); }

  /* FAQ */
  .faq { background: var(--bg-2); }
  .faq-list { max-width: 820px; margin: 0 auto; }
  .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 14px;
    overflow: hidden;
    transition: box-shadow 0.3s;
  }
  .faq-item.open { box-shadow: var(--shadow-md); }
  .faq-q {
    width: 100%;
    text-align: left;
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text) !important;
    background: transparent;
    border: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    appearance: none;
    line-height: 1.3;
    gap: 14px;
  }
  .faq-q:focus { outline: none; }
  .faq-q span:not(.plus) { color: var(--text) !important; flex: 1; }
  @media (max-width: 720px) {
    .faq-q { font-size: 16.5px; padding: 18px 18px; }
  }
  .faq-q .plus {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--bg-2);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s, background 0.3s;
    font-size: 18px;
    flex-shrink: 0;
  }
  .faq-item.open .faq-q .plus {
    transform: rotate(45deg);
    background: var(--text);
    color: white;
  }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.7;
    padding: 0 26px;
  }
  .faq-item.open .faq-a {
    max-height: 400px;
    padding: 0 26px 22px;
  }

  /* CTA FINAL — vers le brief */
  .project-form {
    background: linear-gradient(160deg, var(--text) 0%, #1c1c1c 100%);
    color: white;
    position: relative;
    overflow: hidden;
  }
  .cta-final-block {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .cta-final-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
  }
  .cta-final-eyebrow .dot-live {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
    animation: pulse-live 2s infinite;
  }
  @keyframes pulse-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  .cta-final-title {
    font-family: var(--serif);
    font-size: clamp(48px, 8vw, 96px);
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -0.035em;
    color: white;
    margin-bottom: 30px;
  }
  .cta-final-title em {
    font-style: italic;
    background: linear-gradient(120deg, var(--gold) 30%, var(--gold-2) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .cta-final-sub {
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    max-width: 700px;
    margin: 0 auto 50px;
  }

  /* 3 étapes visuelles */
  .cta-final-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 60px;
    flex-wrap: wrap;
  }
  @media (max-width: 720px) {
    .cta-final-steps { gap: 14px; }
    .cf-arrow { display: none; }
  }
  .cf-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 200px;
  }
  .cf-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    font-weight: 600;
  }
  .cf-label {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    font-weight: 500;
  }
  .cf-arrow {
    font-size: 28px;
    color: var(--gold);
    opacity: 0.5;
  }

  /* Le gros bouton CTA */
  .cta-final-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
  }
  .cta-mega-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
    color: var(--text);
    padding: 24px 48px;
    border-radius: 999px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow:
      0 10px 30px rgba(201, 168, 120, 0.35),
      0 0 0 0 rgba(201, 168, 120, 0);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
  }
  .cta-mega-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.7s;
  }
  .cta-mega-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
      0 18px 50px rgba(201, 168, 120, 0.5),
      0 0 0 8px rgba(201, 168, 120, 0.12);
  }
  .cta-mega-btn:hover::before { transform: translateX(100%); }
  .cta-mega-arrow {
    font-size: 24px;
    transition: transform 0.3s;
  }
  .cta-mega-btn:hover .cta-mega-arrow { transform: translateX(6px); }
  .cta-mega-info {
    color: rgba(255,255,255,0.55);
    font-size: 13.5px;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.2s;
  }
  .cta-mega-info:hover { color: var(--gold); }

  /* Direct contact mail */
  .cta-final-direct {
    padding: 20px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
  }
  .cta-final-direct a {
    color: var(--gold);
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    transition: color 0.2s;
  }
  .cta-final-direct a:hover { color: white; }

  /* === Ancien formulaire — conservé pour compatibilité === */
  .project-form::before {
    content: '';
    position: absolute;
    top: -200px; right: -100px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(212, 168, 108, 0.18), transparent 60%);
    pointer-events: none;
  }
  .project-form::after {
    content: '';
    position: absolute;
    bottom: -200px; left: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(196, 77, 44, 0.12), transparent 60%);
    pointer-events: none;
  }
  .pf-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
    position: relative; z-index: 1;
  }
  @media (max-width: 980px) { .pf-grid { grid-template-columns: 1fr; gap: 60px; } }

  .pf-info h2 { color: white; margin-bottom: 20px; }
  .pf-info h2 em { color: var(--gold); }
  .pf-lede {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin-bottom: 50px;
  }

  .pf-list {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 50px;
  }
  .pf-item {
    display: flex; align-items: flex-start; gap: 22px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .pf-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 28px;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
  }
  .pf-h {
    font-family: var(--serif);
    font-size: 19px;
    color: white;
    margin-bottom: 4px;
  }
  .pf-p {
    font-size: 14.5px;
    color: rgba(255,255,255,0.6);
    line-height: 1.55;
  }

  .pf-direct {
    padding: 22px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
  }
  .pf-direct-lab {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 8px;
  }
  .pf-direct-mail {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    color: var(--gold);
    transition: color 0.2s;
  }
  .pf-direct-mail:hover { color: white; }

  .pf-form {
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 22px;
    padding: 50px 44px;
    position: relative;
  }
  @media (max-width: 720px) { .pf-form { padding: 36px 24px; } }

  /* Intro du formulaire */
  .pf-form .pf-intro {
    font-family: var(--serif);
    font-size: 17px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.5;
  }
  .pf-field .pf-opt {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
    margin-left: 6px;
    font-weight: 400;
  }

  /* Champ conditionnel refonte */
  .pf-conditional {
    max-height: 0;
    overflow: hidden;
    margin-bottom: 0;
    padding-top: 0;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s 0.1s, margin-bottom 0.5s, padding-top 0.5s;
  }
  .pf-conditional.show {
    max-height: 280px;
    opacity: 1;
    margin-bottom: 22px;
    padding-top: 4px;
  }
  .pf-help {
    margin-top: 12px;
    padding: 14px 16px;
    background: rgba(212, 168, 108, 0.08);
    border-left: 3px solid var(--gold);
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
  }
  .pf-help strong { color: var(--gold); font-weight: 600; }

  .pf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  @media (max-width: 540px) { .pf-row { grid-template-columns: 1fr; gap: 0; } }

  .pf-field {
    margin-bottom: 22px;
  }
  .pf-field label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
  }
  .pf-field input,
  .pf-field select,
  .pf-field textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 12px 0;
    color: white;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
  }
  .pf-field input:focus,
  .pf-field select:focus,
  .pf-field textarea:focus {
    border-bottom-color: var(--gold);
  }
  .pf-field input::placeholder,
  .pf-field textarea::placeholder {
    color: rgba(255,255,255,0.3);
  }
  .pf-field select option {
    background: var(--text);
    color: white;
  }
  .pf-field textarea {
    resize: vertical;
    min-height: 100px;
  }

  .pf-rgpd {
    display: flex; align-items: flex-start; gap: 12px;
    margin: 26px 0 30px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .pf-rgpd input {
    margin-top: 3px;
    accent-color: var(--gold);
    width: 16px; height: 16px;
  }
  .pf-rgpd label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.55;
    cursor: pointer;
  }

  .pf-submit {
    width: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-2));
    color: var(--text);
    padding: 18px 28px;
    border-radius: 100px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex; align-items: center; justify-content: center; gap: 12px;
    position: relative;
    overflow: hidden;
  }
  .pf-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 168, 108, 0.4);
  }
  .pf-submit .arrow { transition: transform 0.3s; }
  .pf-submit:hover .arrow { transform: translateX(4px); }
  .pf-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .pf-success {
    display: none;
    text-align: center;
    padding: 30px 20px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 14px;
    margin-top: 22px;
  }
  .pf-success.show { display: block; animation: pop 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
  @keyframes pop {
    from { opacity: 0; transform: translateY(10px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .pf-success-icon {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .pf-success-title {
    font-family: var(--serif);
    font-size: 22px;
    color: white;
    margin-bottom: 6px;
  }
  .pf-success-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
  }

  /* CTA (legacy — kept for chatbot) */
  .cta-block {
    background: linear-gradient(160deg, var(--text) 0%, #1c1c1c 100%);
    color: var(--bg);
    border-radius: var(--radius-lg);
    padding: 100px 60px;
    text-align: center;
    max-width: calc(var(--max) - 64px);
    margin: 0 auto 100px;
    position: relative; overflow: hidden;
  }
  .cta-block::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 600px;
    background: radial-gradient(ellipse, rgba(201, 168, 120, 0.35), transparent 60%);
    pointer-events: none;
  }
  .cta-block h2 { color: white; margin-bottom: 18px; position: relative; z-index: 1; }
  .cta-block h2 em { color: var(--gold); }
  .cta-block p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    margin: 0 auto 36px;
    position: relative; z-index: 1;
  }
  .cta-block .hero-cta { margin-bottom: 0; position: relative; z-index: 1; }
  .cta-block .btn-primary {
    background: linear-gradient(90deg, var(--gold), var(--gold-2));
    box-shadow: 0 4px 0 #8b6f3f, 0 10px 30px rgba(201, 168, 120, 0.4);
  }
  .cta-block .btn-primary:hover {
    background: white;
    color: var(--text);
    box-shadow: 0 7px 0 #8b6f3f, 0 14px 40px rgba(201, 168, 120, 0.5);
  }
  .cta-block .btn-secondary {
    background: rgba(255,255,255,0.05);
    color: white;
    border-color: rgba(255,255,255,0.15);
  }
  .cta-block .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
  }
  @media (max-width: 720px) { .cta-block { padding: 60px 28px; margin: 0 22px 60px; } }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    background: var(--bg);
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  @media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
  .foot-brand .logo { margin-bottom: 14px; }
  .foot-brand p {
    font-size: 14px; color: var(--text-muted);
    max-width: 280px; line-height: 1.6;
  }
  .foot-col h4 {
    font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.18em; color: var(--text-muted);
    margin-bottom: 18px; font-weight: 600;
  }
  .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .foot-col a {
    font-size: 14.5px;
    color: var(--text-2);
    transition: color 0.2s;
  }
  .foot-col a:hover { color: var(--gold-2); }
  .foot-bot {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; color: var(--text-muted);
    flex-wrap: wrap; gap: 12px;
  }

  /* CHATBOT */
  .vt-bot-toggle {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--text);
    box-shadow: 0 10px 30px rgba(10, 10, 10, 0.35);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 28px;
    z-index: 1000;
    transition: transform 0.3s;
    border: 3px solid var(--bg);
  }
  .vt-bot-toggle:hover { transform: scale(1.1) rotate(8deg); }
  .vt-bot-toggle .ping {
    position: absolute;
    top: -2px; right: -2px;
    width: 14px; height: 14px;
    background: var(--emerald);
    border-radius: 50%;
    border: 2px solid var(--bg);
    animation: pulse 2s infinite;
  }
  .vt-bot {
    position: fixed;
    bottom: 100px; right: 24px;
    width: 360px; max-width: calc(100vw - 48px);
    height: 500px; max-height: calc(100vh - 140px);
    background: var(--bg-card);
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .vt-bot.open { display: flex; animation: slideUp 0.3s ease; }
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .vt-bot-head {
    background: var(--text);
    color: white;
    padding: 18px 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .vt-bot-head .av {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: var(--text);
  }
  .vt-bot-head .name { font-weight: 600; font-size: 14.5px; }
  .vt-bot-head .status { font-size: 12px; opacity: 0.8; display: flex; align-items: center; gap: 6px; }
  .vt-bot-head .status::before {
    content: ''; width: 7px; height: 7px;
    background: var(--emerald);
    border-radius: 50%;
  }
  .vt-bot-head .close {
    margin-left: auto;
    color: white;
    font-size: 22px;
    opacity: 0.8;
  }
  .vt-bot-msgs {
    flex: 1;
    padding: 18px;
    overflow-y: auto;
    display: flex; flex-direction: column; gap: 12px;
  }
  .vt-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.45;
    animation: pop 0.3s ease;
  }
  @keyframes pop {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .vt-msg.bot {
    background: var(--bg-2);
    color: var(--text);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
  }
  .vt-msg.user {
    background: var(--text);
    color: white;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
  }
  .vt-quick {
    display: flex; flex-wrap: wrap; gap: 6px;
    padding: 0 18px 12px;
  }
  .vt-quick button {
    background: var(--bg-2);
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12.5px;
    color: var(--text-2);
    transition: all 0.2s;
  }
  .vt-quick button:hover {
    background: var(--text);
    color: white;
    border-color: var(--text);
  }
  .vt-bot-input {
    border-top: 1px solid var(--border);
    padding: 12px 14px;
    display: flex; gap: 8px;
  }
  .vt-bot-input input {
    flex: 1;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--text);
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
  }
  .vt-bot-input input:focus { border-color: var(--text); }
  .vt-bot-input button.send {
    background: var(--text);
    color: var(--gold);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    transition: background 0.2s;
  }
  .vt-bot-input button.send:hover { background: var(--gold-2); color: white; }

/* ============================================================
   CORRECTIFS RESPONSIVE — anti débordement horizontal
   (ajout 2026-06-02)
   ============================================================ */
html { overflow-x: clip; max-width: 100%; }
body { overflow-x: clip; max-width: 100%; }
.compare-table-wrap { max-width: 100%; }

/* Tableaux de contenu (cgv, mentions, etc.) scrollables sur petit écran */
@media (max-width: 640px) {
  .content table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ===== FIX MENU MOBILE — visibilité burger (ajout 2026-06-02 #2) ===== */
@media (max-width: 880px){
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .nav-burger { display: flex !important; }
}
@media (min-width: 881px){
  .nav-burger { display: none !important; }
}

/* ============================================================
   FIX MOBILE — Tarifs + Tableau comparatif + Onglets (2026-06-02 #3)
   ============================================================ */

/* --- Tarifs : empilés en 1 colonne sur mobile --- */
@media (max-width: 760px){
  .pricing-grid{ grid-template-columns: 1fr !important; max-width: 460px !important; }
}

/* --- Tableau comparatif : cartes empilées et lisibles sur mobile --- */
@media (max-width: 640px){
  .compare-table-wrap{ overflow-x: visible !important; margin-top: 24px; }
  .compare-table{ min-width: 0 !important; border: 0 !important; box-shadow: none !important; background: transparent !important; }
  .compare-table thead{ display: none !important; }
  .compare-table, .compare-table tbody, .compare-table tr, .compare-table td{ display: block; width: 100%; }
  .compare-table tr{
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; margin-bottom: 16px; overflow: hidden;
    box-shadow: 0 6px 20px -14px rgba(10,10,10,.25);
  }
  .compare-table td{
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    text-align: right; padding: 13px 16px; border: 0; border-top: 1px solid var(--border);
    font-size: 14.5px;
  }
  .compare-table td:first-child{
    text-align: left; font-weight: 700; font-size: 15.5px; color: var(--text);
    background: var(--bg-2); border-top: 0; padding: 14px 16px;
  }
  .compare-table td:nth-child(2)::before{ content: "Agence classique"; }
  .compare-table td:nth-child(3)::before{ content: "Klartey ★"; }
  .compare-table td:nth-child(4)::before{ content: "DIY"; }
  .compare-table td:not(:first-child)::before{
    font-weight: 600; color: var(--text-muted); font-size: 12.5px;
    text-align: left; flex: 0 0 auto; text-transform: uppercase; letter-spacing: .03em;
  }
  .compare-table td.featured{ background: var(--gold-soft); }
  .compare-table td.featured::before{ color: var(--gold-2); }
  .compare-table .recommend-badge{ display:none; }
}

/* --- Sélecteur d'onglets sticky (mobile) pour naviguer les sections --- */
.m-tabs{ display: none; }
@media (max-width: 880px){
  .m-tabs{
    display: flex; gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch;
    position: sticky; top: 80px; z-index: 95;
    background: rgba(250,250,246,.96); backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 16px; border-bottom: 1px solid var(--border);
    scrollbar-width: none;
  }
  .m-tabs::-webkit-scrollbar{ display: none; }
  .m-tabs a{
    flex: 0 0 auto; padding: 8px 16px; border-radius: 999px;
    background: var(--bg-2); color: var(--text-2);
    font-size: 14px; font-weight: 600; white-space: nowrap;
    border: 1px solid var(--border); text-decoration: none;
  }
  .m-tabs a:active{ background: var(--text); color: var(--bg); }
}

/* Masquer le hint de scroll quand le tableau passe en cartes (≤640) */
@media (max-width: 640px){
  .compare-table-wrap::after{ display: none !important; }
  .compare-table-wrap{ margin-left: 0 !important; margin-right: 0 !important; padding: 0 !important; }
}

/* ============================================================
   SELECTEUR D'ONGLETS — version premium (2026-06-02 #4)
   ============================================================ */
@media (max-width: 880px){
  .m-tabs{
    gap: 9px;
    padding: 11px 16px;
    background: rgba(250,250,246,.97);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 6px 18px -14px rgba(10,10,10,.4);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  }
  .m-tabs a{
    padding: 9px 17px;
    border-radius: 999px;
    background: #fff;
    color: var(--text);
    font-size: 14px; font-weight: 600;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px -4px rgba(10,10,10,.18);
    transition: background .2s, color .2s, border-color .2s;
  }
  .m-tabs a:first-child{
    background: linear-gradient(90deg, var(--gold), var(--gold-2));
    color: #fff; border-color: transparent;
    box-shadow: 0 6px 16px -8px rgba(201,168,120,.7);
  }
  .m-tabs a:active{ background: var(--text); color: var(--bg); border-color: var(--text); }
}
