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

:root {
    --primary:    #c2410c;
    --primary-dk: #9a3412;
    --primary-lt: #fde8da;
    --orange:     #f97316;
    --orange-lt:  #fef0e0;
    --sand:       #fef3e2;
    --apricot:    #fde8d0;
    --cream:      #fdf6ee;
    --white:      #ffffff;
    --bg:         #faf5ef;
    --text:       #1c1917;
    --muted:      #78716c;
    --border:     #e8d9cc;
    --radius:     12px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 18px;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
}

/* fonds par section */
#about     { background: var(--sand); }
#comment   { background: var(--apricot); }
#sujets    { background: var(--sand); }
#why       { background: var(--apricot); }
#avis      { background: var(--sand); }
#tarifs    { background: var(--apricot); }

/* ── HEADER ── */
header {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.04em;
}

nav a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background 0.2s;
}

nav a:hover { background: var(--primary-lt); }

.header-tel {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
    background: var(--primary-lt);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    border: 2px solid var(--primary);
}

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 60%, #ea580c 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 1.5rem 4rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero h1 em {
    font-style: normal;
    color: #fde68a;
}

.hero .slogan {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    opacity: 0.92;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }

.btn-primary { background: var(--primary); color: white; }
.btn-light   { background: #fde68a; color: var(--text); }
.btn-ghost   { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.7); margin-left: 1rem; }

/* ── SECTIONS ── */
section { padding: 4rem 1.5rem; }

.container { max-width: 960px; margin: 0 auto; }

.section-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 580px;
    margin-bottom: 3rem;
}

/* ── HOW IT WORKS ── */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.step {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    border: 1px solid var(--border);
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step p  { font-size: 0.95rem; color: var(--muted); }

/* ── TOPICS ── */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.topic {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.97rem;
    font-weight: 600;
}

.topic .icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

/* ── WHY ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.why-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1.8rem 1.5rem;
    border-left: 4px solid var(--orange);
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.why-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.why-card p  { font-size: 0.93rem; color: var(--muted); }

/* ── ABOUT ── */
.about-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
    border: 5px solid var(--primary);
    box-shadow: 0 8px 30px rgba(194,65,12,0.2);
}

.about-text { flex: 1; }

.about-lead {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.8rem;
}

.about-text p {
    color: var(--muted);
    font-size: 0.97rem;
    margin-bottom: 0.6rem;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.testimonial {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1.8rem 1.5rem;
    border-left: 4px solid var(--primary);
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.testimonial::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    line-height: 1;
    font-family: Georgia, serif;
}

.quote {
    font-size: 0.97rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.t-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

/* ── PRICING ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
}

.price-card.featured {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(194,65,12,0.3);
}

.price-card.featured h3,
.price-card.featured .price,
.price-card.featured .price-duration { color: white; }

.price-card.featured .price-features li { color: rgba(255,255,255,0.85); }
.price-card.featured .price-features li::before { color: #fde68a; }

.badge {
    display: inline-block;
    background: #fde68a;
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    margin-bottom: 0.3rem;
    width: fit-content;
}

.price-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price span {
    font-size: 1.4rem;
    font-weight: 600;
}

.price-duration {
    font-size: 0.88rem;
    color: var(--muted);
}

.price-duration em { font-style: normal; }

.price-features {
    list-style: none;
    margin: 0.5rem 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.price-features li {
    font-size: 0.9rem;
    color: var(--muted);
    padding-left: 1.2rem;
    position: relative;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.price-card .btn { text-align: center; }

.pricing-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
    font-style: italic;
}

/* ── GIFT ── */
.gift-band {
    background: var(--orange-lt);
    border-top: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    padding: 4rem 1.5rem;
}

.gift-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.gift-text { flex: 1; }

.gift-text .section-label { color: var(--orange); }

.gift-text h2 { margin-bottom: 1rem; }

.gift-text p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 520px;
}

.gift-visual {
    font-size: 6rem;
    flex-shrink: 0;
    line-height: 1;
}

/* ── CTA BAND ── */
.cta-band {
    background: var(--primary-lt);
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    text-align: center;
    padding: 3.5rem 1.5rem;
}

.cta-band h2 { margin-bottom: 0.75rem; }

.contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-band p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

/* ── FAQ ── */
#faq { background: var(--apricot); }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.2rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--border);
    color: var(--primary);
}

.faq-item p {
    padding: 1.2rem 1.5rem;
    font-size: 0.97rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ── ZONE ── */
#zone { background: var(--sand); }

.zone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.zone-block {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.zone-block h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.zone-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.zone-block ul li {
    font-size: 0.92rem;
    color: var(--muted);
    padding-left: 1rem;
    position: relative;
}

.zone-block ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.zone-plus p {
    font-size: 0.92rem;
    color: var(--muted);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

/* ── FOOTER ── */
footer {
    background: var(--text);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.88rem;
}

footer strong { color: white; }

footer a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
}

footer a:hover { color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .btn-ghost         { display: none; }
    nav                { display: none; }
    .gift-visual       { display: none; }
    .about-inner       { flex-direction: column; text-align: center; }
    .about-photo       { width: 160px; height: 160px; }
    .price-card.featured { transform: none; }
}
