/* =========================
   VARIABLES & RESET
========================= */
:root {
    --red: #D8232A;
    --red-dark: #a51a20;
    --red-light: #fdf2f2;
    --black: #111111;
    --gray-900: #1f1f1f;
    --gray-700: #444444;
    --gray-400: #999999;
    --gray-100: #f5f5f5;
    --white: #ffffff;
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Lora', serif;
    --font-display: 'Bebas Neue', sans-serif;
    --radius: 10px;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.13);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
    --transition: 0.25s ease;
    --nav-h: 70px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    padding-top: var(--nav-h);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================
   BOUTONS UTILITAIRES
========================= */
.btn-primary {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.4px;
    padding: 13px 26px;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 35, 42, 0.3);
}

.btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--red);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.4px;
    padding: 14px 32px;
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-white:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.section-label {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}

/* =========================
   HEADER  (identique à l'original)
========================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-h);
    background: linear-gradient(90deg, #ff0000, #b30000);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 30px;
    z-index: 1000;
    overflow: visible;
}

/* ── Bulle logo ── */
.logo-bubble {
    position: absolute;
    left: -5px;
    top: 5px;
    width: 140px;
    height: 110px;
    background: linear-gradient(90deg, #ff0000, #b30000);
    border-bottom-right-radius: 90px;
    border-top-right-radius: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-bubble img {
    height: 75px;
    width: auto;
    border-radius: 12px;
}

/* ── Hamburger ── */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ── Menu ── */
.menu {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.menu li {
    position: relative;
}

.menu a {
    color: #fff;
    text-decoration: none;
    padding: 14px 22px;
    font-family: var(--font-head);
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    display: block;
}

.menu a:hover {
    background-color: #00000030;
    border-radius: 2px;
}

/* ligne animée */
.menu a::after {
    content: "";
    position: absolute;
    left: 16px;
    bottom: 6px;
    width: 0;
    height: 2px;
    background-color: white;
    transition: 0.25s ease;
}

.menu a:hover::after {
    width: calc(100% - 32px);
}

/* ── Dropdown ── */
.submenu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 240px;
    display: none;
    padding: 18px 0;
    border-radius: 2px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.submenu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
}

.submenu li a {
    color: #111;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: normal;
    white-space: nowrap;
}

.submenu li a:hover {
    background: var(--red);
    color: var(--white);
}

.dropdown:hover .submenu {
    display: block;
}


/* =========================
   HERO  (DA cohérente avec le reste + 1 image mobile)
========================= */
.hero {
    position: relative;
    height: 520px;
    overflow: hidden;
}

/* ── bandes ── */
.hero-strips {
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    display: flex;
}

.strip {
    flex: 1;
    transform: skewX(-15deg);
    overflow: hidden;
    position: relative;
}

.strip span {
    position: absolute;
    inset: -20%;
    transform: skewX(15deg);
    background-size: cover;
    background-position: center;
}

.separator {
    width: 6px;
    background: var(--white);
    transform: skewX(-15deg);
    opacity: 0.6;
}

/* fallback statique */
.img1 span {
    background-image: url("assets/IMG1.jpg");
}

.img2 span {
    background-image: url("assets/IMG2.jpg");
}

.img3 span {
    background-image: url("assets/IMG3.jpg");
}

.img4 span {
    background-image: url("assets/IMG4.jpg");
}

.img5 span {
    background-image: url("assets/IMG5.jpg");
}

/* ── overlay : fort à gauche pour la lisibilité, dégradé vers transparent ── */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
            rgba(10, 10, 10, 0.82) 0%,
            rgba(10, 10, 10, 0.60) 38%,
            rgba(10, 10, 10, 0.20) 65%,
            transparent 100%);
}

/* ── contenu aligné à gauche, même DA que les sections ── */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--white);
}

.hero-eyebrow {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 14px;
    /* petite barre rouge à gauche, même que section-label */
    padding-left: 14px;
    border-left: 3px solid var(--red);
}

.hero-content h1 {
    font-family: var(--font-head);
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 18px;
    max-width: 540px;
}

.hero-content p {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 32px;
    max-width: 420px;
}

/* ── boutons hero ── */
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-cta-primary {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.4px;
    padding: 13px 28px;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.hero-cta-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 35, 42, 0.4);
}

.hero-cta-ghost {
    display: inline-block;
    background: transparent;
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.4px;
    padding: 12px 26px;
    border-radius: var(--radius);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: border-color var(--transition), background var(--transition);
}

.hero-cta-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.10);
}


/* =========================
   STATS BAND
========================= */
.stats-band {
    background: var(--white);
    border-bottom: 1px solid #ebebeb;
    border-top: 1px solid #ebebeb;
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: stretch;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 38px 16px;
    text-align: center;
    gap: 5px;
}

.stat-icon {
    font-size: 26px;
    margin-bottom: 4px;
}

.stat-number {
    font-family: var(--font-head);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.stat-number span {
    font-size: 0.52em;
    font-weight: 700;
    color: var(--gray-400);
    vertical-align: middle;
}

.stat-label {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.5;
}

.stat-divider {
    width: 1px;
    background: #e8e8e8;
    align-self: stretch;
    margin: 18px 0;
}


/* =========================
   INTRO SECTION
========================= */
.intro-section {
    padding: 90px 28px;
    width: 100%;
}

.intro-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text .section-label {
    margin-bottom: 12px;
}

.intro-text h2 {
    font-family: var(--font-head);
    font-size: clamp(20px, 2.4vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--gray-700);
    margin-bottom: 14px;
}

.intro-text .btn-primary {
    margin-top: 10px;
}

.intro-img-frame {
    position: relative;
}

.intro-img-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
}

.intro-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: var(--red);
    color: var(--white);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    box-shadow: 0 8px 24px rgba(216, 35, 42, 0.4);
}

.badge-num {
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================
   ARTICLES
========================= */
.articles-section {
    padding: 90px 28px;
    background: var(--gray-100);
}

.articles-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 46px;
}

.section-header h2 {
    font-family: var(--font-head);
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 800;
    color: var(--black);
    margin-top: 4px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid #e8e8e8;
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card-img {
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.card:hover .card-img img {
    transform: scale(1.05);
}

.card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}

.card-body {
    padding: 22px;
}

.card-body h3 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 10px;
}

.card-body p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.card-link {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.card-link:hover {
    gap: 10px;
}

.card-link span {
    transition: transform var(--transition);
    display: inline-block;
}

.card-link:hover span {
    transform: translateX(4px);
}


/* ── bouton voir tous les articles ── */
.articles-footer {
    text-align: center;
    margin-top: 52px;
}

.btn-articles-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.4px;
    color: var(--red);
    border: 2px solid var(--red);
    padding: 13px 30px;
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-articles-all svg {
    transition: transform var(--transition);
    flex-shrink: 0;
}

.btn-articles-all:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 35, 42, 0.25);
}

.btn-articles-all:hover svg {
    transform: translateX(4px);
}


/* =========================
   CTA BAND
========================= */
.cta-band {
    background: linear-gradient(135deg, #ff0000 0%, #b30000 100%);
    padding: 86px 28px;
    text-align: center;
}

.cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 46px);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: 1px;
}

.cta-inner p {
    font-family: var(--font-head);
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 32px;
}


/* =========================
   FOOTER  (identique à l'original)
========================= */
footer {
    background: #111;
    color: #ddd;
    padding: 20px 15px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    min-height: 20px;
}

.footer-left {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-right img {
    height: 20px;
    transition: 0.3s ease;
    filter: brightness(0) invert(1);
}

.footer-right img:hover {
    transform: translateY(-4px) scale(1.1);
}

.footer-separator {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.25);
}

.footer-right a {
    color: #ddd;
    font-size: 14px;
    line-height: 1;
    transition: 0.3s ease;
}

.footer-right a:hover {
    color: var(--red);
}

/* section parain */

.parrains-section {
    background: linear-gradient(135deg, #c0392b 0%, #7b1010 100%);
    padding: 90px 28px;
    position: relative;
    overflow: hidden;
}

/* cercles décoratifs en arrière-plan */
.parrains-section::before,
.parrains-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.parrains-section::before {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
}

.parrains-section::after {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -80px;
}

.parrains-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.parrains-header {
    margin-bottom: 40px;
}

.parrains-header .section-label {
    color: rgba(255, 255, 255, 0.6) !important;
}

.parrains-header h2 {
    font-family: var(--font-head);
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 900;
    color: #fff;
    margin: 10px 0 0;
    letter-spacing: -0.5px;
    line-height: 1.05;
}

.parrains-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Carte */
.parrain-card {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

a.parrain-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.parrain-card--coming {
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    cursor: default;
}

.parrain-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 4px;
}

.parrain-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), #8e1010);
    border: 2px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}

.parrain-avatar--coming {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.3);
}

.parrain-badge {
    background: var(--red);
    color: #fff;
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}

.parrain-badge--coming {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.4);
}

.parrain-name {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--black);
    margin: 0;
    line-height: 1.2;
}

.parrain-sport {
    font-family: var(--font-head);
    font-size: 0.75rem;
    color: var(--gray-400);
    letter-spacing: 0.5px;
    margin: 0;
}

.parrain-medals {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 4px 0;
}

.parrain-medals span {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--red);
    background: var(--red-light);
    border: 1px solid #f5c6c6;
    padding: 3px 10px;
    border-radius: 20px;
}

.parrain-bio {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.75;
    color: var(--gray-700);
    margin: 4px 0 0;
}

.parrain-link {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.3px;
    margin-top: 4px;
}

@media (max-width: 700px) {
    .parrains-grid {
        grid-template-columns: 1fr;
    }

    .parrains-section {
        padding: 60px 20px;
    }
}



/* =========================================================
   RESPONSIVE — TABLETTE (≤ 1024px)
========================================================= */
@media (max-width: 1024px) {
    .menu a {
        padding: 12px 10px;
        font-size: 13px;
    }

    .menu {
        gap: 4px;
    }

    .intro-inner {
        gap: 50px;
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 26px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE (≤ 768px)
========================================================= */
@media (max-width: 768px) {

    /* ── Header ── */
    .header {
        justify-content: center;
        padding: 0 16px;
        overflow: hidden;
    }

    .logo-bubble {
        display: none;
    }

    /* ── Hamburger centré ── */
    .menu-toggle {
        display: flex;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    /* ── Nav déroulant (menu hamburger uniquement) ── */
    #mainNav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #b30000;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        z-index: 999;
    }

    #mainNav.open {
        max-height: 100vh;
        overflow-y: auto;
    }

    .menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0 20px;
    }

    .menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .menu a {
        padding: 14px 24px;
        font-size: 15px;
    }

    .menu a::after {
        display: none;
    }



    /* ── Hero : 5 strips → 1 seule image ── */
    .hero {
        height: 420px;
    }

    /* On cache toutes les bandes et séparateurs sauf la 1ère */
    .hero-strips .strip:not(:first-child),
    .hero-strips .separator {
        display: none;
    }

    /* La bande restante couvre tout le hero sans inclinaison */
    .hero-strips {
        left: 0;
        width: 100%;
    }

    .hero-strips .strip:first-child {
        transform: none;
        flex: 1;
    }

    .hero-strips .strip:first-child span {
        transform: none;
        inset: 0;
    }

    /* overlay plein sur mobile (pas de dégradé latéral) */
    .hero-overlay {
        background: rgba(10, 10, 10, 0.55);
    }

    /* contenu centré sur mobile */
    .hero-content {
        align-items: center;
        text-align: center;
        padding: 0 20px;
        max-width: 100%;
    }

    .hero-eyebrow {
        border-left: none;
        padding-left: 0;
    }

    .hero-content h1 {
        font-size: 28px;
        max-width: 100%;
    }

    .hero-content p {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .hero-actions {
        justify-content: center;
    }

    /* ── Stats ── */
    .stats-inner {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 40%;
    }

    .stat-divider:nth-child(4) {
        display: none;
    }

    /* ── Intro ── */
    .intro-section {
        padding: 60px 20px;
    }

    .intro-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-visual {
        order: -1;
    }

    .intro-img-frame img {
        height: 280px;
    }

    .intro-badge {
        bottom: -12px;
        right: -8px;
        width: 76px;
        height: 76px;
    }

    .badge-num {
        font-size: 17px;
    }

    /* ── Articles ── */
    .articles-section {
        padding: 60px 20px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    /* ── CTA ── */
    .cta-band {
        padding: 60px 20px;
    }

    /* ── Footer ── */
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-right {
        gap: 14px;
    }

    .footer-separator {
        display: none;
    }
}


/* =========================================================
   RESPONSIVE — PETIT MOBILE (≤ 420px)
========================================================= */
@media (max-width: 420px) {
    .header {
        padding-left: 140px;
    }

    .logo-bubble {
        display: none;
    }

    .hero {
        height: 360px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-cta-primary,
    .hero-cta-ghost {
        width: 100%;
        text-align: center;
    }

    .stats-inner {
        flex-direction: column;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        padding: 22px 16px;
        border-bottom: 1px solid #eee;
        flex: unset;
        width: 100%;
    }

    .footer-right {
        flex-direction: column;
        align-items: flex-start;
    }
}