/* ════════════════════════════════════════════
   HOME PAGE — PREMIUM STYLES
   Elohim Home School © 2026
════════════════════════════════════════════ */

/* ── SHARED UTILS ── */
.sec-tag {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #FF6600;
    margin-bottom: 0.75rem;
}
.sec-h2 {
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
    font-weight: 900;
    color: #002366;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.sec-p {
    font-size: 1rem;
    color: #64748B;
    max-width: 560px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}
.text-center { text-align: center; }

/* ── HEADER SCROLL ── */
#mainHeader { transition: box-shadow 0.3s, background 0.3s; }
#mainHeader.scrolled { box-shadow: 0 4px 24px rgba(0,35,102,0.08); }
.btn-ghost {
    color: #002366;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background 0.2s;
}
.btn-ghost:hover { background: #F1F5F9; }

/* ── HERO ── */
.home-hero {
    background: linear-gradient(145deg, #001233 0%, #002366 45%, #003d99 80%, #004db3 100%);
    padding: 56px 0 90px;
    position: relative;
    overflow: hidden;
    color: white;
}
.hero-canvas { position: absolute; inset: 0; z-index: 0; }
.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}
.orb-1 { width: 600px; height: 600px; background: #FF6600; top: -200px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: #3B82F6; bottom: -100px; left: -100px; }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero left */
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}
.pill-dot {
    width: 7px; height: 7px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-h1 {
    color: white;
    font-size: clamp(2.2rem, 4.5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.hero-highlight {
    background: linear-gradient(90deg, #FF6600, #FFB400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.1rem;
    opacity: 0.82;
    line-height: 1.7;
    margin-bottom: 2.25rem;
    max-width: 480px;
}
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-btn-main {
    background: linear-gradient(135deg, #FF6600, #E65C00);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}
.hero-btn-main:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,102,0,0.4); }
.hero-btn-alt {
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.25);
    color: white;
    padding: 1rem 1.75rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}
.hero-btn-enroll {
    background: #FFB400;
    color: #002366;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}
.hero-btn-enroll:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,180,0,0.4); }
.hero-btn-alt:hover { background: rgba(255,255,255,0.18); }

/* Trust row */
.hero-trust { display: flex; align-items: center; gap: 1rem; }
.trust-avatars { display: flex; }
.trust-avatars img {
    width: 36px; height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.4);
    margin-left: -8px;
}
.trust-avatars img:first-child { margin-left: 0; }
.trust-more {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin-left: -8px;
}
.trust-text { display: flex; flex-direction: column; gap: 0.1rem; }
.trust-stars { color: #FFB400; font-size: 0.8rem; letter-spacing: 1px; }
.trust-text span { font-size: 0.78rem; color: rgba(255,255,255,0.75); font-weight: 500; }

/* Hero right card */
.hero-right { position: relative; }
.hero-card-main {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}
.hcm-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hcm-header img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.3); }
.hcm-header strong { display: block; color: white; font-size: 1rem; margin-bottom: 0.15rem; }
.hcm-header p { color: rgba(255,255,255,0.65); font-size: 0.78rem; }
.hcm-badge {
    margin-left: auto;
    background: rgba(16,185,129,0.2);
    border: 1px solid rgba(16,185,129,0.4);
    color: #10B981;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex; align-items: center; gap: 0.3rem;
    white-space: nowrap;
    flex-shrink: 0;
}
.hcm-stars { color: #FFB400; font-size: 0.78rem; font-weight: 700; margin-top: 0.25rem; }
.hcm-stars span { color: rgba(255,255,255,0.6); font-weight: 400; }
.hcm-body { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.25rem; }
.hcm-stat {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.83rem; color: rgba(255,255,255,0.75);
}
.hcm-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hcm-price { font-size: 1.5rem; font-weight: 900; color: white; }
.hcm-price small { font-size: 0.7rem; color: rgba(255,255,255,0.55); font-weight: 400; }
.hcm-btn {
    background: linear-gradient(135deg, #FF6600, #E65C00);
    color: white;
    padding: 0.65rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.25s;
}
.hcm-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(255,102,0,0.4); }

/* Float cards */
.hero-float-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 0.75rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    font-size: 0.82rem;
    font-weight: 700;
    color: #0F172A;
    z-index: 3;
    animation: floatY 3s ease-in-out infinite;
}
.hero-float-card strong { display: block; font-size: 1rem; color: #002366; }
.fc-top { top: -16px; left: -24px; animation-delay: 0s; }
.fc-bottom { bottom: 24px; right: -20px; animation-delay: 1.5s; }
@keyframes floatY {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Wave */
.hero-wave { position: absolute; bottom: 0; left: 0; width: 100%; line-height: 0; z-index: 1; }
.hero-wave svg { display: block; }

/* ── QUICK SEARCH ── */
.quick-search-section { background: #F8FAFC; padding: 2rem 0 3.5rem; }
.quick-search-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 40px rgba(0,35,102,0.1);
    border: 1px solid #E2E8F0;
}
.qsc-label {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.72rem; font-weight: 800; color: #64748B;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 1rem;
}
.qsc-form {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.qsc-field { flex: 1; min-width: 150px; }
.qsc-field label { display: block; font-size: 0.72rem; font-weight: 700; color: #64748B; margin-bottom: 0.35rem; }
.qsc-field select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1.5px solid #E2E8F0;
    background: #F8FAFC;
    font-family: inherit;
    font-size: 0.88rem;
    color: #0F172A;
    outline: none;
    transition: border-color 0.2s;
}
.qsc-field select:focus { border-color: #002366; }
.qsc-sep { width: 1px; height: 50px; background: #E2E8F0; flex-shrink: 0; }
.qsc-btn {
    background: linear-gradient(135deg, #FF6600, #E65C00);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 1.75rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex; align-items: center; gap: 0.5rem;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}
.qsc-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,102,0,0.35); }

/* ── HOME STATS ── */
.home-stats { background: #F8FAFC; padding: 2rem 0 5rem; }
.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.hstat-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1.5px solid #E2E8F0;
    text-align: center;
    transition: all 0.3s;
}
.hstat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,35,102,0.08); }
.hstat-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
}
.hstat-num { font-size: 2.5rem; font-weight: 900; color: #002366; line-height: 1; }
.hstat-suf { font-size: 1.5rem; font-weight: 900; color: #FF6600; }
.hstat-card p { font-size: 0.8rem; color: #64748B; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 0.5rem; }

/* ── WHY US ── */
.why-us-section { padding: 6rem 0; background: white; }
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}
.wu-card {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 2rem;
    border: 1.5px solid #E2E8F0;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}
.wu-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6600, #FFB400);
    transform: scaleX(0);
    transition: transform 0.35s;
}
.wu-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,35,102,0.09); background: white; }
.wu-card:hover::before { transform: scaleX(1); }
.wu-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.wu-card h3 { font-size: 1rem; color: #002366; font-weight: 800; margin-bottom: 0.6rem; }
.wu-card p { font-size: 0.87rem; color: #64748B; line-height: 1.65; margin-bottom: 1rem; }
.wu-link a {
    font-size: 0.8rem;
    font-weight: 700;
    color: #FF6600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.2s;
}
.wu-link a:hover { gap: 0.6rem; }

/* CTA card */
.wu-card-cta {
    background: linear-gradient(135deg, #002366, #001a4d);
    border-color: transparent;
}
.wu-card-cta::before { display: none; }
/* Garde le fond bleu marine au survol (sinon le texte blanc devient illisible). */
.wu-card-cta:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,35,102,0.25); background: linear-gradient(135deg, #002e7a, #002366); }
.wuc-inner { display: flex; flex-direction: column; height: 100%; justify-content: center; }
.wuc-inner strong { color: white; font-size: 1.2rem; display: block; margin-bottom: 0.6rem; }
.wuc-inner p { color: rgba(255,255,255,0.7); font-size: 0.87rem; line-height: 1.65; margin-bottom: 1.5rem; }
.wuc-btn {
    background: linear-gradient(135deg, #FF6600, #E65C00);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
}
.wuc-btn:hover { box-shadow: 0 8px 20px rgba(255,102,0,0.4); }

/* ── HOW IT WORKS ── */
.how-home-section {
    padding: 6rem 0;
    background: linear-gradient(145deg, #001a4d 0%, #002366 60%, #003399 100%);
}
.how-home-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 4rem;
    flex-wrap: wrap;
}
.how-card {
    flex: 1; min-width: 210px; max-width: 260px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2.25rem 1.75rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}
.how-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.how-num {
    position: absolute;
    top: 0.75rem; right: 1.25rem;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255,102,0,0.1);
    line-height: 1;
}
.how-icon {
    width: 62px; height: 62px;
    background: rgba(255,102,0,0.1);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
}
.how-card h3 { color: white; font-size: 1.05rem; margin-bottom: 0.6rem; font-weight: 800; }
.how-card p { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.65; }
.how-arrow { display: flex; align-items: center; padding: 0 1rem; }
@media (max-width: 768px) { .how-arrow { display: none; } }

/* ── FEATURED TEACHERS ── */
.featured-teachers-section { padding: 6rem 0; background: #F8FAFC; }
.ft-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
}
.ft-see-all {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.88rem; font-weight: 700; color: #FF6600;
    text-decoration: none; transition: gap 0.2s;
}
.ft-see-all:hover { gap: 0.7rem; }
.ft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}
.ft-card {
    background: white;
    border-radius: 20px;
    border: 1.5px solid #E2E8F0;
    overflow: hidden;
    transition: all 0.35s;
}
.ft-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,35,102,0.12); border-color: #002366; }
.ftc-top { position: relative; }
.ftc-top img { width: 100%; height: 180px; object-fit: cover; }
.ftc-online {
    position: absolute; bottom: 12px; right: 12px;
    width: 14px; height: 14px;
    background: #10B981; border: 2.5px solid white;
    border-radius: 50%;
}
.ftc-body { padding: 1.25rem 1.5rem; }
.ftc-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6600, #FFB400);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
}
.ftc-body h3 { font-size: 1.1rem; color: #0F172A; font-weight: 800; margin-bottom: 0.2rem; }
.ftc-body p { font-size: 0.82rem; color: #FF6600; font-weight: 700; margin-bottom: 0.6rem; }
.ftc-rating { font-size: 0.82rem; color: #FFB400; font-weight: 700; margin-bottom: 0.5rem; }
.ftc-rating span { color: #64748B; font-weight: 400; }
.ftc-meta {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.78rem; color: #64748B; flex-wrap: wrap;
}
.ftc-meta i { display: inline; }
.ftc-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.5rem;
    background: #F8FAFC;
    border-top: 1px solid #F1F5F9;
}
.ftc-price { font-size: 1.35rem; font-weight: 900; color: #002366; }
.ftc-price small { font-size: 0.7rem; color: #64748B; font-weight: 400; }
.ftc-btn {
    background: linear-gradient(135deg, #FF6600, #E65C00);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.25s;
}
.ftc-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(255,102,0,0.35); }

/* ── TESTIMONIALS ── */
.testi-home-section {
    padding: 6rem 0;
    background: linear-gradient(145deg, #001a4d 0%, #002366 60%, #003399 100%);
}
.testi-home-section .sec-tag { color: #FF8C42; }
.testi-home-section .sec-h2 { color: white; }
.testi-home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    margin-top: 3rem;
}
.thi-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
}
.thi-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-4px); }
.thi-quote {
    font-size: 4rem;
    color: #FF6600;
    line-height: 1;
    opacity: 0.5;
    font-family: Georgia, serif;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}
.thi-card > p {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
    padding-top: 1rem;
}
.thi-stars { color: #FFB400; font-size: 0.9rem; margin-bottom: 1.5rem; letter-spacing: 2px; }
.thi-author { display: flex; align-items: center; gap: 0.75rem; }
.thi-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.2); }
.thi-author strong { display: block; color: white; font-size: 0.9rem; }
.thi-author span { font-size: 0.75rem; color: rgba(255,255,255,0.55); }

/* ── DUAL CTA ── */
.dual-cta-section { padding: 5rem 0 6rem; background: #F8FAFC; }
.dual-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.dcta-card {
    border-radius: 28px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.dcta-parent { background: linear-gradient(135deg, #002366, #001233); }
.dcta-teacher { background: linear-gradient(135deg, #1a0a00, #331400); }
.dcta-glow {
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 400px; height: 200px;
    background: radial-gradient(ellipse, rgba(59,130,246,0.25), transparent 70%);
    pointer-events: none;
}
.dcta-card h3 { color: white; font-size: 1.75rem; font-weight: 900; margin-bottom: 0.75rem; position: relative; }
.dcta-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.65; margin-bottom: 2rem; max-width: 340px; margin-left: auto; margin-right: auto; position: relative; }
.dcta-btn-main {
    background: linear-gradient(135deg, #FF6600, #E65C00);
    color: white;
    padding: 1rem 2.25rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    position: relative;
}
.dcta-btn-main:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,102,0,0.4); }
.dcta-btn-sec {
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.25);
    color: white;
    padding: 1rem 2.25rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    position: relative;
}
.dcta-btn-sec:hover { background: rgba(255,255,255,0.18); }

/* ── FOOTER shared styles ── */


/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .dual-cta-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .home-hero { padding: 90px 0 70px; }
    .why-us-grid { grid-template-columns: 1fr; }
    .qsc-form { flex-direction: column; }
    .qsc-sep { display: none; }
    .qsc-field { width: 100%; }
    .qsc-btn { width: 100%; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .dcta-card { padding: 3rem 2rem; }
}
@media (max-width: 480px) {
    .hero-h1 { font-size: 2rem; }
    .hero-cta-group { flex-direction: column; }
    .hero-btn-main, .hero-btn-alt { width: 100%; justify-content: center; }
    .home-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
