/* ============================================================
   CHIC SHOP — DESIGN SYSTEM PARTAGÉ
   Un seul fichier de style pour tout le site.
============================================================ */

/* ---------- 1. VARIABLES & RESET ---------- */
:root {
    --bg-cream: #fbfaf6;
    --bg-cream-2: #f4f1e9;
    --navy: #0f1729;
    --navy-soft: #1a2236;
    --navy-line: rgba(255,255,255,0.08);
    --gold: #c2a05f;
    --gold-rich: #b08d4f;
    --gold-light: #e4d2a8;
    --text-dark: #1a2233;
    --text-gray: #5b6573;
    --text-light: #8a93a3;
    --white: #ffffff;
    --line: rgba(17, 24, 39, 0.08);
    --radius: 12px;
    --radius-lg: 22px;
    --shadow-sm: 0 4px 20px rgba(17,24,39,0.05);
    --shadow-md: 0 18px 45px rgba(17,24,39,0.10);
    --shadow-gold: 0 18px 40px rgba(194,160,95,0.30);
    --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold); color: #fff; }
img { max-width: 100%; display: block; }

/* ---------- 2. ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    * { animation: none !important; scroll-behavior: auto; }
}

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); } 50% { box-shadow: 0 0 0 8px rgba(74,222,128,0); } }
@keyframes shine { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }

.img-zoom { overflow: hidden; border-radius: var(--radius-lg); }
.img-zoom img { transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); width: 100%; object-fit: cover; }
.img-zoom:hover img { transform: scale(1.06); }

/* ---------- 3. TYPOGRAPHIE ---------- */
h1, h2, h3, h4, .serif { font-family: 'Playfair Display', serif; }
h1 { font-size: clamp(2.3rem, 7vw, 3.7rem); line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 22px; color: var(--navy); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 5vw, 2.8rem); line-height: 1.15; color: var(--navy); margin-bottom: 16px; font-weight: 700; letter-spacing: -0.3px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; font-weight: 600; }
.gold-text { color: var(--gold); font-style: italic; }
.subtitle { color: var(--text-gray); font-size: clamp(1rem, 2.5vw, 1.15rem); margin-bottom: 28px; line-height: 1.7; }
a { text-decoration: none; transition: 0.3s; color: inherit; }
.eyebrow { display: inline-block; color: var(--gold-rich); font-size: 0.8rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px; }

/* ---------- 4. LAYOUT & COMPOSANTS ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 72px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-head .subtitle { margin-bottom: 0; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 16px 30px; border-radius: var(--radius); font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; cursor: pointer; text-align: center; transition: all 0.3s cubic-bezier(0.22,1,0.36,1); border: none; position: relative; z-index: 2; }
.btn-gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-rich) 100%); color: #fff; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 24px 48px rgba(194,160,95,0.42); }
.btn-outline { background: transparent; border: 1.5px solid rgba(17,24,39,0.18); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-3px); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-soft); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-light { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.badge { display: inline-flex; align-items: center; gap: 9px; background: linear-gradient(135deg, rgba(194,160,95,0.12), rgba(194,160,95,0.04)); border: 1px solid rgba(194,160,95,0.25); padding: 8px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; color: var(--gold-rich); margin-bottom: 26px; }

/* ---------- 5. BARRE D'ANNONCE ---------- */
.announce { background: var(--navy); color: var(--gold-light); text-align: center; font-size: 0.84rem; font-weight: 500; padding: 9px 16px; letter-spacing: 0.3px; }
.announce strong { color: #fff; font-weight: 600; }
.announce a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 6. HEADER & NAVIGATION ---------- */
header { padding: 14px 0; background: rgba(251,250,246,0.82); backdrop-filter: saturate(180%) blur(14px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid transparent; transition: box-shadow .3s, border-color .3s; }
header.scrolled { box-shadow: 0 4px 30px rgba(17,24,39,0.06); border-color: var(--line); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.65rem; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; z-index: 1001; }
.logo span { color: var(--gold); }

.desktop-btn { display: none; width: auto; }
.menu-toggle { display: flex; flex-direction: column; cursor: pointer; gap: 6px; z-index: 1001; padding: 4px; }
.menu-toggle span { display: block; width: 26px; height: 2.5px; background: var(--navy); border-radius: 3px; transition: all 0.35s cubic-bezier(0.22,1,0.36,1); }

nav { position: fixed; inset: 0; left: -100%; width: 100%; height: 100dvh; background: var(--bg-cream); display: flex; flex-direction: column; justify-content: center; align-items: center; transition: left 0.45s cubic-bezier(0.76,0,0.24,1); z-index: 1000; }
nav.active { left: 0; }
nav ul { display: flex; flex-direction: column; gap: 26px; list-style: none; text-align: center; width: 82%; }
nav a { color: var(--navy); font-weight: 600; font-size: 1.35rem; font-family: 'Playfair Display', serif; position: relative; }
.mobile-btn { display: block; margin-top: 18px; width: 100%; }

.menu-toggle.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ---------- 7. HERO (accueil) ---------- */
.hero { padding: 48px 0 64px; display: grid; grid-template-columns: 1fr; gap: 44px; text-align: center; position: relative; }
.hero-actions { display: flex; flex-direction: column; gap: 13px; margin-bottom: 26px; }
.hero-trust { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 0.9rem; color: var(--text-gray); }
.hero-trust .stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.hero-trust strong { color: var(--navy); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.stat-item h4 { font-size: clamp(1.6rem, 6vw, 2.2rem); font-weight: 700; color: var(--navy); margin-bottom: 4px; font-family: 'Playfair Display', serif; }
.stat-item p { font-size: 0.78rem; color: var(--text-gray); line-height: 1.4; }
.hero-visual { position: relative; width: 100%; max-width: 520px; margin: 0 auto; order: -1; }
.hero-glow { position: absolute; inset: -8% -6% -10% -6%; background: radial-gradient(60% 55% at 70% 35%, rgba(194,160,95,0.35), transparent 70%); filter: blur(30px); z-index: 0; }
.hero-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); position: relative; z-index: 1; }
.float-card { position: absolute; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); padding: 14px 16px; border-radius: 14px; box-shadow: var(--shadow-md); z-index: 3; border: 1px solid rgba(255,255,255,0.6); }
.float-card.tl { top: 16px; left: -10px; display: none; }
.float-card.br { bottom: 18px; right: -10px; display: none; }
.fc-label { font-size: 0.72rem; color: var(--text-gray); }
.fc-value { font-size: 1.15rem; font-weight: 700; color: var(--navy); font-family: 'Playfair Display', serif; }
.fc-value .up { color: #16a34a; font-size: 0.85rem; }

/* ---------- 8. BANDE CONFIANCE / LOGOS ---------- */
.trust-bar { background: var(--navy); padding: 34px 0; color: #fff; }
.trust-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.trust-label { font-size: 0.72rem; opacity: 0.55; text-transform: uppercase; letter-spacing: 2.5px; }
.clients-list { display: flex; gap: 22px 30px; opacity: 0.85; font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 500; flex-wrap: wrap; justify-content: center; }

/* ---------- 9. PROBLÈME / DOULEUR ---------- */
.problem { background: var(--bg-cream-2); }
.problem-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 44px; }
.pain-card { background: #fff; border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .4s, box-shadow .4s; }
.pain-card .pc-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 14px; background: rgba(220,38,38,0.08); font-size: 1.4rem; margin-bottom: 18px; }
.pain-card h3 { font-size: 1.2rem; color: var(--navy); }
.pain-card p { color: var(--text-gray); font-size: 0.95rem; }
.problem-bridge { text-align: center; margin-top: 46px; }
.problem-bridge p { font-family: 'Playfair Display', serif; font-size: clamp(1.3rem,3.5vw,1.7rem); font-style: italic; color: var(--navy); max-width: 760px; margin: 0 auto; line-height: 1.45; }
.problem-bridge .hl { background: linear-gradient(180deg, transparent 62%, rgba(194,160,95,0.35) 62%); padding: 0 4px; }

/* ---------- 10. OFFRES (SANS PRIX) ---------- */
.offers-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.offer-card { background: #fff; border-radius: var(--radius-lg); padding: 34px 28px; transition: all 0.4s cubic-bezier(0.22,1,0.36,1); display: flex; flex-direction: column; border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative; }
.offer-card.featured { background: var(--navy); color: #fff; box-shadow: 0 24px 55px rgba(15,23,41,0.30); border: none; }
.offer-card.featured .offer-desc, .offer-card.featured .features-list li { color: rgba(255,255,255,0.86); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--gold), var(--gold-rich)); color: #fff; padding: 7px 20px; border-radius: 50px; font-size: 0.74rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; white-space: nowrap; box-shadow: var(--shadow-gold); }
.offer-icon { width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; border-radius: 15px; background: rgba(194,160,95,0.12); font-size: 1.55rem; margin-bottom: 20px; }
.offer-card.featured .offer-icon { background: rgba(194,160,95,0.22); }
.offer-title { font-size: 1.5rem; margin-bottom: 6px; font-weight: 700; color: inherit; }
.offer-for { font-size: 0.82rem; font-weight: 600; color: var(--gold-rich); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; display: block; }
.offer-card.featured .offer-for { color: var(--gold-light); }
.offer-desc { font-size: 0.96rem; margin-bottom: 24px; line-height: 1.65; color: var(--text-gray); }
.offer-quote { font-size: 0.82rem; font-style: italic; color: var(--text-light); margin-bottom: 22px; padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.offer-card.featured .offer-quote { color: var(--gold-light); border-color: var(--navy-line); }
.features-list { list-style: none; margin-bottom: 28px; flex-grow: 1; }
.features-list li { margin-bottom: 13px; font-size: 0.93rem; display: flex; align-items: flex-start; gap: 11px; color: var(--text-dark); }
.tick { color: var(--gold); flex-shrink: 0; font-weight: 700; margin-top: 1px; }
.offer-card.featured .tick { color: var(--gold-light); }

/* ---------- 11. MÉTHODE / PROCESS ---------- */
.process { background: var(--navy); color: #fff; }
.process h2 { color: #fff; }
.process .subtitle { color: rgba(255,255,255,0.72); }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 50px; }
.step-card { background: var(--navy-soft); border: 1px solid var(--navy-line); border-radius: var(--radius-lg); padding: 30px 26px; transition: transform .4s, border-color .4s; position: relative; overflow: hidden; }
.step-num { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: var(--gold); opacity: 0.85; line-height: 1; margin-bottom: 14px; }
.step-card h3 { color: #fff; font-size: 1.25rem; }
.step-card p { color: rgba(255,255,255,0.68); font-size: 0.93rem; }

/* ---------- 12. CARTES "POURQUOI / VALEURS" ---------- */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 46px; }
.why-card { padding: 30px 26px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); border-top: 3px solid var(--gold); transition: transform .4s, box-shadow .4s; }
.why-card .wc-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.why-card h3 { color: var(--navy); font-size: 1.25rem; }
.why-card p { color: var(--text-gray); font-size: 0.95rem; }

/* ---------- 13. RÉSULTATS / PORTFOLIO (aperçu accueil) ---------- */
.portfolio-head { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 36px; }
.portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.project-card { cursor: pointer; transition: transform 0.4s; }
.project-card .img-zoom img { height: 240px; }
.project-tag { background: rgba(194,160,95,0.1); border: 1px solid rgba(194,160,95,0.25); padding: 5px 13px; border-radius: 50px; font-size: 0.74rem; color: var(--gold-rich); display: inline-block; margin: 18px 0 10px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.project-title { font-size: 1.4rem; margin-bottom: 8px; color: var(--navy); font-weight: 700; transition: color 0.3s; }
.project-result { color: var(--gold-rich); font-weight: 600; font-size: 0.95rem; margin-top: 12px; display: flex; align-items: center; gap: 8px; }

/* ---------- 14. TÉMOIGNAGES ---------- */
.testimonials { background: var(--bg-cream-2); }
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 46px; }
.testi-card { background: #fff; padding: 32px 28px; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .4s, box-shadow .4s; display: flex; flex-direction: column; }
.testi-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; font-size: 1rem; }
.testi-text { font-size: 1.02rem; color: var(--text-dark); margin-bottom: 24px; line-height: 1.7; font-family: 'Playfair Display', serif; font-style: italic; flex-grow: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi-author h5 { font-size: 1rem; color: var(--navy); font-weight: 700; font-family: 'Inter', sans-serif; }
.testi-author span { font-size: 0.85rem; color: var(--text-gray); }

/* ---------- 15. FAQ ---------- */
.faq-wrap { max-width: 800px; margin: 44px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 24px 4px; font-family: 'Playfair Display', serif; font-size: 1.12rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .icon { flex-shrink: 0; width: 26px; height: 26px; position: relative; transition: transform 0.35s; }
.faq-q .icon::before, .faq-q .icon::after { content: ''; position: absolute; background: var(--gold); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-q .icon::before { width: 14px; height: 2px; }
.faq-q .icon::after { width: 2px; height: 14px; transition: transform 0.35s; }
.faq-item.open .faq-q .icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 4px 24px; color: var(--text-gray); font-size: 0.98rem; line-height: 1.7; }

/* ---------- 16. CONTACT ---------- */
.contact { background: var(--navy); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 44px; }
.contact-info h2 { color: #fff; }
.contact-info .subtitle { color: rgba(255,255,255,0.74); }
.contact-list { list-style: none; margin-top: 28px; }
.contact-list li { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-list .ci-icon { width: 46px; height: 46px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(194,160,95,0.15); font-size: 1.1rem; }
.contact-list .ci-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; }
.contact-list .ci-value { font-size: 1.05rem; color: #fff; font-weight: 600; }
.contact-guarantee { margin-top: 28px; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--gold-light); }

.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 32px 26px; box-shadow: var(--shadow-md); }
.contact-form h3 { color: var(--navy); font-size: 1.5rem; margin-bottom: 6px; }
.contact-form .form-sub { color: var(--text-gray); font-size: 0.92rem; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--text-dark); background: var(--bg-cream); transition: border-color .25s, box-shadow .25s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(194,160,95,0.15); background: #fff; }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.78rem; color: var(--text-light); text-align: center; margin-top: 14px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-feedback { display: none; text-align: center; padding: 32px 10px; }
.form-feedback.show { display: block; }
.form-feedback .ff-icon { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: rgba(22,163,74,0.1); color: #16a34a; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.form-feedback h3 { color: var(--navy); }
.form-feedback p { color: var(--text-gray); font-size: 0.95rem; margin-top: 8px; }
.form-feedback.error .ff-icon { background: rgba(220,38,38,0.1); color: #dc2626; }

/* ---------- 17. CTA FINAL ---------- */
.final-cta { text-align: center; }
.final-cta-box { background: linear-gradient(150deg, var(--navy) 0%, var(--navy-soft) 100%); border-radius: var(--radius-lg); padding: 56px 28px; position: relative; overflow: hidden; }
.final-cta-box::before { content: ''; position: absolute; top: -40%; right: -10%; width: 360px; height: 360px; background: radial-gradient(circle, rgba(194,160,95,0.22), transparent 70%); }
.final-cta-box > * { position: relative; z-index: 1; }
.final-cta-box h2 { color: #fff; }
.final-cta-box p { color: rgba(255,255,255,0.78); margin-bottom: 30px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------- 18. FOOTER ---------- */
footer { background: var(--navy); color: #94a3b8; padding: 60px 0 28px; border-top: 1px solid var(--navy-line); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; text-align: center; margin-bottom: 40px; }
.footer-col h4 { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; margin-bottom: 18px; letter-spacing: 1.5px; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; font-size: 0.93rem; }
.footer-col a { color: #cbd5e1; }
.footer-col a:hover { color: var(--gold); }
.footer-about p { font-size: 0.92rem; line-height: 1.7; opacity: 0.8; }
.contact-info-foot li { display: flex; justify-content: center; align-items: center; gap: 9px; }
.footer-bottom { border-top: 1px solid var(--navy-line); padding-top: 24px; text-align: center; font-size: 0.83rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.7); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- 19. BARRE CTA FLOTTANTE MOBILE ---------- */
.mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; background: rgba(251,250,246,0.92); backdrop-filter: blur(12px); border-top: 1px solid var(--line); padding: 11px 16px calc(11px + env(safe-area-inset-bottom)); display: flex; gap: 10px; transform: translateY(120%); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1); }
.mobile-cta.show { transform: translateY(0); }
.mobile-cta .btn { margin: 0; padding: 13px; font-size: 0.92rem; }

/* ============================================================
   20. PAGES SPÉCIFIQUES
============================================================ */

/* --- AGENCE : hero, histoire, méthode --- */
.page-hero { padding: 70px 0 30px; text-align: center; }
.page-hero h1 { max-width: 900px; margin: 0 auto 22px; }
.page-hero p { font-size: clamp(1.05rem,2.5vw,1.2rem); color: var(--text-gray); max-width: 660px; margin: 0 auto; line-height: 1.7; }

.story-section { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.story-content p { margin-bottom: 15px; font-size: 1rem; color: var(--text-gray); line-height: 1.75; }
.story-content p strong { color: var(--text-dark); }
.story-quote { margin-top: 26px; font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); font-style: italic; border-left: 4px solid var(--gold); padding: 4px 0 4px 18px; }
.story-img { height: 360px; }

.process-split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
.process-step { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; align-items: center; text-align: center; }
.step-number { font-size: 3rem; font-family: 'Playfair Display', serif; font-weight: 700; color: rgba(194,160,95,0.25); line-height: 0.8; }
.process-split .step-content h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 6px; }
.process-split .step-content p { color: var(--text-gray); font-size: 0.95rem; }

/* --- PORTFOLIO : grille études de cas --- */
.portfolio-grid-full { display: grid; grid-template-columns: 1fr; gap: 44px; margin-bottom: 60px; }
.project-card-full { transition: transform 0.4s ease; display: flex; flex-direction: column; }
.project-card-full .img-zoom { margin-bottom: 20px; }
.project-card-full .img-zoom img { width: 100%; height: 260px; }
.project-meta { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.meta-tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold-rich); font-weight: 700; border: 1px solid rgba(194,160,95,0.35); background: rgba(194,160,95,0.06); padding: 5px 12px; border-radius: 50px; }
.project-card-full h3 { font-size: 1.6rem; color: var(--navy); transition: color 0.3s; }
.project-card-full p { color: var(--text-gray); margin: 8px 0 20px; font-size: 0.97rem; flex-grow: 1; }
.results-box { background: #fff; padding: 20px; border-radius: var(--radius); border-left: 4px solid var(--gold); box-shadow: var(--shadow-sm); margin-top: auto; }
.results-box strong { display: block; color: var(--navy); font-size: 1.02rem; margin-bottom: 5px; }
.results-box span { color: var(--text-gray); }

/* --- MENTIONS LÉGALES --- */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 60px 0 80px; }
.legal-wrap h1 { text-align: center; margin-bottom: 12px; }
.legal-intro { text-align: center; color: var(--text-gray); margin-bottom: 50px; }
.legal-article { margin-bottom: 36px; }
.legal-article h2 { font-size: 1.4rem; margin-bottom: 12px; }
.legal-article p { color: var(--text-gray); margin-bottom: 12px; line-height: 1.75; font-size: 0.98rem; }
.legal-article p strong { color: var(--text-dark); }
.legal-article a.link { color: var(--gold-rich); text-decoration: underline; text-underline-offset: 2px; font-weight: 500; }
.legal-last-update { text-align: center; font-size: 0.85rem; color: var(--text-light); margin-bottom: 50px; }
.info-block { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 20px 24px; margin: 18px 0; box-shadow: var(--shadow-sm); }
.info-block p { margin-bottom: 6px; font-size: 0.95rem; color: var(--text-gray); }
.info-block p strong { color: var(--navy); }

/* --- BLOG : grille d'articles --- */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 10px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .4s, box-shadow .4s; }
.blog-card .img-zoom { border-radius: 0; }
.blog-card .img-zoom img { height: 210px; }
.blog-card-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold-rich); font-weight: 700; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.3rem; color: var(--navy); line-height: 1.25; margin-bottom: 10px; transition: color .3s; }
.blog-excerpt { color: var(--text-gray); font-size: 0.95rem; flex-grow: 1; margin-bottom: 18px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; color: var(--text-light); }
.blog-readmore { color: var(--gold-rich); font-weight: 600; }

/* --- ARTICLE : page de lecture --- */
.article-hero { text-align: center; padding: 60px 0 20px; }
.article-hero .article-cat { color: var(--gold-rich); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; }
.article-hero h1 { max-width: 820px; margin: 14px auto 18px; }
.article-meta { color: var(--text-light); font-size: 0.9rem; }
.article-cover { max-width: 960px; margin: 0 auto; }
.article-cover img { width: 100%; height: clamp(220px, 40vw, 440px); object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.article-wrap { max-width: 760px; margin: 0 auto; padding: 50px 0 20px; }
.article-body p { color: var(--text-dark); font-size: 1.08rem; line-height: 1.8; margin-bottom: 22px; }
.article-body h2 { font-size: clamp(1.5rem, 4vw, 2rem); margin: 44px 0 16px; }
.article-body h3 { font-size: 1.3rem; color: var(--navy); margin: 30px 0 12px; }
.article-body ul { list-style: none; margin: 0 0 22px; }
.article-body ul li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--text-dark); font-size: 1.05rem; line-height: 1.7; }
.article-body ul li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 700; }
.article-body strong { color: var(--navy); }
.article-body blockquote { border-left: 4px solid var(--gold); padding: 6px 0 6px 22px; margin: 28px 0; font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.25rem; color: var(--navy); }
.article-cta-box { background: linear-gradient(150deg, var(--navy), var(--navy-soft)); border-radius: var(--radius-lg); padding: 40px 28px; text-align: center; margin: 44px auto 0; max-width: 760px; }
.article-cta-box h3 { color: #fff; font-size: 1.6rem; margin-bottom: 10px; }
.article-cta-box p { color: rgba(255,255,255,0.78); margin-bottom: 22px; }
.article-back { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-rich); font-weight: 600; margin-top: 40px; }

/* ============================================================
   21. RESPONSIVE
============================================================ */
@media (min-width: 600px) {
    .hero-actions { flex-direction: row; justify-content: center; }
    .btn { width: auto; }
    .mobile-btn .btn, .mobile-cta .btn { width: 100%; }
    .problem-grid, .offers-grid, .why-grid, .testi-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .float-card.tl, .float-card.br { display: block; }
}

@media (min-width: 768px) {
    .section { padding: 90px 0; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .project-card .img-zoom img { height: 320px; }
    .portfolio-head { flex-direction: row; justify-content: space-between; align-items: flex-end; }
    .portfolio-grid-full { grid-template-columns: repeat(2, 1fr); gap: 50px 40px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .project-card-full .img-zoom img { height: 340px; }
    .story-img { height: 440px; }
    .process-step { flex-direction: row; text-align: left; align-items: flex-start; gap: 22px; }
}

@media (min-width: 992px) {
    .section { padding: 110px 0; }
    .menu-toggle { display: none; }
    .desktop-btn { display: inline-flex; }
    .mobile-btn { display: none; }
    .mobile-cta { display: none; }

    nav { position: static; height: auto; width: auto; background: transparent; flex-direction: row; left: 0; }
    nav ul { flex-direction: row; gap: 38px; width: auto; }
    nav a { font-size: 0.98rem; font-family: 'Inter', sans-serif; font-weight: 500; }
    nav a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -6px; left: 0; background: var(--gold); transition: width 0.3s ease; }
    nav a:hover::after, nav a.active::after { width: 100%; }

    .hero { padding: 80px 0 110px; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; text-align: left; }
    .hero-actions { justify-content: flex-start; }
    .hero-trust { align-items: flex-start; }
    .hero-stats { margin-top: 48px; }
    .stat-item p { font-size: 0.85rem; }
    .hero-visual { order: 0; max-width: none; }

    .trust-inner { flex-direction: row; justify-content: space-between; }
    .clients-list { font-size: 1.3rem; }

    .problem-grid, .offers-grid, .why-grid, .process-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
    .blog-card:hover h3 { color: var(--gold-rich); }
    .offer-card.featured { transform: scale(1.04); }
    .offer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
    .offer-card.featured:hover { transform: scale(1.04) translateY(-8px); }

    .pain-card:hover, .why-card:hover, .testi-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
    .step-card:hover { transform: translateY(-7px); border-color: rgba(194,160,95,0.4); }
    .project-card:hover .project-title { color: var(--gold-rich); }
    .project-card-full:hover { transform: translateY(-6px); }
    .project-card-full:hover h3 { color: var(--gold-rich); }

    .contact-grid { grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
    .contact-form { padding: 40px 38px; }
    .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .final-cta-box { padding: 80px 40px; }
    .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 50px; text-align: left; }
    .contact-info-foot li { justify-content: flex-start; }

    /* Agence desktop */
    .page-hero { padding: 90px 0 40px; }
    .story-section { grid-template-columns: 1fr 1fr; gap: 64px; }
    .story-img { height: 520px; }
    .process-split { grid-template-columns: 1fr 1fr; gap: 64px; }
    .why-card.text-left { text-align: left; }
}
