/*
Theme Name: Maison Calendula
Theme URI: https://maisoncalendula.fr/
Author: Élodie Mothu
Author URI: https://maisoncalendula.fr/
Description: Thème sur-mesure pour la landing page Maison Calendula — studio de création de landing pages qui convertissent. Mono-page, optimisé conversion + SEO local + IA.
Version: 1.0.0
License: Tous droits réservés
Text Domain: maison-calendula
Tags: landing-page, freelance, one-column, custom-colors, custom-menu
*/

  :root {
    --bg: #F4F4F5;
    --bg-light: #FAFAFA;
    --bg-alt: #FFFFFF;
    --ink: #0A0A0A;
    --ink-soft: rgba(10, 10, 10, 0.65);
    --ink-faint: rgba(10, 10, 10, 0.45);
    --accent: #5C1F26;
    --accent-soft: #7A2A33;
    --accent-deep: #421519;
    --accent-tint: rgba(92, 31, 38, 0.08);
    --border-soft: rgba(10, 10, 10, 0.08);
    --gold: #C9A14D;
  }

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

  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* === NAV (sticky) === */
  .nav {
    position: relative;
    z-index: 100;
    padding: 18px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid var(--border-soft);
  }
  .nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--ink);
  }
  .nav-center {
    display: flex;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
  }
  .nav-center a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav-center a:hover { color: var(--accent); }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .nav-login {
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 8px;
  }
  .nav-cta {
    background: var(--ink);
    color: var(--bg);
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
  }
  .nav-cta:hover {
    background: var(--accent);
    transform: translateY(-1px);
  }

  /* === HERO === */
  .hero {
    position: relative;
    min-height: calc(100vh - 78px);
    padding: 40px 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }
  .hero-mockup {
    position: absolute;
    background: white;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(10, 10, 10, 0.12);
    overflow: hidden;
    z-index: 1;
  }
  .hero-mockup-left {
    width: 200px; height: 380px;
    top: 80px; left: -40px;
    transform: rotate(-8deg);
  }
  .hero-mockup-right {
    width: 200px; height: 380px;
    top: 60px; right: -40px;
    transform: rotate(8deg);
  }
  .mock-screen {
    padding: 16px 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .mock-bar { display: flex; gap: 4px; margin-bottom: 14px; }
  .mock-bar span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(0,0,0,0.1);
  }
  .mock-tag {
    display: inline-flex;
    width: fit-content;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 7px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .hero-mockup-left .mock-tag {
    background: rgba(92, 31, 38, 0.14);
    color: var(--accent-deep);
  }
  .hero-mockup-right .mock-tag {
    background: rgba(10, 10, 10, 0.08);
    color: var(--ink);
  }
  .mock-h {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 10px;
    font-weight: 500;
  }
  .mock-h em {
    font-style: italic;
    color: var(--accent);
  }
  .mock-line {
    height: 4px;
    background: rgba(0,0,0,0.08);
    border-radius: 2px;
    margin-bottom: 6px;
  }
  .mock-line.short { width: 70%; }
  .mock-line.shorter { width: 50%; }
  .mock-image {
    margin-top: 12px;
    height: 100px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--ink), var(--accent));
    margin-bottom: 12px;
  }
  .mock-cta {
    background: var(--ink);
    color: var(--bg);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 8px;
    font-weight: 600;
    text-align: center;
    width: fit-content;
    margin-top: auto;
  }
  .hero-mockup-right .mock-cta { background: var(--accent); }

  .hero-content {
    position: relative;
    z-index: 5;
    max-width: 980px;
    width: 100%;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--ink);
    margin-bottom: 40px;
    font-weight: 500;
    background: white;
    padding: 10px 20px;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(10, 10, 10, 0.06);
    border: 1px solid var(--border-soft);
  }
  .hero-eyebrow .sparkle { font-size: 14px; color: var(--accent); }
  .hero-eyebrow strong { color: var(--accent); font-weight: 700; }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(44px, 6.5vw, 100px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 32px;
  }
  .hero-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--accent);
    position: relative;
    display: inline-block;
  }
  .hero-title em::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 8px;
    background: rgba(92, 31, 38, 0.22);
    z-index: -1;
    border-radius: 8px;
  }
  .hero-subtitle {
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 640px;
    margin: 0 auto 44px;
    font-weight: 400;
  }
  .hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 56px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .btn-primary {
    background: var(--accent);
    color: white;
    padding: 18px 36px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(92, 31, 38, 0.3);
  }
  .btn-primary:hover {
    background: var(--accent-deep);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(92, 31, 38, 0.4);
  }
  .btn-primary::after {
    content: '→';
    font-size: 18px;
    transition: transform 0.3s;
  }
  .btn-primary:hover::after { transform: translateX(4px); }
  .btn-secondary {
    background: transparent;
    color: var(--ink);
    padding: 18px 32px;
    border: 1.5px solid var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s, color 0.3s;
  }
  .btn-secondary:hover {
    background: var(--ink);
    color: var(--bg);
  }
  .btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 18px 32px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
  }
  .btn-whatsapp:hover {
    background: #1FB957;
    transform: translateY(-2px);
  }
  .btn-whatsapp svg { fill: white; }

  /* === MODALE CALENDLY === */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
  .modal {
    background: var(--bg);
    border-radius: 16px;
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow: auto;
    padding: 48px 44px 36px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
  }
  .modal-overlay.active .modal { transform: translateY(0); }
  .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-alt);
    border: 1px solid var(--border-soft);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: 18px;
    transition: background 0.3s;
  }
  .modal-close:hover { background: var(--accent); color: white; }
  .modal h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.1;
  }
  .modal h3 em { font-style: italic; color: var(--accent); }
  .modal-sub {
    font-size: 15px;
    color: var(--ink-soft);
    margin-bottom: 28px;
    line-height: 1.6;
  }
  .modal iframe {
    width: 100%;
    height: 540px;
    border: none;
    border-radius: 12px;
  }
  .modal-fallback {
    text-align: center;
    padding: 32px 0;
  }
  .modal-fallback a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: white;
    padding: 18px 36px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 16px;
  }
  .modal-legal {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.65;
  }
  .modal-legal h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 24px 0 8px;
  }
  .modal-legal h4:first-child { margin-top: 0; }
  .modal-legal p { margin-bottom: 12px; }
  .modal-legal a { color: var(--accent); text-decoration: underline; }
  .modal-legal ul {
    list-style: disc;
    padding-left: 20px;
    margin: 8px 0 12px;
  }
  .modal-legal li { margin-bottom: 4px; }
  @media (max-width: 640px) {
    .modal { padding: 36px 24px 24px; }
    .modal h3 { font-size: 24px; }
    .modal iframe { height: 480px; }
    .modal-legal { font-size: 13.5px; }
  }
  .hero-proof {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 500;
    flex-wrap: wrap;
    justify-content: center;
  }
  .proof-item { display: flex; align-items: center; gap: 8px; }
  .proof-item .dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
  }
  .proof-separator {
    width: 1px; height: 16px;
    background: rgba(26, 26, 24, 0.15);
  }
  .hero-signature {
    margin-top: 48px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    color: var(--ink-faint);
    font-size: 14px;
    font-weight: 400;
  }
  .hero-signature .script {
    font-family: 'Allura', cursive;
    font-size: 38px;
    color: var(--ink);
    line-height: 1;
  }

  /* === SHARED SECTION STYLES === */
  .section {
    padding: 140px 56px 160px;
    position: relative;
  }
  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 32px;
  }
  .section-eyebrow .number {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0;
    text-transform: none;
    color: var(--accent);
  }
  .section-eyebrow .number::before {
    content: '';
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(34px, 4.5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
  }
  .section-title em {
    font-style: italic;
    color: var(--accent);
  }
  .section-intro {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 600px;
    margin-top: 24px;
  }

  /* === SECTION DIAGNOSTIC (02) === */
  .section-diagnostic {
    border-top: 1px solid var(--border-soft);
  }
  .section-diagnostic .section-inner {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 96px;
    align-items: start;
  }
  .diagnostic-points {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-top: 12px;
  }
  .diagnostic-point {
    position: relative;
    padding-left: 36px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
  }
  .diagnostic-point::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
  }
  .diagnostic-point {
    padding-left: 28px !important;
  }
  .diagnostic-point strong { color: var(--ink); font-weight: 600; }
  .diagnostic-point em { font-style: italic; color: var(--ink); }

  /* === SECTION FAÇON DE FAIRE (03) === */
  .section-method {
    background: var(--bg-alt);
  }
  .section-method .section-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
  }
  .method-text { padding-right: 20px; }
  .method-points {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .method-point {
    padding: 24px 28px;
    background: var(--bg);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
  }
  .method-point h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 19px;
    color: var(--ink);
    margin-bottom: 8px;
  }
  .method-point h4 em { font-style: italic; color: var(--accent); }
  .method-point p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
  }

  /* Mockup demo grand format */
  .demo-mockup {
    position: relative;
    background: white;
    border-radius: 14px;
    box-shadow: 0 40px 90px rgba(10, 10, 10, 0.16);
    overflow: hidden;
    aspect-ratio: 4/5;
    transform: rotate(1deg);
    transition: transform 0.4s;
  }
  .demo-mockup:hover { transform: rotate(0); }
  .demo-bar {
    background: var(--bg-alt);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--border-soft);
  }
  .demo-bar span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.12);
  }
  .demo-url {
    margin-left: 12px;
    background: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 10px;
    color: var(--ink-soft);
    flex: 1;
  }
  .demo-screen {
    padding: 32px 28px;
    height: calc(100% - 36px);
    display: flex;
    flex-direction: column;
    background: white;
  }
  .demo-eyebrow {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    font-weight: 600;
  }
  .demo-h {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 16px;
    font-weight: 400;
  }
  .demo-h em { font-style: italic; color: var(--accent); }
  .demo-p {
    font-size: 12px;
    color: var(--ink-soft);
    margin-bottom: 24px;
    line-height: 1.55;
  }
  .demo-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
  }
  .demo-btn {
    padding: 9px 16px;
    background: var(--accent);
    color: white;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
  }
  .demo-btn.ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
  }
  .demo-image {
    height: 140px;
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(92, 31, 38, 0.15), rgba(10, 10, 10, 0.2)),
      linear-gradient(45deg, var(--accent), var(--ink));
    margin-top: auto;
  }

  /* === SECTION BEFORE ADS (04) === */
  .section-before-ads {
    background: var(--bg-alt);
  }
  .section-before-ads .section-intro {
    max-width: 720px;
    font-size: 19px;
    line-height: 1.65;
  }
  .ads-compare {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 32px;
    margin-top: 72px;
    align-items: stretch;
  }
  .ads-col {
    padding: 36px;
    border-radius: 12px;
  }
  .ads-col.bad {
    background: var(--bg);
    border: 1px solid var(--border-soft);
  }
  .ads-col.good {
    background: var(--accent);
    color: var(--bg);
  }
  .ads-col-label {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
  }
  .ads-col.bad .ads-col-label { color: var(--ink-faint); }
  .ads-col.good .ads-col-label { color: rgba(244, 244, 245, 0.75); }
  .ads-col-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 400;
  }
  .ads-col.bad .ads-col-title { color: var(--ink); }
  .ads-col.good .ads-col-title { color: var(--bg); }
  .ads-col-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 14px;
    line-height: 1.55;
  }
  .ads-col-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }
  .ads-col.bad .ads-col-list { color: var(--ink-soft); }
  .ads-col.good .ads-col-list { color: rgba(244, 244, 245, 0.92); }
  .ads-col-list li::before {
    font-weight: 700;
    flex-shrink: 0;
    margin-top: -1px;
  }
  .ads-col.bad .ads-col-list li::before {
    content: '✕';
    color: rgba(10, 10, 10, 0.3);
  }
  .ads-col.good .ads-col-list li::before {
    content: '✓';
    color: var(--bg);
  }
  .ads-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent);
    font-size: 32px;
  }

  /* === MINI SCHÉMA "AVANT LES PUBS" === */
  .ads-flow {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr auto 1.2fr auto 1fr;
    gap: 20px;
    align-items: center;
    max-width: 980px;
  }
  .ads-flow-step {
    background: var(--bg);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
  }
  .ads-flow-step.accent {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(92, 31, 38, 0.25);
  }
  .ads-flow-icon {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .ads-flow-label {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 4px;
  }
  .ads-flow-step.accent .ads-flow-label { font-style: italic; }
  .ads-flow-sub {
    font-size: 12px;
    color: var(--ink-soft);
    letter-spacing: 0.05em;
  }
  .ads-flow-step.accent .ads-flow-sub { color: rgba(244, 244, 245, 0.7); }
  .ads-flow-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    margin-top: 8px;
  }
  .ads-flow-actions span {
    font-size: 10px;
    padding: 3px 8px;
    background: var(--accent-tint);
    color: var(--accent);
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.05em;
  }
  .ads-flow-arrow {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent);
    font-size: 28px;
    text-align: center;
  }

  /* === SECTION PARCOURS CLIENT === */
  .section-journey {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-soft);
  }
  .journey-steps {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
  }
  .journey-line {
    position: absolute;
    top: 32px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent) 20%, var(--accent) 80%, transparent);
    z-index: 0;
  }
  .journey-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 8px;
  }
  .journey-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg);
    color: var(--accent);
    border: 2px solid var(--accent);
    margin: 0 auto 18px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
  }
  .journey-step:hover .journey-num {
    background: var(--accent);
    color: var(--bg);
  }
  .journey-step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
  }
  .journey-step p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
  }

  /* === SECTION EXEMPLES MÉTIERS === */
  .section-cases {
    border-top: 1px solid var(--border-soft);
  }
  .cases-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .case-card {
    background: var(--bg-alt);
    border-radius: 14px;
    padding: 32px 28px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(10, 10, 10, 0.08);
  }
  .case-icon {
    width: 48px; height: 48px;
    background: var(--accent);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .case-icon svg { stroke: white; }
  .case-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 16px;
  }
  .case-card h4 em { font-style: italic; color: var(--accent); }
  .case-line {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-soft);
  }
  .case-line strong {
    color: var(--ink);
    font-weight: 600;
    min-width: 64px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-top: 3px;
  }
  .case-cta {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-soft);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--accent);
  }
  .case-cta::before {
    content: '→ ';
    font-style: normal;
    margin-right: 4px;
  }

  /* === SECTION LANCEMENT === */
  .section-launch {
    padding: 120px 56px 140px;
  }
  .launch-card {
    max-width: 920px;
    margin: 0 auto;
    background: var(--accent);
    color: var(--bg);
    border-radius: 16px;
    padding: 56px 64px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(92, 31, 38, 0.25);
  }
  .launch-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 244, 245, 0.08), transparent 60%);
    pointer-events: none;
  }
  .launch-badge {
    display: inline-block;
    background: rgba(244, 244, 245, 0.18);
    color: var(--bg);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 28px;
    border: 1px solid rgba(244, 244, 245, 0.3);
  }
  .launch-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--bg);
    margin-bottom: 28px;
    max-width: 700px;
  }
  .launch-card h3 em { font-style: italic; }
  .launch-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
  }
  .launch-features li {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(244, 244, 245, 0.9);
  }
  .launch-features li::before {
    content: '✓';
    color: var(--bg);
    font-weight: 700;
    flex-shrink: 0;
  }
  .launch-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  .launch-btn {
    background: var(--bg);
    color: var(--accent);
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s;
  }
  .launch-btn:hover { transform: translateY(-2px); }

  /* === SECTION FEATURES (05) === */
  .section-features .section-title {
    max-width: 880px;
  }
  .features-list {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--border-soft);
  }
  .feature {
    padding: 32px 36px 32px 0;
    border-bottom: 1px solid var(--border-soft);
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: padding 0.3s;
  }
  .feature:nth-child(even) {
    padding-left: 36px;
    padding-right: 0;
    border-left: 1px solid var(--border-soft);
  }
  .feature:hover {
    padding-left: 44px;
  }
  .feature:nth-child(even):hover {
    padding-left: 44px;
  }
  .feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--accent-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
  }
  .feature-text {
    flex: 1;
  }
  .feature-text h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 19px;
    color: var(--ink);
    margin-bottom: 6px;
  }
  .feature-text p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
  }

  /* === SECTION PROCESS (06) === */
  .section-process {
    background: var(--bg-alt);
  }
  .process-steps {
    margin-top: 72px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
  }
  .process-step {
    display: grid;
    grid-template-columns: 100px 1fr 1fr;
    gap: 48px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-soft);
    align-items: start;
  }
  .process-step:last-child { border-bottom: none; }
  .step-number {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 56px;
    color: var(--accent);
    font-weight: 400;
    line-height: 1;
  }
  .step-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 26px;
    color: var(--ink);
    line-height: 1.2;
  }
  .step-desc {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.65;
  }
  .step-duration {
    display: inline-block;
    margin-top: 12px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
  }

  /* === SECTION WORK (07) === */
  .section-work {
    border-top: 1px solid var(--border-soft);
  }
  .work-showcase {
    margin-top: 64px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(10, 10, 10, 0.12);
  }
  .work-browser-bar {
    background: var(--bg-alt);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-soft);
  }
  .work-browser-bar span {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(0,0,0,0.12);
  }
  .work-url {
    margin-left: 16px;
    background: white;
    padding: 8px 18px;
    border-radius: 22px;
    font-size: 13px;
    color: var(--ink-soft);
    flex: 1;
    max-width: 380px;
  }
  .work-screen {
    padding: 56px 64px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    min-height: 480px;
  }
  .work-screen-content h3 {
    font-size: 13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 600;
  }
  .work-screen-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 20px;
    font-weight: 400;
  }
  .work-screen-content h4 em {
    font-style: italic;
    color: var(--accent);
  }
  .work-screen-content p {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .work-screen-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: white;
    padding: 14px 26px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
  }
  .work-screen-image {
    aspect-ratio: 1/1.15;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
  }
  /* Mini nav blanche */
  .tdp-nav {
    background: #FFFFFF;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #65110b;
    flex-shrink: 0;
  }
  .tdp-logo {
    display: flex;
    align-items: center;
    line-height: 1;
  }
  .tdp-logo img {
    height: 26px;
    width: auto;
    object-fit: contain;
    display: block;
  }
  .tdp-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #65110b;
  }
  .tdp-logo-sub {
    font-size: 6px;
    letter-spacing: 0.2em;
    color: #a96d38;
    font-weight: 600;
  }
  .tdp-nav-cta {
    display: flex;
    gap: 4px;
  }
  .tdp-pill {
    padding: 5px 9px;
    border-radius: 3px;
    font-size: 7px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.02em;
  }
  .tdp-pill.burgundy { background: #65110b; }
  .tdp-pill.copper { background: #a96d38; }

  /* Hero plein avec image de chantier */
  .tdp-hero {
    flex: 1;
    position: relative;
    background:
      linear-gradient(180deg, rgba(26, 16, 10, 0.55) 0%, rgba(74, 42, 24, 0.5) 50%, rgba(122, 70, 38, 0.7) 100%),
      radial-gradient(ellipse at 70% 40%, #8a5028 0%, #4a2818 50%, #1a1008 100%);
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
  /* Suggestion d'engin */
  .tdp-hero::before {
    content: '';
    position: absolute;
    right: -10%;
    bottom: 18%;
    width: 70%;
    height: 50%;
    background:
      radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55), transparent 70%);
    pointer-events: none;
  }
  .tdp-hero::after {
    content: '';
    position: absolute;
    right: -20%;
    bottom: -10%;
    width: 80%;
    height: 60%;
    background:
      radial-gradient(ellipse at center, rgba(212, 145, 88, 0.18), transparent 60%);
    pointer-events: none;
  }
  .tdp-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 4px 9px;
    border: 1px solid rgba(169, 109, 56, 0.7);
    background: rgba(26, 16, 10, 0.4);
    border-radius: 3px;
    font-size: 7px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d4a576;
    font-weight: 700;
    position: relative;
    z-index: 2;
  }
  .tdp-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 1;
    color: white;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 2;
  }
  .tdp-title em {
    font-style: normal;
    color: #d49158;
    display: block;
    margin-top: 4px;
  }
  .tdp-actions {
    display: flex;
    gap: 5px;
    margin-top: 4px;
    position: relative;
    z-index: 2;
  }
  .tdp-btn {
    padding: 6px 11px;
    border-radius: 3px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .tdp-btn.copper {
    background: #a96d38;
    color: white;
  }
  .tdp-btn.outline {
    background: transparent;
    color: white;
    border: 1px solid white;
  }
  .work-meta {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .work-meta-item h5 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 32px;
    color: var(--accent);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 6px;
  }
  .work-meta-item p {
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--ink-soft);
  }

  /* === SECTION AUTRES RÉALISATIONS (07) === */
  .section-other-work {
    background: var(--bg);
    border-top: 1px solid var(--border-soft);
  }
  .other-work-grid {
    margin-top: 72px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .ow-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(10, 10, 10, 0.08);
    transition: transform 0.4s, box-shadow 0.4s;
  }
  .ow-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10, 10, 10, 0.15);
  }
  .ow-preview {
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .ow-tag {
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.9;
    width: fit-content;
  }
  .ow-name {
    font-size: 26px;
    line-height: 1.05;
    font-weight: 500;
  }
  .ow-foot {
    font-size: 10px;
    letter-spacing: 0.05em;
    opacity: 0.75;
    margin-top: 4px;
  }
  .ow-info {
    padding: 14px 16px;
    background: white;
    border-top: 1px solid var(--border-soft);
  }
  .ow-info h5 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 2px;
  }
  .ow-info span {
    font-size: 11px;
    color: var(--ink-soft);
  }
  /* Variantes par marque */
  .ow-ciconia {
    background: #B59586;
    color: white;
  }
  .ow-ciconia .ow-name {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
  }
  .ow-blondie {
    background: linear-gradient(160deg, #FBD7CC 0%, #fff 100%);
    color: #b9356a;
  }
  .ow-blondie .ow-tag {
    background: #E91E63;
    color: white;
    padding: 4px 9px;
    border-radius: 100px;
    letter-spacing: 0.18em;
  }
  .ow-blondie .ow-name {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
  }
  .ow-domeo {
    background: #EBE0CE;
    color: #6F4D38;
  }
  .ow-domeo .ow-tag { color: #C58A6F; }
  .ow-domeo .ow-name {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
  }
  .ow-unbrin {
    background: #F2ECE0;
    color: #1A1A18;
  }
  .ow-unbrin .ow-tag {
    color: #DC5A1F;
  }
  .ow-unbrin .ow-name {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #DC5A1F;
  }
  .ow-sakin {
    background: #0F0F0F;
    color: #F1ECE5;
  }
  .ow-sakin .ow-tag { color: #DC8276; }
  .ow-sakin .ow-name {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: #F1ECE5;
  }
  .ow-joyful {
    background: linear-gradient(160deg, #FCE2D5 0%, #FFF5EE 100%);
    color: #7A4435;
  }
  .ow-joyful .ow-tag { color: #DC7E68; }
  .ow-joyful .ow-name {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
  }
  .ow-joyful .ow-name::after {
    content: ' ♥';
    color: #DC7E68;
    font-size: 16px;
    vertical-align: super;
  }

  /* === SECTION TESTIMONIALS (08) === */
  .section-testimonials {
    background: var(--bg-alt);
  }
  .testimonials-rating {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .stars-display {
    color: var(--accent);
    font-size: 28px;
    letter-spacing: 4px;
  }
  .rating-number {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1;
    color: var(--ink);
    font-weight: 500;
  }
  .rating-label {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.5;
  }
  .rating-label strong { color: var(--ink); font-weight: 600; }
  .testimonials-grid {
    margin-top: 72px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .testimonial {
    background: var(--bg);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
  }
  .testimonial-stars {
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
  .testimonial-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 17px;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 24px;
    flex: 1;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-soft);
  }
  .author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
  }
  .author-info h6 {
    font-size: 14px;
    color: var(--ink);
    font-weight: 600;
  }
  .author-info p {
    font-size: 11px;
    color: var(--ink-soft);
    margin-top: 2px;
  }

  /* === SECTION ABOUT (09) === */
  .section-about .section-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
  }
  .about-photo-wrap {
    position: relative;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
  }
  .about-photo {
    width: 78%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: url('https://maisoncalendula.fr/wp-content/uploads/2026/05/studiolandingpage-maisoncalendula.png') center/cover, #F5EFE5;
    background-color: #F5EFE5;
    border: 4px solid #FFFFFF;
    box-shadow:
      0 0 0 1.5px var(--accent),
      0 30px 80px rgba(92, 31, 38, 0.18);
    position: relative;
    z-index: 2;
  }
  /* Modules flottants autour de la bulle */
  .float-module {
    position: absolute;
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: 100px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 12px 30px rgba(10, 10, 10, 0.08);
    z-index: 3;
    animation: floatModule 4s ease-in-out infinite;
  }
  .float-module svg {
    width: 14px; height: 14px;
    stroke: var(--accent);
    flex-shrink: 0;
  }
  .float-module.fm-devis { top: 4%; left: -8%; animation-delay: 0s; }
  .float-module.fm-whatsapp { top: 22%; right: -5%; animation-delay: 0.8s; }
  .float-module.fm-rdv { bottom: 24%; right: -2%; animation-delay: 1.6s; }
  .float-module.fm-mobile { bottom: 6%; left: -2%; animation-delay: 2.4s; }
  .float-module.fm-avis { top: 50%; left: -10%; animation-delay: 3.2s; }
  .float-module.fm-whatsapp svg { stroke: none; fill: #25D366; }
  @keyframes floatModule {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
  .about-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 20px;
  }
  .about-text p strong { color: var(--ink); font-weight: 600; }
  .about-text p em { font-style: italic; color: var(--accent); }
  .about-signature {
    margin-top: 32px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: 14px;
    color: var(--ink-soft);
  }
  .about-signature .script {
    font-family: 'Allura', cursive;
    font-size: 44px;
    color: var(--ink);
    line-height: 1;
  }

  /* === SECTION PRICING (10) === */
  .section-pricing {
    background: var(--bg-alt);
    text-align: center;
  }
  .section-pricing .section-eyebrow,
  .section-pricing .section-title,
  .section-pricing .section-intro {
    display: block;
  }
  .section-pricing .section-eyebrow {
    justify-content: center;
  }
  .section-pricing .section-title {
    max-width: 800px;
    margin: 0 auto;
  }
  .section-pricing .section-intro {
    margin: 24px auto 0;
  }
  .pricing-card {
    margin: 72px auto 0;
    max-width: 720px;
    background: var(--bg);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 48px 56px;
    box-shadow: 0 30px 80px rgba(10, 10, 10, 0.1);
    text-align: left;
  }
  .pricing-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border-soft);
  }
  .pricing-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ink);
  }
  .pricing-name em { font-style: italic; color: var(--accent); }
  .pricing-tagline {
    font-size: 14px;
    color: var(--ink-soft);
    margin-top: 6px;
  }
  .pricing-amount {
    text-align: right;
    flex-shrink: 0;
  }
  .pricing-amount-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 4px;
  }
  .pricing-amount-value {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    line-height: 1;
    color: var(--accent);
    font-weight: 500;
  }
  .pricing-amount-suffix {
    font-size: 13px;
    color: var(--ink-soft);
    margin-top: 4px;
  }
  .pricing-amount-note {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--ink-soft);
    border-top: 1px solid var(--border-soft);
    margin-top: 22px;
    padding-top: 18px;
  }
  .pricing-amount-note strong {
    color: var(--ink);
    font-weight: 600;
  }
  .pricing-block-intro {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: -8px 0 20px;
    font-style: italic;
  }
  .pricing-block {
    padding: 28px 0;
    border-bottom: 1px solid var(--border-soft);
  }
  .pricing-block:last-of-type { border-bottom: none; }
  .pricing-block-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 18px;
    font-weight: 500;
  }
  .pricing-block-letter {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    flex-shrink: 0;
  }
  .pricing-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
  }
  .pricing-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--ink);
    line-height: 1.5;
  }
  .pricing-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 8px;
  }
  .pricing-block-note {
    font-size: 12px;
    color: var(--ink-soft);
    font-style: italic;
    margin-top: 14px;
  }
  .pricing-actions {
    margin-top: 32px;
  }
  .pricing-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  /* === SECTION LAUNCH (11) === */
  .section-launch {
    padding: 100px 56px 120px;
  }
  .launch-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--accent);
    color: var(--bg);
    border-radius: 16px;
    padding: 56px 64px;
    position: relative;
    overflow: hidden;
  }
  .launch-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 244, 245, 0.1), transparent 60%);
    pointer-events: none;
  }
  .launch-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--accent-deep);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 24px;
  }
  .launch-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--bg);
    margin-bottom: 20px;
    max-width: 600px;
  }
  .launch-card h3 em { font-style: italic; color: var(--gold); }
  .launch-card p {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(244, 244, 245, 0.85);
    margin-bottom: 32px;
    max-width: 540px;
  }
  .launch-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .launch-btn {
    background: var(--bg);
    color: var(--accent);
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s;
  }
  .launch-btn:hover { transform: translateY(-2px); }

  /* === SECTION FAQ (12) === */
  .section-faq {
    border-top: 1px solid var(--border-soft);
  }
  .faq-list {
    margin-top: 64px;
    max-width: 880px;
  }
  .faq-item {
    border-top: 1px solid var(--border-soft);
    padding: 28px 0;
  }
  .faq-item:last-child {
    border-bottom: 1px solid var(--border-soft);
  }
  .faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--ink);
    list-style: none;
  }
  .faq-question::-webkit-details-marker { display: none; }
  .faq-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--accent-tint);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s;
  }
  details[open] .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: white;
  }
  .faq-answer {
    margin-top: 16px;
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.65;
    max-width: 720px;
  }

  /* === SECTION CTA FINAL (13) === */
  .section-cta {
    background: var(--bg-alt);
    text-align: center;
    padding: 140px 56px 160px;
    border-top: 1px solid var(--border-soft);
  }
  .section-cta .section-eyebrow {
    justify-content: center;
  }
  .section-cta .section-title {
    max-width: 880px;
    margin: 0 auto;
  }
  .section-cta-intro {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 600px;
    margin: 24px auto 48px;
    line-height: 1.65;
  }
  .section-cta .btn-primary {
    font-size: 16px;
    padding: 20px 40px;
  }
  .cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* === FOOTER === */
  footer {
    padding: 56px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border-soft);
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
  }
  .footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 12px;
  }
  .footer-tagline {
    font-size: 14px;
    color: var(--ink-soft);
    max-width: 320px;
    line-height: 1.55;
  }
  .footer-col h5 {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 16px;
  }
  .footer-col a {
    display: block;
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
  }
  .footer-col a:hover { color: var(--accent); }
  .footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--ink-faint);
    flex-wrap: wrap;
    gap: 16px;
  }

  /* === FLOATING NAV DESKTOP === */
  .floating-nav {
    position: fixed;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
  }
  .floating-nav.visible {
    opacity: 1;
    pointer-events: auto;
  }
  .floating-nav a {
    background: var(--ink);
    color: var(--bg);
    padding: 12px 20px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 30px rgba(10, 10, 10, 0.2);
    transition: background 0.3s, transform 0.2s;
    text-align: center;
    min-width: 140px;
  }
  .floating-nav a:hover {
    background: var(--accent);
    transform: translateX(-4px);
  }
  .floating-nav a.accent {
    background: var(--accent);
  }
  .floating-nav a.accent:hover {
    background: var(--accent-deep);
  }
  .floating-nav a.whatsapp {
    background: #25D366;
  }
  .floating-nav a.whatsapp:hover {
    background: #1FB957;
  }

  /* === STICKY MOBILE === */
  .sticky-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--ink);
    padding: 8px;
    box-shadow: 0 -10px 30px rgba(10, 10, 10, 0.2);
  }
  .sticky-mobile-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
  .sticky-mobile a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 6px;
    color: var(--bg);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.2s;
  }
  .sticky-mobile a:active {
    background: rgba(244, 244, 245, 0.1);
  }
  .sticky-mobile svg {
    width: 18px;
    height: 18px;
  }
  .sticky-mobile a.accent {
    background: var(--accent);
  }
  .sticky-mobile a.whatsapp {
    background: #25D366;
  }

  /* === RESPONSIVE === */
  @media (max-width: 1200px) {
    .hero-mockup-left { left: -80px; width: 170px; height: 320px; }
    .hero-mockup-right { right: -80px; width: 170px; height: 320px; }
    .work-screen { padding: 40px 40px; gap: 40px; }
  }
  @media (max-width: 1024px) {
    .hero-mockup { display: none; }
    .nav-center { display: none; }
    .section { padding: 80px 32px 100px; }
    .section-diagnostic .section-inner,
    .section-method .section-inner,
    .section-about .section-inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .ads-compare {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .ads-arrow {
      transform: rotate(90deg);
      font-size: 24px;
    }
    .ads-flow {
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .ads-flow-arrow {
      transform: rotate(90deg);
      font-size: 22px;
    }
    .ads-flow-step.accent { transform: none; }
    .journey-steps {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px 16px;
    }
    .journey-line { display: none; }
    .cases-grid { grid-template-columns: 1fr; }
    .features-list { grid-template-columns: 1fr; }
    .feature:nth-child(even) {
      padding-left: 0;
      padding-right: 36px;
      border-left: none;
    }
    .testimonials-grid { grid-template-columns: 1fr; }
    .other-work-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .ow-name { font-size: 24px; }
    .work-screen { grid-template-columns: 1fr; padding: 32px; }
    .work-meta { grid-template-columns: 1fr; }
    .process-step {
      grid-template-columns: 60px 1fr;
      gap: 24px;
    }
    .step-number { font-size: 36px; }
    .step-desc { grid-column: 1 / -1; padding-left: 84px; }
    .floating-nav { display: none; }
  }
  @media (max-width: 768px) {
    .nav { padding: 14px 20px; }
    .nav-login { display: none; }
    .nav-cta { padding: 11px 18px; font-size: 13px; }
    .nav-brand { font-size: 19px; }
    .hero { padding: 20px 20px 60px; }
    .hero-eyebrow { margin-bottom: 28px; font-size: 12px; padding: 8px 16px; }
    .hero-title { margin-bottom: 24px; }
    .hero-subtitle { margin-bottom: 32px; }
    .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .hero-proof { gap: 14px; font-size: 12px; }
    .proof-separator { display: none; }
    .section { padding: 64px 20px 80px; }
    .other-work-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .ow-name { font-size: 20px; }
    .ow-preview { padding: 18px 14px; }
    .pricing-card { padding: 32px 28px; }
    .pricing-header { flex-direction: column; gap: 16px; }
    .pricing-amount { text-align: left; }
    .pricing-features { grid-template-columns: 1fr; }
    .launch-card { padding: 36px 28px; }
    .section-cta { padding: 80px 20px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .sticky-mobile { display: block; }
    body { padding-bottom: 64px; }
  }

  /* === ANIMATIONS === */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.9s ease-out forwards;
  }
  .fade-in:nth-child(1) { animation-delay: 0.1s; }
  .fade-in:nth-child(2) { animation-delay: 0.25s; }
  .fade-in:nth-child(3) { animation-delay: 0.4s; }
  .fade-in:nth-child(4) { animation-delay: 0.55s; }
  .fade-in:nth-child(5) { animation-delay: 0.7s; }
  .fade-in:nth-child(6) { animation-delay: 0.85s; }
  .hero-mockup {
    opacity: 0;
    animation: floatIn 1.2s ease-out forwards;
  }
  .hero-mockup-left { animation-delay: 0.6s; }
  .hero-mockup-right { animation-delay: 0.8s; }
  @keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }
  @keyframes floatIn { to { opacity: 1; } }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
