/* ── MAIN ── */
main { width: min(1200px, 92%); margin: auto; position: relative; z-index: 1; padding-bottom: 4rem; }

/* ── HERO ── */
.hero-section { text-align: center; padding: 5rem 0 3rem; animation: fadeUp 0.8s ease; }
.badge {
    display: inline-flex; align-items: center; padding: 0.7rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04);
    border-radius: 999px; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
    color: var(--accent); margin-bottom: 1.5rem;
}
.hero-section h1 { font-size: 3.2rem; line-height: 1.05; letter-spacing: -2px; font-weight: 800; color: var(--text-strong); margin-bottom: 1.2rem; }
.hero-section h1 span { color: var(--accent-light); }
.hero-section > p { max-width: 600px; margin: 0 auto; color: var(--muted); font-size: 1.05rem; line-height: 1.8; }

/* ── SECTION HEADERS (reused by alc/compare/faq) ── */
.section-eyebrow {
    text-align: center; font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 0.8rem;
}
.section-title { text-align: center; font-size: 2.1rem; font-weight: 800; letter-spacing: -1px; color: var(--text-strong); margin-bottom: 0.8rem; }
.section-lead { text-align: center; max-width: 600px; margin: 0 auto 2.5rem; color: var(--muted); font-size: 1rem; line-height: 1.7; }

/* ── TRIAL BANNER ── */
.trial-banner {
    text-align: center; margin: 3rem 0; padding: 3rem 2rem;
    background: linear-gradient(180deg, var(--glow), transparent 70%), var(--surface);
    border: 1px solid var(--surface-border); border-radius: 30px;
    backdrop-filter: blur(20px); animation: fadeUp 0.8s ease 0.1s both;
}
.trial-banner .eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem; }
.trial-banner h2 { font-size: 1.9rem; font-weight: 800; letter-spacing: -1px; color: var(--text-strong); margin-bottom: 0.8rem; }
.trial-banner > p { max-width: 520px; margin: 0 auto 1.8rem; color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.trial-perks { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem 1.6rem; margin-bottom: 2rem; }
.trial-perk { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--text); font-weight: 500; }
.perk-check {
    width: 20px; height: 20px; border-radius: 50%; background: var(--positive); color: #04140a;
    display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; flex-shrink: 0;
}
.trial-cta {
    display: inline-block; background: var(--accent); color: var(--text-strong);
    border: 1px solid rgba(255,255,255,0.08); padding: 1rem 2.2rem; border-radius: 16px;
    font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.trial-cta:hover { background: var(--accent-light); transform: scale(1.02); box-shadow: 0 15px 40px rgba(194,136,64,0.3); }
.trial-fine { margin-top: 1rem; color: var(--muted); font-size: 0.78rem; }

/* ── À LA CARTE ── */
.alc-section { margin: 5rem 0; }
.alc-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 0.9rem;
    margin-bottom: 1.5rem;
}
.alc-item {
    display: flex; align-items: center; gap: 0.9rem;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px; padding: 1rem 1.1rem; cursor: pointer;
    transition: all 0.25s cubic-bezier(.4,0,.2,1); user-select: none;
}
.alc-item:hover { border-color: rgba(194,136,64,0.35); }
.alc-item.checked { border-color: var(--accent); background: var(--glow); }
.alc-checkbox {
    width: 22px; height: 22px; border-radius: 7px; border: 1.5px solid var(--input-border);
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; color: transparent; transition: all 0.2s ease;
}
.alc-item.checked .alc-checkbox { background: var(--accent); border-color: var(--accent); color: #fff; }
.alc-item-body { flex: 1; min-width: 0; }
.alc-item-name { font-size: 0.9rem; font-weight: 600; color: var(--text-strong); }
.alc-item-price { font-size: 0.8rem; color: var(--muted); margin-top: 0.1rem; }

.alc-summary {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.2rem;
    background: var(--surface); border: 1px solid var(--surface-border); border-radius: 22px;
    padding: 1.4rem 1.8rem; backdrop-filter: blur(20px);
}
.alc-summary-total { font-size: 1.3rem; font-weight: 800; color: var(--text-strong); }
.alc-summary-total span { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.savings-badge {
    display: inline-block; margin-top: 0.4rem; font-size: 0.76rem; font-weight: 700;
    color: var(--positive); background: rgba(22,163,74,0.1); border: 1px solid rgba(22,163,74,0.25);
    border-radius: 999px; padding: 0.25rem 0.7rem;
}

/* ── BILLING TOGGLE ── */
.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 3.5rem 0 2.5rem; }
.toggle-label { font-size: 0.92rem; font-weight: 600; color: var(--muted); transition: color 0.2s ease; }
.toggle-label.on { color: var(--text-strong); }
.save-pill {
    display: inline-block; background: rgba(22,163,74,0.12); color: var(--positive);
    border: 1px solid rgba(22,163,74,0.3); border-radius: 999px; padding: 0.15rem 0.6rem;
    font-size: 0.7rem; font-weight: 700;
}
.toggle-switch {
    width: 52px; height: 28px; border-radius: 999px; background: rgba(255,255,255,0.08);
    border: 1px solid var(--input-border); position: relative; cursor: pointer; transition: background 0.25s ease;
}
.toggle-switch.quarterly { background: var(--accent); }
.toggle-knob {
    width: 22px; height: 22px; border-radius: 50%; background: #fff; position: absolute;
    top: 2px; left: 2px; transition: transform 0.25s cubic-bezier(.4,0,.2,1); box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.toggle-switch.quarterly .toggle-knob { transform: translateX(24px); }

/* ── PLAN CARDS ── */
.plans-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-bottom: 5rem; }
@media (max-width: 1100px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .plans-grid { grid-template-columns: 1fr; } }

.plan-card {
    position: relative; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px; padding: 1.8rem 1.5rem; display: flex; flex-direction: column;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.plan-card:hover { transform: translateY(-6px); border-color: rgba(194,136,64,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.plan-card.featured { border-color: var(--accent); background: var(--glow); }
.popular-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff; font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.5px; padding: 0.35rem 0.9rem; border-radius: 999px; white-space: nowrap;
}
.plan-module { font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
.plan-name { font-size: 1.25rem; font-weight: 800; color: var(--text-strong); margin-bottom: 0.3rem; }
.plan-og { font-size: 0.82rem; color: var(--muted); text-decoration: line-through; min-height: 1.1rem; }
.plan-price { display: flex; align-items: baseline; gap: 0.15rem; margin: 0.3rem 0 0.4rem; }
.plan-price .cur { font-size: 1.1rem; font-weight: 700; color: var(--text-strong); }
.plan-price .amt { font-size: 2.1rem; font-weight: 800; color: var(--text-strong); letter-spacing: -1px; }
.plan-price .per { font-size: 0.85rem; color: var(--muted); margin-left: 0.15rem; }
.bundle-savings { font-size: 0.76rem; font-weight: 700; color: var(--positive); min-height: 1rem; margin-bottom: 0.4rem; }
.plan-desc { color: var(--muted); font-size: 0.85rem; line-height: 1.55; margin-bottom: 1.3rem; min-height: 3rem; }

.plan-cta {
    display: block; text-align: center; text-decoration: none; font-weight: 700; font-size: 0.9rem;
    padding: 0.8rem 1rem; border-radius: 14px; transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.plan-cta.cta-primary { background: var(--accent); color: #fff; border: 1px solid rgba(255,255,255,0.08); }
.plan-cta.cta-primary:hover { background: var(--accent-light); transform: scale(1.02); box-shadow: 0 15px 40px rgba(194,136,64,0.3); }
.plan-cta.cta-ghost { background: transparent; color: var(--text-strong); border: 1px solid var(--input-border); }
.plan-cta.cta-ghost:hover { border-color: var(--accent); color: var(--accent-light); }

.plan-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 1.3rem 0; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.plan-features li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.83rem; color: var(--text); line-height: 1.4; }
.plan-features li.off { color: var(--muted); }
.chk { color: var(--positive); font-weight: 800; flex-shrink: 0; }
.xmark { color: var(--muted); font-weight: 800; flex-shrink: 0; }

/* ── JOURNAL TIERS ── */
.journal-tier-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
@media (max-width: 700px) { .journal-tier-grid { grid-template-columns: 1fr; } }
.journal-tier-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 24px;
    padding: 1.8rem; transition: all 0.3s ease;
}
.journal-tier-card.pro { border-color: var(--accent); background: var(--glow); }
.journal-tier-price { font-size: 1.6rem; font-weight: 800; color: var(--text-strong); margin: 0.4rem 0 1.2rem; }
.journal-tier-price small { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.journal-tier-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.journal-tier-card li { font-size: 0.85rem; color: var(--text); }
.journal-tier-card li.off { color: var(--muted); }

/* ── OPPORTUNITY BANNER ── */
.opp-banner {
    text-align: center; margin: 5rem 0; padding: 3rem 2rem;
    background: var(--surface); border: 1px solid var(--surface-border); border-radius: 30px; backdrop-filter: blur(20px);
}
.opp-banner .eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-light); margin-bottom: 0.8rem; }
.opp-banner h2 { font-size: 2rem; font-weight: 800; color: var(--text-strong); margin-bottom: 0.8rem; letter-spacing: -1px; }
.opp-banner > p { max-width: 560px; margin: 0 auto 1.5rem; color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.opp-examples { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; margin-bottom: 1.2rem; }
.opp-example {
    font-size: 0.82rem; color: var(--text); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px; padding: 0.5rem 1rem; font-style: italic;
}
.opp-price-hint { color: var(--muted); font-size: 0.82rem; }

/* ── COMPARE TABLE ── */
.compare-section { margin: 5rem 0; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.compare-table thead th {
    text-align: center; padding: 1rem 0.6rem; color: var(--text-strong); font-weight: 700;
    border-bottom: 1px solid var(--surface-border);
}
.compare-table thead th:first-child { text-align: left; }
.th-price { display: block; color: var(--accent-light); font-size: 0.85rem; font-weight: 800; margin-top: 0.2rem; }
.compare-table tbody td { padding: 0.8rem 0.6rem; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--text); }
.compare-table tbody td:first-child { text-align: left; color: var(--text); }
.td-price-hint { color: var(--muted); font-size: 0.78rem; }
.group-row td { background: rgba(255,255,255,0.02); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.72rem; color: var(--accent); text-align: left; padding-top: 1.2rem; }
.t-chk { color: var(--positive); font-weight: 800; }
.t-x { color: var(--muted); }
.t-txt { color: var(--muted); font-size: 0.78rem; }
@media (max-width: 900px) { .compare-section { overflow-x: auto; } .compare-table { min-width: 700px; } }

/* ── FAQ ── */
.faq-section { max-width: 800px; margin: 5rem auto; }
.faq-item {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 18px;
    padding: 1.2rem 1.5rem; margin-bottom: 0.8rem; cursor: pointer; transition: border-color 0.2s ease;
}
.faq-item:hover { border-color: rgba(194,136,64,0.3); }
.faq-q { display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 0.95rem; color: var(--text-strong); gap: 1rem; }
.faq-arrow { color: var(--accent); font-size: 0.75rem; transition: transform 0.25s ease; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
    max-height: 0; overflow: hidden; color: var(--muted); font-size: 0.88rem; line-height: 1.7;
    transition: max-height 0.3s ease, margin-top 0.3s ease; margin-top: 0;
}
.faq-item.open .faq-a { max-height: 300px; margin-top: 0.9rem; }

/* ── FINAL CTA ── */
.cta-section { text-align: center; padding: 4rem 2rem; }
.cta-section h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: -1px; color: var(--text-strong); margin-bottom: 0.7rem; }
.cta-section > p { color: var(--muted); font-size: 0.98rem; margin-bottom: 1.8rem; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }


@media (max-width: 700px) {
    main { width: 92%; padding-bottom: 3rem; }
    .hero-section { padding: 3.5rem 0 2rem; }
    .hero-section h1 { font-size: 2.3rem; letter-spacing: -1.5px; }
    .hero-section > p { font-size: 0.95rem; }
    .section-title { font-size: 1.7rem; }
    .section-lead { margin-bottom: 1.8rem; }

    .trial-banner { padding: 2.2rem 1.3rem; margin: 2rem 0; border-radius: 24px; }
    .trial-banner h2 { font-size: 1.5rem; }
    .trial-perks { gap: 0.7rem 1rem; }
    .trial-perk { font-size: 0.82rem; }
    .trial-cta { width: 100%; text-align: center; padding: 1rem; }

    .alc-section { margin: 3rem 0; }
    .alc-grid { grid-template-columns: 1fr; gap: 0.7rem; }
    .alc-summary { flex-direction: column; align-items: stretch; text-align: center; padding: 1.2rem 1.3rem; }
    .alc-summary .plan-cta { width: 100%; }

    .billing-toggle { margin: 2.5rem 0 2rem; }
    .plans-grid { margin-bottom: 3.5rem; }
    .plan-card { padding: 1.6rem 1.3rem; }

    .journal-tier-grid { gap: 1rem; }
    .journal-tier-card { padding: 1.5rem; }

    .opp-banner { padding: 2.2rem 1.3rem; margin: 3rem 0; border-radius: 24px; }
    .opp-banner h2 { font-size: 1.6rem; }
    .opp-example { font-size: 0.76rem; padding: 0.45rem 0.85rem; }

    .compare-section { margin: 3rem 0; }

    .faq-section { margin: 3rem auto; }
    .faq-item { padding: 1rem 1.2rem; }
    .faq-q { font-size: 0.9rem; }

    .cta-section { padding: 3rem 1.5rem; }
    .cta-section h2 { font-size: 1.9rem; }
}
@media (max-width: 420px) {
    .hero-section h1 { font-size: 1.9rem; }
    .trial-banner h2 { font-size: 1.3rem; }
}