    /* ============================================
       CSS — LE CODE ÉLÉGANCE / MAGNETIC
       Mobile-first responsive
       Style: éditorial sobre type Madame Figaro
    ============================================ */

    :root {
      --bg-primary: #FAF7F2;
      --bg-secondary: #F2EDE5;
      --bg-card: #FFFFFF;
      --text-primary: #1A1A1A;
      --text-heading: #0A0A0A;
      --text-muted: #6B6258;
      --accent: #8B7355;
      --line: #D4C9B8;
      --cta-bg: #16A34A;
      --cta-bg-hover: #15803D;
      --cta-text: #FFFFFF;
      --highlight: #5C1A1B;
      --max-content: 720px;
      --max-wide: 960px;
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      font-weight: 400;
      font-size: 17px;
      line-height: 1.7;
      color: var(--text-primary);
      background-color: var(--bg-primary);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    h1, h2, h3, h4 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      color: var(--text-heading);
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }

    h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
    h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1.5rem; }
    h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-bottom: 1rem; }
    h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

    p { margin-bottom: 1.2rem; }
    em, i { font-style: italic; color: var(--text-muted); }
    strong { font-weight: 600; color: var(--text-heading); }

    a {
      color: var(--text-heading);
      text-decoration: none;
      border-bottom: 1px solid var(--line);
      transition: border-color 0.2s;
    }
    a:hover { border-bottom-color: var(--text-heading); }

    .section {
      padding: 4rem 1.5rem;
      max-width: var(--max-content);
      margin: 0 auto;
    }
    .section--wide { max-width: var(--max-wide); }
    .section--alt {
      background-color: var(--bg-secondary);
      max-width: none;
      padding: 4rem 0;
    }
    .section--alt > .inner {
      max-width: var(--max-content);
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 500;
      margin-bottom: 0.8rem;
    }

    /* ============================================
       HERO
    ============================================ */
    .hero {
      text-align: center;
      padding: 5rem 1.5rem 4rem;
      max-width: var(--max-wide);
      margin: 0 auto;
    }
    .hero__image {
      width: 100%;
      max-width: 720px;
      margin: 0 auto 2.5rem;
      border-radius: 4px;
      overflow: hidden;
    }
    .hero__image img {
      width: 100%;
      height: auto;
      display: block;
    }
    .hero h1 {
      max-width: 720px;
      margin: 0 auto 1.5rem;
    }
    .hero h1 .second-line {
      display: block;
      font-size: 0.7em;
      margin-top: 1rem;
      font-weight: 400;
    }
    .hero__subtitle {
      max-width: 640px;
      margin: 0 auto 2.5rem;
      font-size: 1.1rem;
      color: var(--text-muted);
      font-style: italic;
    }
    .hero__meta {
      margin-top: 1rem;
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    /* ============================================
       CTA BUTTON
    ============================================ */
    .cta-btn {
      display: inline-block;
      padding: 1.1rem 2.4rem;
      background-color: var(--cta-bg);
      color: var(--cta-text);
      font-family: 'Inter', sans-serif;
      font-size: 1.05rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      text-decoration: none;
      border: none;
      border-bottom: none;
      cursor: pointer;
      transition: background-color 0.25s ease;
      border-radius: 2px;
    }
    .cta-btn:hover {
      background-color: var(--cta-bg-hover);
      border-bottom: none;
    }
    .cta-btn--large {
      font-size: 1.15rem;
      padding: 1.3rem 3rem;
    }

    /* CTA pulse animation */
    @keyframes ctaPulse {
      0% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.55), 0 4px 14px rgba(22, 163, 74, 0.25);
        transform: scale(1);
      }
      50% {
        transform: scale(1.03);
      }
      70% {
        box-shadow: 0 0 0 18px rgba(22, 163, 74, 0), 0 4px 18px rgba(22, 163, 74, 0.35);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0), 0 4px 14px rgba(22, 163, 74, 0.25);
        transform: scale(1);
      }
    }

    .cta-btn--pulse {
      position: relative;
      animation: ctaPulse 2.2s ease-in-out infinite;
      box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
    }
    .cta-btn--pulse:hover {
      animation-play-state: paused;
      transform: scale(1.03);
      box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
    }

    @media (prefers-reduced-motion: reduce) {
      .cta-btn--pulse {
        animation: none;
      }
    }

    /* ============================================
       PONT YOUTUBE
    ============================================ */
    .pont-youtube {
      background-color: var(--bg-secondary);
      padding: 3rem 1.5rem;
      text-align: center;
    }
    .pont-youtube__inner {
      max-width: var(--max-content);
      margin: 0 auto;
    }
    .pont-youtube__photo {
      width: 100%;
      max-width: 720px;
      margin: 0 auto 2rem;
      border-radius: 4px;
      overflow: hidden;
    }
    .pont-youtube__photo img {
      width: 100%;
      height: auto;
      display: block;
    }
    .pont-youtube__text {
      text-align: center;
      max-width: 640px;
      margin: 0 auto;
    }

    /* ============================================
       PARAMETER CARDS (Le Code)
    ============================================ */
    .parameters {
      display: grid;
      gap: 1.5rem;
      margin: 2.5rem 0;
    }
    .parameter-card {
      background-color: var(--bg-card);
      padding: 2rem 1.8rem;
      border-left: 3px solid var(--accent);
      border-radius: 2px;
    }
    .parameter-card h3 {
      margin-bottom: 0.8rem;
    }
    .parameter-card p {
      margin-bottom: 0.6rem;
    }
    .parameter-card p:last-child {
      margin-bottom: 0;
    }

    /* Silhouettes Gallery */
    .silhouettes-gallery {
      margin: 3rem 0;
    }
    .silhouette-item {
      margin-bottom: 2rem;
      text-align: center;
    }
    .silhouette-item img {
      width: 100%;
      max-width: 720px;
      height: auto;
      border-radius: 4px;
      display: block;
      margin: 0 auto 0.8rem;
    }
    .silhouette-item .silhouette-caption {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      color: var(--text-muted);
      font-size: 1rem;
      margin-top: 0.5rem;
    }

    /* Aperçu mockup */
    .apercu-mockup {
      margin: 2.5rem auto;
      text-align: center;
      max-width: 600px;
    }
    .apercu-mockup img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Constat image */
    .constat-image {
      width: 100%;
      margin: 0 0 2.5rem;
      border-radius: 4px;
      overflow: hidden;
    }
    .constat-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Offre mockup */
    .offre-mockup {
      margin: 2rem auto 2.5rem;
      text-align: center;
      max-width: 720px;
    }
    .offre-mockup img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Module image */
    .module-card__image {
      width: 100%;
      margin-bottom: 1.2rem;
      border-radius: 4px;
      overflow: hidden;
      background: var(--bg-secondary);
    }
    .module-card__image img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ============================================
       APERÇU / TABLE
    ============================================ */
    .apercu-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0;
    }
    .apercu-list li {
      padding: 0.6rem 0;
      border-bottom: 1px solid var(--line);
      display: flex;
      gap: 1.2rem;
      align-items: baseline;
    }
    .apercu-list li:last-child { border-bottom: none; }
    .apercu-list strong {
      flex-shrink: 0;
      min-width: 130px;
      color: var(--accent);
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
    }

    .insights-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0;
    }
    .insights-list li {
      padding: 0.8rem 0 0.8rem 1.5rem;
      border-bottom: 1px solid var(--line);
      position: relative;
    }
    .insights-list li:last-child { border-bottom: none; }
    .insights-list li::before {
      content: "—";
      position: absolute;
      left: 0;
      color: var(--accent);
    }

    /* ============================================
       MODULES
    ============================================ */
    .modules {
      display: grid;
      gap: 1.5rem;
      margin: 2.5rem 0;
    }
    .module-card {
      background-color: var(--bg-card);
      padding: 1.8rem;
      border-radius: 4px;
      border: 1px solid var(--line);
    }
    .module-card--featured {
      border: 2px solid var(--accent);
      position: relative;
    }
    .module-card--featured::after {
      content: "NOUVEAU";
      position: absolute;
      top: -10px;
      right: 1rem;
      background: var(--accent);
      color: var(--bg-card);
      padding: 0.2rem 0.7rem;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      border-radius: 2px;
    }
    .module-card h3 {
      margin-bottom: 0.4rem;
    }
    .module-card .module-tagline {
      color: var(--accent);
      font-style: italic;
      font-size: 0.95rem;
      margin-bottom: 0.8rem;
    }

    /* ============================================
       FOUNDER STORY
    ============================================ */
    .founder-photo {
      width: 100%;
      margin: 2rem 0 2.5rem;
      border-radius: 4px;
      overflow: hidden;
    }
    .founder-photo img {
      width: 100%;
      height: auto;
      display: block;
    }
    .founder-story {
      max-width: 640px;
      margin: 0 auto;
    }
    /* ============================================
       COHORT FONDATRICE / TÉMOIGNAGES
    ============================================ */
    .cohort-fondatrice {
      background-color: var(--bg-secondary);
      padding: 3rem 1.5rem;
    }
    .cohort-fondatrice__inner {
      max-width: var(--max-content);
      margin: 0 auto;
    }

    /* Témoignages Beta */
    .testimonials {
      margin: 2.5rem 0;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .testimonial {
      background: var(--bg-card);
      padding: 1.5rem;
      border-radius: 4px;
      border: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .testimonial__header {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .testimonial__avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      background: var(--line);
    }
    .testimonial__avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .testimonial__name {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.05rem;
      color: var(--text-heading);
      line-height: 1.3;
    }
    .testimonial__meta {
      color: var(--text-muted);
      font-size: 0.85rem;
      margin-top: 0.15rem;
    }
    .testimonial__quote {
      font-size: 0.95rem;
      line-height: 1.65;
      color: var(--text-primary);
      margin: 0;
    }
    .testimonial__quote::before {
      content: "«\00a0";
      color: var(--accent);
    }
    .testimonial__quote::after {
      content: "\00a0»";
      color: var(--accent);
    }
    .testimonials-note {
      font-style: italic;
      font-size: 0.85rem;
      color: var(--text-muted);
      text-align: center;
      margin-top: 1rem;
    }
    .cohort-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0;
    }
    .cohort-list li {
      padding: 0.5rem 0;
      padding-left: 1.5rem;
      position: relative;
    }
    .cohort-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: 600;
    }

    /* ============================================
       OFFRE / PRICING TABLE
    ============================================ */
    .offre-table {
      width: 100%;
      border-collapse: collapse;
      margin: 2rem 0;
    }
    .offre-table th, .offre-table td {
      text-align: left;
      padding: 1rem 0.5rem;
      border-bottom: 1px solid var(--line);
    }
    .offre-table th {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 500;
      color: var(--accent);
      font-size: 0.9rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .offre-table td.value {
      text-align: right;
      font-variant-numeric: tabular-nums;
      color: var(--text-muted);
      white-space: nowrap;
      width: 100px;
    }
    .offre-table tr.highlight td {
      font-weight: 600;
      color: var(--text-heading);
    }
    .offre-table tr:last-child td { border-bottom: none; }

    .total-stack {
      text-align: center;
      padding: 1.5rem;
      background: var(--bg-secondary);
      border-left: 3px solid var(--accent);
      margin: 2rem 0;
      font-size: 1.2rem;
    }
    .total-stack strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
    }

    .price-comparison {
      background: var(--bg-card);
      padding: 1.8rem;
      border: 1px solid var(--line);
      border-radius: 4px;
      margin: 2rem 0;
    }
    .price-comparison ul {
      list-style: none;
      padding: 0;
    }
    .price-comparison li {
      padding: 0.4rem 0;
    }

    .final-price {
      text-align: center;
      padding: 2.5rem 1rem;
      margin: 2rem 0;
    }
    .final-price__label {
      font-size: 0.9rem;
      color: var(--text-muted);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }
    .final-price__value {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 6vw, 3.8rem);
      font-weight: 600;
      color: var(--text-heading);
      margin-bottom: 0.5rem;
    }
    .final-price__subline {
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .urgency {
      text-align: center;
      padding: 1rem 1.5rem;
      background: var(--bg-secondary);
      border-radius: 4px;
      font-size: 0.95rem;
      margin: 1.5rem 0;
    }
    .urgency strong {
      color: var(--highlight);
    }
    .countdown {
      font-weight: 600;
      color: var(--highlight);
      font-variant-numeric: tabular-nums;
      white-space: nowrap;
      letter-spacing: 0.02em;
    }

    .cta-block {
      text-align: center;
      padding: 2rem 0;
    }
    .cta-block__microcopy {
      margin-top: 1rem;
      color: var(--text-muted);
      font-size: 0.9rem;
      font-style: italic;
    }
    .cta-block__bonus-tracker {
      margin-top: 1.2rem;
      padding: 0.8rem 1.5rem;
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: 2px;
      display: inline-block;
      font-size: 0.95rem;
    }

    /* ============================================
       GARANTIE
    ============================================ */
    .garantie-card {
      background-color: var(--bg-card);
      padding: 2.2rem;
      border: 1px solid var(--accent);
      border-radius: 4px;
      margin: 1.5rem 0;
    }
    .garantie-card h3 {
      color: var(--accent);
      font-style: italic;
      margin-bottom: 1rem;
    }

    /* ============================================
       ANTI-PITCH
    ============================================ */
    .anti-pitch {
      background-color: var(--bg-secondary);
      padding: 3rem 1.5rem;
    }
    .anti-pitch__inner {
      max-width: var(--max-content);
      margin: 0 auto;
    }
    .anti-pitch ul {
      list-style: none;
      padding: 0;
    }
    .anti-pitch li {
      padding: 1rem 0;
      border-bottom: 1px solid var(--line);
    }
    .anti-pitch li:last-child { border-bottom: none; }
    .anti-pitch li strong {
      display: block;
      margin-bottom: 0.3rem;
      color: var(--text-heading);
    }

    /* ============================================
       FAQ
    ============================================ */
    .faq-item {
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--line);
    }
    .faq-item:last-child { border-bottom: none; }
    .faq-item h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.8rem;
      color: var(--text-heading);
    }

    /* ============================================
       DERNIÈRE INVITATION
    ============================================ */
    .derniere-invitation {
      text-align: center;
      padding: 4rem 1.5rem;
      max-width: var(--max-content);
      margin: 0 auto;
    }
    .derniere-invitation__image {
      max-width: 720px;
      margin: 0 auto 2.5rem;
      border-radius: 4px;
      overflow: hidden;
    }
    .derniere-invitation__image img {
      width: 100%;
      height: auto;
      display: block;
    }
    .derniere-invitation .question-finale {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-style: italic;
      color: var(--accent);
      margin: 2rem 0;
    }

    .ps {
      max-width: var(--max-content);
      margin: 2.5rem auto 0;
      padding: 1.5rem 1.5rem;
      border-top: 1px solid var(--line);
      font-size: 0.95rem;
      color: var(--text-muted);
    }
    .ps p { margin-bottom: 1rem; }
    .ps strong { color: var(--text-heading); }

    /* ============================================
       PAYMENT BADGES
    ============================================ */
    .payment-badges {
      text-align: center;
      margin: 1.5rem 0;
      font-size: 0.85rem;
      color: var(--text-muted);
    }
    .payment-badges .badge {
      display: inline-block;
      margin: 0 0.5rem;
      padding: 0.3rem 0.7rem;
      border: 1px solid var(--line);
      border-radius: 2px;
      font-size: 0.75rem;
    }
    .payment-badges__img {
      max-width: 280px;
      width: 100%;
      height: auto;
      margin: 0.8rem auto;
      display: inline-block;
    }

    /* ============================================
       FOOTER
    ============================================ */
    footer {
      background-color: var(--text-heading);
      color: var(--bg-primary);
      padding: 3rem 1.5rem;
      text-align: center;
      margin-top: 4rem;
    }
    footer .footer-inner {
      max-width: var(--max-content);
      margin: 0 auto;
    }
    footer h3 {
      color: var(--bg-primary);
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
    footer a {
      color: var(--bg-primary);
      border-bottom-color: rgba(250, 247, 242, 0.3);
      margin: 0 0.6rem;
      font-size: 0.9rem;
    }
    footer a:hover { border-bottom-color: var(--bg-primary); }
    footer .legal-info {
      margin-top: 2rem;
      font-size: 0.85rem;
      color: rgba(250, 247, 242, 0.7);
      line-height: 1.8;
    }
    footer .tagline {
      margin-top: 2rem;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.1rem;
    }

    /* ============================================
       RESPONSIVE
    ============================================ */
    @media (max-width: 900px) {
      .testimonials {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
    }

    @media (max-width: 640px) {
      .section { padding: 3rem 1.2rem; }
      .section--alt { padding: 3rem 0; }
      .hero { padding: 2.5rem 1.2rem 2.5rem; }
      .hero__image {
        margin-bottom: 2rem;
      }
      .pont-youtube { padding: 2.5rem 1.2rem; }
      .pont-youtube__photo {
        margin-bottom: 1.5rem;
      }
      .apercu-list li {
        flex-direction: column;
        gap: 0.3rem;
      }
      .apercu-list li strong { min-width: auto; }
      .cta-btn { width: 100%; max-width: 360px; padding: 1rem 1.2rem; font-size: 0.95rem; }
      .cta-btn--large { font-size: 1rem; padding: 1.1rem 1.2rem; }

      /* Silhouettes Gallery — mobile */
      .silhouettes-gallery {
        margin: 2rem -0.5rem;
      }
      .silhouette-item {
        margin-bottom: 1.5rem;
      }

      /* Aperçu mockup — mobile */
      .apercu-mockup {
        margin: 1.8rem auto;
      }

      /* Module card image — mobile */
      .module-card {
        padding: 1.5rem 1.2rem;
      }
      .module-card__image {
        margin-bottom: 1rem;
      }

      /* Founder photo — mobile */
      .founder-photo {
        margin: 1.5rem 0 2rem;
      }

      /* Testimonials — mobile */
      .testimonials {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.8rem 0;
      }
      .testimonial {
        padding: 1.2rem;
      }
      .testimonial__avatar {
        width: 48px;
        height: 48px;
      }
      .testimonial__quote {
        font-size: 0.9rem;
      }

      /* Cohort fondatrice — mobile padding */
      .cohort-fondatrice {
        padding: 2.5rem 1.2rem;
      }

      /* Anti-pitch — mobile */
      .anti-pitch {
        padding: 2.5rem 1.2rem;
      }

      /* Payment badges — mobile */
      .payment-badges__img {
        max-width: 220px;
      }

      /* Offre table — mobile */
      .offre-table th, .offre-table td {
        padding: 0.7rem 0.3rem;
        font-size: 0.9rem;
      }
      .offre-table td.value {
        width: 70px;
      }

      /* Hero typography — mobile */
      .hero h1 .second-line {
        font-size: 0.85em;
      }
      .hero__subtitle {
        font-size: 1rem;
      }
    }

    @media (max-width: 380px) {
      .section { padding: 2.5rem 1rem; }
      .hero { padding: 2rem 1rem; }
    }

    /* Print compatibility */
    @media print {
      .cta-btn, .urgency, .cohort-fondatrice { display: none; }
      body { background: white; color: black; }
    }
