* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    color: #1a1a1a;
    background: #fff;
    font-size: 18px;
    line-height: 1.65;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.wrap {
    flex: 1;
}

strong {
    color: #000;
}

/* ── HEADER ── */
.site-header {
    background: #f4f5f9;
    padding: 20px;
}

.site-header-inner {
    max-width: 880px;
    margin: auto;
    padding: 0 20px;
    display: flex;
}

.logo-mark {
    display: inline-flex;
    align-items: flex-start;
    gap: 11px;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    margin: -5px 0;
}

.logo-badge {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.logo-text-main {
    font-size: 21px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.2px;
}

.logo-text-accent {
    font-size: 21px;
    font-weight: 800;
    color: #16a34a;
    letter-spacing: 0.2px;
}

.logo-tagline {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: #6b7280;

}

.site-disclaimer {
    font-size: 11px;
    font-weight: 600;
    color: #9c9c9c;
    margin-top: 4px;
}

/* ── HEADER AUTHOR ── */
.header-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}


.header-author-name {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

.header-author-date {
    font-size: 12px;
    color: #6b7280;
    margin-top: 1px;
}

/* ── STATUS BAR ── */
.status-bar {
    width: 100%;
    max-width: 880px;
    margin: 14px auto 0;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-badge {
    background: #037c13;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
}

.status-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #EEEFF2;
}

/* ── WRAPPER ── */
.wrap {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

/* ── ARTICLE HEADER ── */
.article-title {
    font-size: 25px;
    font-weight: 800;
    line-height: 1.22;
    color: #0f172a;
    margin: 18px 0 14px;
}

.article-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 10px;
}

.author-name {
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

.author-role {
    font-size: 12px;
    color: #888;
    margin-top: 1px;
}

.meta-time {
    font-size: 12px;
    color: #9ca3af;
    white-space: nowrap;
}

/* ── IMAGES ── */
.hero-img {
    width: 100%;
    height: 340px;
    border-radius: 4px;
    object-fit: cover;
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(150deg, #0c2a4a 0%, #1e4d8c 55%, #60a5fa 100%);
}

.img-placeholder {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder svg {
    opacity: .18;
}

/* ── PROMO CARD ── */
.promo-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin: 18px 0 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.promo-card-media {
    position: relative;
}

.promo-card-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.promo-badge {
    position: absolute;
    top: 14px;
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #1e40af;
}

.promo-badge-left {
    left: 14px;
}

.promo-badge-right {
    right: 14px;
    color: #111;
}

.promo-card-body {
    padding: 20px;
}

.promo-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.promo-card-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 10px;
}

.promo-card-desc {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 14px;
    text-align: justify;
}

.promo-card-desc strong {
    color: #000;
}

.promo-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.promo-tag {
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
}

.promo-tag-green {
    background: #dcfce7;
    color: #15803d;
}

.promo-tag-blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.promo-card-cta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── URGENCY BOX ── */
.urgency-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 4px solid #d97706;
    border-radius: 8px;
    padding: 18px 20px;
    margin: 22px 0;
}

.urgency-title {
    font-size: 17px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 6px;
}

.urgency-box p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    text-align: justify;
}

.urgency-link {
    color: #92400e;
    font-weight: 700;
    text-decoration: underline;
    white-space: nowrap;
}

/* ── BODY TEXT ── */
.prose p {
    margin-bottom: 13px;
    color: #333;
    font-size: 18px;
    line-height: 1.7;
    text-align: justify;
}

.prose strong {
    color: #000;
}

.img-caption {
    font-size: 13px;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 13px;
}

/* ── BLUE INFO BOX ── */
.info-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    padding: 22px 20px;
    margin: 22px 0;
    text-align: center;
}

.info-box-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 5px;
}

.info-box-sub {
    font-size: 18px;
    color: #3b82f6;
    margin-bottom: 16px;
}

/* ── ELIGIBILITY FORM ── */
.elig-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 340px;
    margin: 0 auto;
    text-align: left;
}

heyflow-wrapper {
    display: block;
    max-width: 340px;
    margin: 0 auto;
}

.elig-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.elig-label {
    font-size: 13px;
    font-weight: 600;
    color: #1e40af;
}

.elig-input,
.elig-select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #bfdbfe;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    color: #1a1a1a;
    background: #fff;
}

.elig-input:focus,
.elig-select:focus {
    outline: none;
    border-color: #2563eb;
}

.elig-submit {
    width: 100%;
    margin-top: 4px;
}

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 13px 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .18s;
}

.btn:hover {
    background: #1d4ed8;
}

.btn-lg {
    padding: 15px 38px;
    font-size: 18px;
}

.btn-wrap {
    text-align: center;
    margin: 22px 0 8px;
}

.btn-note {
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 5px;
}

/* ── SECTION TITLE ── */
.s-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 30px 0 14px;
}

/* ── HOW IT WORKS ── */
.steps {
    margin-bottom: 10px;
}

.step {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.step-num {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-top: 2px;
}

.step-body {
    flex: 1;
}

.step h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.step p {
    font-size: 18px;
    color: #555;
    line-height: 1.55;
    margin: 0;
    text-align: justify;
}

.step p strong {
    color: #000;
}

.step-img {
    width: 140px;
    height: 105px;
    min-width: 140px;
    border-radius: 8px;
    overflow: hidden;
}

.step-img-1 {
    background: linear-gradient(150deg, #0c2a4a 0%, #1e4d8c 55%, #60a5fa 100%);
}

.step-img-2 {
    background: linear-gradient(150deg, #7c3500 0%, #c2510a 50%, #f97316 100%);
}

.step-img-3 {
    background: linear-gradient(155deg, #b45309 0%, #d97706 50%, #fbbf24 100%);
}

.step-img svg {
    display: block;
    opacity: 1;
}

/* ── DIVIDER ── */
hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 26px 0;
}

/* ── CHECKLIST ── */
.checklist {
    list-style: none;
    margin: 12px 0 20px;
}

.checklist li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.checklist li strong {
    color: #000;
}

.chk {
    color: #16a34a;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    font-weight: 700;
}

/* ── AGE-RANGE CTAs ── */
.age-cta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 18px 0;
}

.age-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border: none;
    border-radius: 8px;
    padding: 16px 10px;
    color: #fff;
    cursor: pointer;
    text-align: center;
    transition: transform .15s, background .18s;
}

.age-cta:hover {
    transform: translateY(-2px);
}

.age-cta-range {
    font-size: 18px;
    font-weight: 800;
}

.age-cta-action {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
}

.age-cta-green {
    background: #16a34a;
}

.age-cta-green:hover {
    background: #15803d;
}

.age-cta-blue {
    background: #2563eb;
}

.age-cta-blue:hover {
    background: #1d4ed8;
}

.age-cta-orange {
    background: #f97316;
}

.age-cta-orange:hover {
    background: #ea580c;
}

.age-cta-purple {
    background: #9333ea;
}

.age-cta-purple:hover {
    background: #7e22ce;
}

/* ── ADVANTAGES ── */
.adv-side {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    padding: 18px 16px;
    margin: 20px 0;
    text-align: center;
}

.adv-group {
    margin-bottom: 20px;
}

.adv-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.adv-list {
    list-style: none;
}

.adv-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 6px;
    font-size: 18px;
    color: #444;
}

.adv-list li::before {
    content: '✓';
    color: #2563eb;
    font-weight: 700;
    flex-shrink: 0;
}

.adv-footnote {
    font-size: 12.5px;
    color: #9ca3af;
    margin-top: 6px;
}

/* ── REGION SELECTOR ── */
.regions {
    background: #0f2d5a;
    border-radius: 12px;
    padding: 28px 22px 24px;
    margin: 0 0 28px;
    color: #fff;
    text-align: center;
}

.regions h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
}

.regions p {
    font-size: 18px;
    color: #93c5fd;
    margin-bottom: 20px;
}

.region-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.r-btn {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 13px 12px;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    transition: background .18s;
}

.r-btn:hover {
    background: #1d4ed8;
}

.r-btn.span2 {
    grid-column: 1 / -1;
}

/* ── SIM STEPS ── */
.sim-step {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.sim-num {
    width: 30px;
    min-width: 30px;
    height: 30px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    margin-top: 2px;
}

.sim-step h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.sim-step p {
    font-size: 18px;
    color: #555;
    line-height: 1.55;
    margin: 0;
    text-align: justify;
}

/* ── AGE CARDS ── */
.age-intro {
    font-size: 18px;
    color: #444;
    line-height: 1.65;
    margin-bottom: 18px;
}

/* ── FAQ ── */
.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: #0f172a;
    gap: 12px;
    user-select: none;
}

.faq-icon {
    font-size: 22px;
    color: #9ca3af;
    flex-shrink: 0;
    transition: transform .2s;
    line-height: 1;
}

.faq-a {
    display: none;
    padding: 0 0 16px;
    font-size: 18px;
    color: #555;
    line-height: 1.65;
    text-align: justify;
}

.faq-item.open .faq-a {
    display: block;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* ── LEGAL ── */
.legal {
    font-size: 11px;
    color: #9ca3af;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
    margin-top: 10px;
    line-height: 1.65;
}

.legal-updated {
    margin-top: 8px;
    font-style: italic;
}

.legal a {
    color: #6b7280;
    text-decoration: underline;
}

.legal-links {
    margin-top: 10px;
}

.legal-links a {
    margin-right: 14px;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLETTE / MOBILE (≤ 700px)
   ══════════════════════════════════════ */
@media (max-width: 700px) {

    body {
        font-size: 16px;
    }

    /* Header */
    .site-header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .header-author {
        margin-left: 0;
    }

    .status-bar {
        padding: 0 16px;
    }

    .wrap {
        padding: 0 16px 32px;
    }

    /* Titles */
    .article-title {
        font-size: 21px;
    }

    .s-title {
        font-size: 20px;
    }

    .info-box-title,
    .promo-card-title,
    .adv-title {
        font-size: 19px;
    }

    /* Hero image */
    .hero-img {
        height: 200px;
    }

    /* Comment ça marche — l'image passe sous le texte */
    .step {
        flex-wrap: wrap;
    }

    .step-img {
        flex: 1 1 100%;
        width: 100%;
        height: 160px;
        margin-top: 10px;
    }

    /* CTA par tranche d'âge — 2 colonnes au lieu de 4 */
    .age-cta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Sélecteur région */
    .region-grid {
        grid-template-columns: 1fr;
    }

    .promo-card-img {
        height: 180px;
    }

    .elig-form,
    heyflow-wrapper {
        max-width: 100%;
    }
}

/* ══════════════════════════════════════
   RESPONSIVE — PETIT MOBILE (≤ 420px)
   ══════════════════════════════════════ */
@media (max-width: 420px) {

    .article-title {
        font-size: 19px;
    }

    .status-badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    .step-num,
    .sim-num {
        width: 24px;
        min-width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

/* ── FOOTER ── */
.site-footer {
    background: #f4f5f9;
    border-top: 1px solid #e5e7eb;
    padding: 24px 20px;
    margin-top: 30px;
}

.site-footer-inner {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-bottom {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    text-align: left;
    margin-top: 12px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    white-space: nowrap;
}

.footer-links a {
    font-size: 13px;
    color: #6b7280;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copy {
    font-size: 12px;
    color: #9c9c9c;
    margin-top: 4px;
    display: flex;
    gap: 20px;
    text-align: left;
}

.footer-copy p {
    flex: 1;
}