body {
    background: #ffffff;
    color: var(--text-body, #222222);
}

html {
    scroll-behavior: smooth;
}

.landing-header {
    background: linear-gradient(135deg, var(--nav-gradient-start, #005000) 0%, var(--nav-gradient-end, #0d7a28) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.landing-brand {
    display: inline-flex;
    align-items: center;
}

.landing-brand-logo {
    display: block;
    height: 40px;
    width: auto;
    max-width: min(160px, 42vw);
}

.landing-header nav a {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.landing-header nav a:hover {
    color: #ffffff;
}

.landing-header nav a.is-active {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero {
    background: linear-gradient(180deg, #f1f9f2 0%, #ffffff 72%);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.py-lg-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--pharmacy-green, #008000);
    font-weight: 700;
}

.promise-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 128, 0, 0.25);
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-heading, #005a00);
    font-size: 0.82rem;
    font-weight: 600;
}

.impact-strip {
    border: 1px solid rgba(0, 128, 0, 0.22);
    border-left: 4px solid var(--pharmacy-green, #008000);
    border-radius: 10px;
    background: #ffffff;
    padding: 0.9rem 1rem;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.trust-row.justify-content-center {
    justify-content: center;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d9e2ec;
    background: #ffffff;
    border-radius: 999px;
    padding: 0.42rem 0.74rem;
    font-size: 0.83rem;
    color: #334155;
}

.glass-panel {
    border: 1px solid rgba(0, 128, 0, 0.18);
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff, #f3fbf4);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.landing-hero-stats .landing-stat-card {
    border: 1px solid rgba(0, 128, 0, 0.15);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.landing-hero-stats .stat-number {
    font-size: 1.35rem;
}

.landing-hero-stats .stat-label {
    line-height: 1.25;
}

.landing-enjeux-cards {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.landing-modules-grid .landing-module-card .card-header {
    border-radius: 0.375rem 0.375rem 0 0;
}

.landing-mod-cell-nom {
    max-width: 9rem;
}

.landing-week-calendar .teaser-week-grid {
    min-height: 0;
}

.landing-week-calendar .teaser-fc-pill-label {
    font-size: 0.62rem;
    line-height: 1.1;
}

.landing-week-calendar .teaser-week-head-cell,
.landing-week-calendar .teaser-week-body-cell {
    min-height: 52px;
}

.section-light {
    background: #f5f8fa;
}

.feature-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1.1rem;
    background: #ffffff;
}

.feature-card p {
    color: #475569;
}

.step-number {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--pharmacy-green, #008000);
}

.shot-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1rem;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 90, 0, 0.08);
}

.mock-table .row-line {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #e5e7eb;
    padding: 0.5rem 0;
    color: #334155;
    font-size: 0.86rem;
}

.mock-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.35rem;
}

.mock-calendar span {
    display: block;
    height: 26px;
    border-radius: 8px;
    background: #e5e7eb;
}

.mock-calendar span.active {
    background: var(--btn-secondary-color, #3399ff);
}

.mock-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.45rem;
    height: 140px;
}

.mock-bars span {
    flex: 1;
    border-radius: 8px 8px 2px 2px;
    background: linear-gradient(180deg, var(--btn-primary-color, #000080) 0%, var(--btn-secondary-color, #3399ff) 100%);
}

.faq-list article {
    border-bottom: 1px solid #e2e8f0;
    padding: 0.75rem 0;
}

.faq-list p {
    margin: 0;
    color: #475569;
}

.cta-final .glass-panel {
    background: linear-gradient(145deg, #ffffff, #eef7ef);
}

.btn-primary {
    background: linear-gradient(135deg, var(--btn-primary-color, #000080) 0%, var(--btn-primary-light, #0066cc) 100%);
    border: none;
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.btn-outline-primary {
    color: var(--btn-primary-color, #000080);
    border-color: var(--btn-primary-color, #000080);
}

.btn-outline-primary:hover {
    background-color: var(--btn-primary-color, #000080);
    border-color: var(--btn-primary-color, #000080);
    color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
