:root {
    --bg: #fbfaf7;
    --text: #211b16;
    --muted: #6f665d;
    --gold: #f3c315;
    --brown: #4a3325;
    --card: #ffffff;
    --line: #ece4d8;
    --shadow: 0 24px 70px rgba(63, 42, 28, 0.12);
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
  }
  
  .container {
    width: min(1120px, 92%);
    margin: auto;
  }
  
  /* HEADER */
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(251, 250, 247, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  
  .nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 800;
  }
  
  .brand img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
  }
  
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
  }
  
  .menu-btn {
    display: none;
    border: 0;
    background: none;
    font-size: 28px;
  }
  
  /* BUTTONS */
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: var(--brown);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 14px 22px;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(74, 51, 37, 0.22);
  }
  
  .btn:hover {
    transform: translateY(-2px);
  }
  
  .btn-secondary {
    background: #fff;
    color: var(--brown);
    border: 1px solid var(--line);
    box-shadow: none;
  }
  
  .btn-small {
    padding: 10px 16px;
    color: #fff !important;
  }
  
  /* HERO */
  
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 72px 0;
  }
  
  .hero-text h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    max-width: 580px;
    margin-bottom: 24px;
  }
  
  .lead {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 580px;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
  }
  
  .hero-visual img {
    width: 100%;
    display: block;
    border-radius: 32px;
    box-shadow: var(--shadow);
  }
  
  /* TITLES */
  
  .eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 900;
    font-size: 0.78rem;
  }
  
  h1,
  h2,
  h3 {
    line-height: 1.08;
    margin: 0 0 18px;
  }
  
  h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.045em;
  }
  
  h3 {
    font-size: 1.35rem;
  }
  
  /* MESSAGE HERO */
  
  .hero-message {
    background: #fff;
  }
  
  .message-block {
    text-align: left;
  }
  
  .message-block h2 {
    max-width: 700px;
    margin-bottom: 20px;
  }
  
  .lead-text {
    font-size: 1.3rem;
    color: var(--muted);
    max-width: 800px;
    margin-bottom: 50px;
  }
  
  .pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  
  .pillar {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
  }
  
  .pillar h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
  }
  
  .pillar p {
    color: var(--muted);
    margin: 0;
  }
  
  /* SECTIONS */
  
  .section {
    padding: 86px 0;
  }
  
  .muted {
    background: #f3efe7;
  }
  
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  
  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: center;
  }
  
  /* CARDS */
  
  .card,
  .offer,
  .contact-form,
  .quiz {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 32px;
    box-shadow: var(--shadow);
  }
  
  .card {
    padding: 28px;
  }
  
  .card p,
  .offer p,
  .method-list p {
    color: var(--muted);
  }
  
  /* METHOD */
  
  .method-list {
    display: grid;
    gap: 18px;
  }
  
  .method-list div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px;
  }
  
  .method-list span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(243, 195, 21, 0.18);
    color: var(--brown);
    font-weight: 900;
    margin-bottom: 12px;
  }
  
  /* OFFERS */
  
  .offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 28px;
  }
  
  .offer {
    padding: 34px;
  }
  
  .offer.featured {
    border: 2px solid var(--gold);
  }
  
  .offer ul {
    padding-left: 20px;
    color: var(--muted);
  }
  
  .text-link {
    color: var(--brown);
    font-weight: 900;
    text-decoration: none;
  }
  
  /* QUIZ */
  
  .quiz {
    padding: 34px;
  }
  
  .quiz form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
  }
  
  .quiz label {
    display: grid;
    grid-template-columns: 1fr 190px;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
  }
  
  .quiz select,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
    background: #fff;
    font: inherit;
  }
  
  .result {
    margin-top: 22px;
    font-weight: 800;
    color: var(--brown);
    font-size: 1.1rem;
  }
  
  /* CONTACT */
  
  .contact-form {
    padding: 28px;
    display: grid;
    gap: 14px;
  }
  
  .contact-form textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  .email {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--brown);
  }
  
  /* FOOTER */
  
  .footer {
    padding: 28px 0;
    border-top: 1px solid var(--line);
  }
  
  .footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
  }
  
  .footer a {
    color: var(--brown);
    text-decoration: none;
    font-weight: 800;
  }
  
  /* ANIMATION */
  
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: 0.7s ease;
  }
  
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
  
  /* RESPONSIVE */
  
  @media (max-width: 850px) {
    .menu-btn {
      display: block;
    }
  
    .nav-links {
      position: absolute;
      left: 0;
      right: 0;
      top: 76px;
      background: var(--bg);
      border-bottom: 1px solid var(--line);
      display: none;
      flex-direction: column;
      padding: 24px;
    }
  
    .nav-links.open {
      display: flex;
    }
  
    .hero,
    .split,
    .offer-grid,
    .grid-3,
    .pillars {
      grid-template-columns: 1fr;
    }
  
    .hero {
      padding: 58px 0;
    }
  
    .hero-text h1 {
      font-size: clamp(2.2rem, 12vw, 3rem);
      line-height: 0.98;
    }
  
    .quiz label {
      grid-template-columns: 1fr;
    }
  
    .footer-inner {
      flex-direction: column;
    }
  }
  .section-intro {
    max-width: 760px;
    margin-bottom: 46px;
  }
  
  .section-intro h2 {
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    max-width: 760px;
  }
  
  .section-intro p {
    font-size: 1.18rem;
    color: var(--muted);
  }
  
  .audience {
    background: var(--bg);
  }
  
  .not-audience {
    background: #fff;
  }
  
  .audience-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: center;
  }
  
  .audience-image img {
    width: 100%;
    display: block;
    border-radius: 34px;
    box-shadow: var(--shadow);
  }
  
  .audience-cards {
    display: grid;
    gap: 18px;
  }
  
  .audience-card {
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  
  .audience-card h3 {
    margin-bottom: 12px;
  }
  
  .audience-card p {
    margin: 0;
    color: var(--muted);
  }
  
  .audience-card.good {
    border-left: 6px solid var(--gold);
  }
  
  .audience-card.bad {
    background: #fbfaf7;
    border-left: 6px solid var(--brown);
  }
  
  @media (max-width: 850px) {
    .audience-layout {
      grid-template-columns: 1fr;
    }
  
    .section-intro h2 {
      font-size: 2.3rem;
    }
  }
  .quiz-section {
    background: #f3efe7;
  }
  
  .quiz {
    padding: 70px;
    border-radius: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #fbfaf7 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  
  .quiz h2 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    max-width: 960px;
    margin-bottom: 22px;
  }
  
  .quiz-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 760px;
    margin-bottom: 38px;
  }
  
  .quiz-hook {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 42px;
  }
  
  .hook-item {
    padding: 20px 22px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--line);
    font-weight: 800;
  }
  
  @media (max-width: 850px) {
    .quiz {
      padding: 34px;
    }
  
    .quiz h2 {
      font-size: 2.4rem;
    }
  
    .quiz-hook {
      grid-template-columns: 1fr;
    }
  }

  .quiz-cta{
    margin-top:50px;
    padding:32px;
    border-radius:24px;
    background:#fff;
    border:1px solid var(--line);
    text-align:center;
}

.quiz-cta h3{
    margin-bottom:12px;
}

.quiz-cta p{
    max-width:700px;
    margin:0 auto 24px;
    color:var(--muted);
}
.faq-section {
    background: #fff;
  }
  
  .faq-list {
    display: grid;
    gap: 16px;
  }
  
  .faq-item {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px 26px;
    box-shadow: 0 14px 40px rgba(63, 42, 28, 0.06);
  }
  
  .faq-item summary {
    cursor: pointer;
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--text);
  }
  
  .faq-item p {
    margin: 16px 0 0;
    color: var(--muted);
    max-width: 900px;
  }
  .faq-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.faq-link{
    display:block;
    padding:28px;
    border-radius:24px;
    text-decoration:none;
    background:#fff;
    border:1px solid var(--line);
    transition:.25s;
}

.faq-link:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow);
}

.faq-link h3{
    color:var(--text);
    margin-bottom:10px;
}

.faq-link p{
    color:var(--muted);
    margin:0;
}
/* Supprime le cadre intérieur des cartes articles de l'accueil */
.card .faq-link {
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.card .faq-link:hover {
  border: none;
  box-shadow: none;
}
@media(max-width:850px){
    .faq-grid{
        grid-template-columns:1fr;
    }
}