/* ═══════════════════════════════════════
   Wego6-avis.fr — Landing Page CSS
   Inspired by glucavit.fr trust-first design
   ═══════════════════════════════════════ */

:root {
    --primary: #1a6b3c;
    --primary-light: #2a8f52;
    --primary-dark: #145530;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --bg: #ffffff;
    --bg-light: #f8faf9;
    --bg-dark: #0f1f15;
    --text: #1a2e23;
    --text-light: #4a6352;
    --text-muted: #7a9484;
    --border: #d4e2d9;
    --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 ─── */
.disclaimer-bar {
    background: #f0f4f2;
    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; }

/* ─── Header ─── */
.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 ─── */
.hero {
    background: linear-gradient(170deg, #e8f5ed 0%, #f8faf9 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; margin-bottom: 0; }
.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 Quick ─── */
.verdict-box {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 2px solid #bbf7d0;
    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 Button ─── */
.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(26,107,60,.3);
}
.cta-btn:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,107,60,.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: #f0fdf4; }

/* ─── CTA Banner ─── */
.cta-banner {
    background: var(--primary);
    color: #fff;
    padding: 1.5rem 0;
    text-align: center;
}
.cta-banner p { margin-bottom: .8rem; font-size: 1.05rem; }
.cta-banner .cta-btn { margin-top: .5rem; }

/* ─── Ingredients Grid ─── */
.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; }

/* ─── Benefits ─── */
.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 #f0f4f2;
    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 ─── */
.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 ─── */
.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-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    margin: 0 auto .75rem;
    display: block;
    border-radius: 8px;
}
.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; }

/* ─── FAQ ─── */
.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; transition: transform .2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 20px 14px; font-size: .92rem; color: var(--text-light); }

/* ─── CTA Final ─── */
.cta-final {
    text-align: center;
    background: linear-gradient(170deg, #e8f5ed 0%, #f0fdf4 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 ─── */
.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; }

/* ─── Footer ─── */
.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 #1e293b; 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 Sticky CTA ─── */
.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: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: .75rem;
    font-weight: 800;
}

@keyframes pulse-cta {
    0%, 100% { box-shadow: 0 4px 12px rgba(26,107,60,.3); }
    50% { box-shadow: 0 4px 24px rgba(26,107,60,.5); }
}

/* ─── Responsive ─── */
@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; }
}

@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; }
}
