/* ═══════════════════════════════════════
   vitaglp-avis.fr — Analyse comparative
   Palette: Indigo/violet + coral accent
   ═══════════════════════════════════════ */

:root {
    --primary: #5b21b6;
    --primary-light: #7c3aed;
    --primary-dark: #4c1d95;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --bg: #ffffff;
    --bg-light: #faf5ff;
    --bg-dark: #1a0a2e;
    --text: #1e1b2e;
    --text-light: #524a6b;
    --text-muted: #8b82a8;
    --border: #ddd6f3;
    --radius: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.04);
    --shadow-lg: 0 4px 16px rgba(0,0,0,.1), 0 12px 40px rgba(0,0,0,.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
.container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; color: var(--text); }
h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; }
p { margin-bottom: 1rem; }
a { color: var(--primary); }
.section { padding: 4rem 0; }
.bg-light { background: var(--bg-light); }

.disclaimer-bar {
    background: #f3eeff;
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: .8rem;
    color: var(--text-muted);
    text-align: center;
}
.disclaimer-bar a { color: var(--primary); text-decoration: underline; }

.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border); padding: 12px 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { text-decoration: none; font-weight: 800; font-size: 1.2rem; color: var(--text); }
.logo span { color: var(--primary); }
.site-header nav { display: flex; gap: 20px; }
.site-header nav a { text-decoration: none; font-size: .85rem; font-weight: 500; color: var(--text-light); transition: color .2s; }
.site-header nav a:hover { color: var(--primary); }

.hero {
    background: linear-gradient(170deg, #ede9fe 0%, #faf5ff 50%, #fff 100%);
    padding: 4rem 0 3rem; text-align: center;
}
.hero-content { display: flex; align-items: center; gap: 2.5rem; text-align: left; margin-bottom: 2rem; }
.hero-text { flex: 1; }
.hero-image { flex: 0 0 320px; }
.hero-image img { width: 100%; height: auto; border-radius: var(--radius); filter: drop-shadow(0 8px 24px rgba(0,0,0,.12)); }
.hero-badge { display: inline-block; background: var(--primary); color: #fff; padding: 4px 16px; border-radius: 20px; font-size: .78rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 1.2rem; }
.hero h1 { font-size: 2.4rem; font-weight: 800; line-height: 1.15; max-width: 700px; margin: 0 0 1rem; }
.accent { color: var(--primary); }
.hero-sub { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 0 1.5rem; }
.hero-rating { display: flex; align-items: center; gap: 8px; }
.stars { color: var(--accent); font-size: 1.3rem; letter-spacing: 2px; }
.hero-rating span { font-size: .9rem; color: var(--text-muted); }
.hero-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 700px; margin: 0 auto; text-align: center; }
.highlight { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 16px 12px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.h-icon { font-size: 1.5rem; }
.highlight strong { font-size: .85rem; color: var(--text); }

.verdict-box { background: linear-gradient(135deg, #f3eeff, #ede9fe); border: 2px solid #c4b5fd; border-radius: var(--radius); padding: 2rem; }
.verdict-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.verdict-label { font-weight: 700; color: var(--primary); font-size: .9rem; text-transform: uppercase; letter-spacing: .5px; }
.verdict-score { font-size: 2rem; font-weight: 800; color: var(--primary); }
.verdict-score small { font-size: 1rem; color: var(--text-muted); font-weight: 400; }

.cta-btn { display: inline-block; background: var(--primary); color: #fff !important; padding: 14px 32px; border-radius: 8px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: all .2s; box-shadow: 0 4px 12px rgba(91,33,182,.3); }
.cta-btn:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(91,33,182,.35); }
.cta-sm { padding: 10px 24px; font-size: .9rem; }
.cta-lg { padding: 16px 40px; font-size: 1.1rem; }
.cta-white { background: #fff; color: var(--primary-dark) !important; }
.cta-white:hover { background: #f3eeff; }

.cta-banner { background: var(--primary); color: #fff; padding: 1.5rem 0; text-align: center; }
.cta-banner p { margin-bottom: .8rem; font-size: 1.05rem; }

.ingredients-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 2rem; }
.ingredient-card { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: box-shadow .2s; }
.ingredient-card:hover { box-shadow: var(--shadow-lg); }
.ing-icon { font-size: 1.8rem; margin-bottom: .5rem; }
.ingredient-card h3 { color: var(--primary-dark); }
.ingredient-card p { font-size: .92rem; color: var(--text-light); margin-bottom: 0; }

/* Dosage bar unique to this site */
.dosage-bar { display: flex; align-items: center; gap: 8px; margin-top: .75rem; }
.dosage-fill { height: 6px; border-radius: 3px; background: var(--primary); }
.dosage-track { flex: 1; height: 6px; border-radius: 3px; background: var(--border); position: relative; }
.dosage-label { font-size: .72rem; color: var(--text-muted); white-space: nowrap; }

.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 2rem 0; }
.benefit { padding: 1.5rem; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.benefit-icon { font-size: 1.8rem; margin-bottom: .5rem; }
.benefit p { font-size: .92rem; color: var(--text-light); margin-bottom: 0; }

.expectation-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin-top: 2rem; }
.expectation-box h3 { font-size: 1rem; margin-bottom: 1rem; }
.expect-row { display: flex; align-items: baseline; gap: 16px; padding: 10px 0; border-bottom: 1px solid #f3eeff; font-size: .92rem; }
.expect-row:last-child { border-bottom: none; }
.expect-time { flex-shrink: 0; background: var(--primary); color: #fff; padding: 2px 10px; border-radius: 4px; font-size: .78rem; font-weight: 600; min-width: 100px; text-align: center; }

.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 2rem 0; }
.review-card { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem; }
.review-stars { color: var(--accent); font-size: 1rem; letter-spacing: 1px; }
.review-verified { font-size: .7rem; color: var(--text-muted); }
.review-text { font-size: .9rem; font-style: italic; color: var(--text-light); margin-bottom: .5rem; line-height: 1.5; }
.review-author { font-size: .8rem; color: var(--text-muted); }
.reviews-summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 1.5rem; }
.rs-item { text-align: center; padding: 1rem; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.rs-item strong { display: block; font-size: 1.6rem; color: var(--primary); margin-bottom: 2px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 2rem 0; align-items: start; }
.pricing-card { background: #fff; border: 2px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; position: relative; transition: box-shadow .2s; }
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.best { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: scale(1.03); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; padding: 2px 16px; border-radius: 12px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; white-space: nowrap; }
.pricing-name { font-weight: 700; font-size: 1rem; margin-bottom: 2px; }
.pricing-duration { font-size: .82rem; color: var(--text-muted); margin-bottom: 1rem; }
.pricing-price { font-size: 2rem; font-weight: 800; color: var(--text); }
.pricing-price small { font-size: .85rem; font-weight: 400; color: var(--text-muted); }
.pricing-detail { font-size: .82rem; color: var(--text-light); margin: .5rem 0; }
.pricing-perday { font-size: .78rem; color: var(--text-muted); margin-bottom: 1rem; }

.guarantee-box { display: flex; align-items: start; gap: 16px; background: #fffbeb; border: 1px solid #fde68a; border-radius: var(--radius); padding: 1.25rem; }
.guarantee-icon { font-size: 2rem; flex-shrink: 0; }
.guarantee-box p { font-size: .9rem; color: var(--text-light); margin-bottom: 0; }

/* Score table unique to this site */
.score-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.score-table th, .score-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: .92rem; }
.score-table th { background: var(--bg-light); font-weight: 600; color: var(--text); }
.score-table .score-val { font-weight: 700; color: var(--primary); }

.faq-list { max-width: 700px; margin: 2rem auto 0; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.faq-item summary { padding: 14px 20px; font-weight: 600; font-size: .95rem; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--text-muted); font-weight: 400; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 20px 14px; font-size: .92rem; color: var(--text-light); }

.cta-final { text-align: center; background: linear-gradient(170deg, #ede9fe 0%, #f3eeff 100%); padding: 4rem 0; }
.cta-final h2 { margin-bottom: .5rem; }
.cta-final p { color: var(--text-light); margin-bottom: 1.5rem; }
.cta-note { font-size: .82rem; color: var(--text-muted); margin-top: 1rem; }

.disclaimer-section { background: #f8f9fa; border-top: 1px solid var(--border); }
.disclaimer-content { max-width: 700px; }
.disclaimer-content p { font-size: .88rem; color: var(--text-light); line-height: 1.6; }

.site-footer { background: var(--bg-dark); color: #94a3b8; padding: 3rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-logo { font-weight: 800; font-size: 1.1rem; color: #e2e8f0; margin-bottom: .5rem; }
.footer-desc { font-size: .82rem; line-height: 1.5; }
.site-footer h4 { color: #e2e8f0; font-size: .85rem; margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .5px; }
.site-footer a { display: block; color: #94a3b8; text-decoration: none; font-size: .85rem; margin-bottom: .5rem; transition: color .2s; }
.site-footer a:hover { color: #e2e8f0; }
.footer-bottom { border-top: 1px solid #2d1b4e; padding-top: 1.5rem; }
.footer-bottom p { font-size: .78rem; text-align: center; margin-bottom: .5rem; }
.footer-disclaimer { font-style: italic; font-size: .72rem !important; }

.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; padding: 12px 16px; background: rgba(255,255,255,.97); backdrop-filter: blur(8px); border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(0,0,0,.08); }
.mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--primary); color: #fff; padding: 14px; border-radius: 8px; font-weight: 700; font-size: .95rem; text-decoration: none; animation: pulse-cta 2s ease-in-out infinite; }
.mobile-cta-badge { background: var(--accent); color: #fff; padding: 2px 8px; border-radius: 4px; font-size: .75rem; font-weight: 800; }
@keyframes pulse-cta { 0%, 100% { box-shadow: 0 4px 12px rgba(91,33,182,.3); } 50% { box-shadow: 0 4px 24px rgba(91,33,182,.5); } }

@media (max-width: 768px) {
    .hero-content { flex-direction: column; text-align: center; gap: 1.5rem; }
    .hero-image { flex: 0 0 auto; max-width: 280px; }
    .hero-text { text-align: center; }
    .hero-rating { justify-content: center; }
    .hero h1 { font-size: 1.7rem; }
    .hero-highlights { grid-template-columns: 1fr; max-width: 320px; }
    .ingredients-grid, .benefits-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-summary { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
    .pricing-card.best { transform: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .site-header nav { display: none; }
    .mobile-cta { display: block; }
    body { padding-bottom: 80px; }
    h2 { font-size: 1.4rem; }
    .section { padding: 3rem 0; }
    .score-table { font-size: .82rem; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.45rem; }
    .reviews-summary { grid-template-columns: repeat(2, 1fr); }
    .expect-row { flex-direction: column; gap: 4px; }
    .expect-time { min-width: auto; align-self: start; }
}
