/* ════════════════════════════════════════════
   RECHERCHE-ENSEIGNANT — PREMIUM STYLES
   Elohim Home School © 2026
════════════════════════════════════════════ */

/* ── HERO PREMIUM ── */
.hero-search-premium {
    position: relative;
    background: linear-gradient(145deg, #001a4d 0%, #002366 40%, #003d99 70%, #004db3 100%);
    padding: 120px 0 100px;
    overflow: hidden;
    color: white;
    text-align: center;
}
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-search-inner {
    position: relative;
    z-index: 2;
}
.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,102,0,0.2);
    border: 1px solid rgba(255,102,0,0.5);
    color: #FF8C42;
    padding: 0.45rem 1.25rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.75rem;
}
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    line-height: 1.1;
    font-weight: 900;
    color: white;
    margin-bottom: 1.25rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.gradient-text {
    background: linear-gradient(90deg, #FF6600, #FFB400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Search Bar */
.hero-search-bar {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 14px;
    padding: 0.5rem 0.5rem 0.5rem 0;
    max-width: 860px;
    margin: 0 auto 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    flex-wrap: wrap;
    gap: 0;
}
.search-field {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    flex: 1;
    min-width: 150px;
    color: #64748B;
}
.search-field select {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    font-family: inherit;
    color: #0F172A;
    font-weight: 500;
    outline: none;
    width: 100%;
    cursor: pointer;
}
.search-divider {
    width: 1px;
    height: 36px;
    background: #E2E8F0;
    flex-shrink: 0;
}
.search-btn {
    background: linear-gradient(135deg, #FF6600, #E65C00);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin: 0.25rem;
}
.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,102,0,0.4);
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0.9;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}
.trust-sep { color: rgba(255,255,255,0.3); font-size: 1rem; }

/* Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}
.hero-wave svg { display: block; }

/* ── STATS BAR ── */
.stats-bar-section {
    background: #F8FAFC;
    padding: 2.5rem 0;
    border-bottom: 1px solid #E2E8F0;
}
.stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
    padding: 1rem 3rem;
    flex: 1;
    min-width: 140px;
}
.stat-num {
    font-size: 2.75rem;
    font-weight: 900;
    color: #002366;
    line-height: 1;
}
.stat-suffix {
    font-size: 1.5rem;
    font-weight: 900;
    color: #FF6600;
}
.stat-item p {
    font-size: 0.8rem;
    color: #64748B;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.4rem;
}
.stat-divider {
    width: 1px;
    height: 50px;
    background: #E2E8F0;
}

/* ── MARKETPLACE LAYOUT ── */
.marketplace-section {
    padding: 5rem 0 6rem;
    background: #F8FAFC;
}
.marketplace-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

/* ── FILTERS PANEL ── */
.filters-panel {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border: 1px solid #E2E8F0;
    position: sticky;
    top: 100px;
}
.filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #F1F5F9;
}
.filters-header h3 {
    font-size: 1rem;
    color: #002366;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
}
.filter-reset {
    background: none;
    border: none;
    color: #FF6600;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}
.filter-block { margin-bottom: 1.75rem; }
.filter-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    color: #002366;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}
.filter-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    border: 1.5px solid #E2E8F0;
    background: #F8FAFC;
    font-family: inherit;
    font-size: 0.9rem;
    color: #334155;
    transition: border-color 0.2s;
    outline: none;
}
.filter-select:focus { border-color: #002366; }

/* Checkboxes */
.filter-checkboxes { display: flex; flex-direction: column; gap: 0.6rem; }
.check-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: #334155;
    cursor: pointer;
    font-weight: 500;
}
.check-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #FF6600;
    cursor: pointer;
}

/* Pills */
.filter-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pill-btn {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1.5px solid #E2E8F0;
    background: white;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748B;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.pill-btn:hover { border-color: #FF6600; color: #FF6600; }
.pill-btn.active {
    background: #FF6600;
    border-color: #FF6600;
    color: white;
}

/* Price Range */
.range-wrapper { padding: 0.25rem 0; }
.price-range {
    width: 100%;
    accent-color: #FF6600;
    cursor: pointer;
    margin-bottom: 0.5rem;
}
.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #64748B;
    font-weight: 600;
}
.range-value { color: #FF6600; font-weight: 800; }

.filter-apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-size: 0.95rem;
    border-radius: 12px;
    width: 100%;
    margin-top: 0.5rem;
}

/* ── RESULTS PANEL ── */
.results-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.results-title {
    font-size: 1.6rem;
    color: #002366;
    font-weight: 800;
    margin-bottom: 0.25rem;
}
.results-count { font-size: 0.9rem; color: #64748B; }
.count-badge {
    background: #FF6600;
    color: white;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
}
.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #64748B;
    white-space: nowrap;
}
.sort-select {
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1.5px solid #E2E8F0;
    font-family: inherit;
    font-size: 0.85rem;
    background: white;
    outline: none;
    cursor: pointer;
}

/* Active filter tags */
.active-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.active-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    color: #1D4ED8;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
}
.active-tag button {
    background: none;
    border: none;
    cursor: pointer;
    color: #1D4ED8;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
}

/* ── TEACHER GRID ── */
.teacher-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

/* ── TEACHER CARD ── */
.teacher-card {
    background: white;
    border-radius: 20px;
    border: 1.5px solid #E2E8F0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    position: relative;
}
.teacher-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,35,102,0.12);
    border-color: #002366;
}
.teacher-card.featured {
    border: 2px solid #FF6600;
    box-shadow: 0 8px 32px rgba(255,102,0,0.15);
}
.featured-ribbon {
    background: linear-gradient(90deg, #FF6600, #FFB400);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.35rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.5px;
}
.card-body {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    flex: 1;
}
.avatar-section { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.avatar-wrap { position: relative; }
.avatar-wrap img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #F1F5F9;
}
.online-dot {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    background: #10B981;
    border: 2px solid white;
    border-radius: 50%;
}
.verify-badge {
    background: #DCFCE7;
    color: #15803D;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}
.card-info { flex: 1; min-width: 0; }
.card-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
    flex-wrap: wrap;
}
.card-name-row h3 {
    font-size: 1.1rem;
    color: #0F172A;
    font-weight: 800;
    margin: 0;
}
.exp-badge {
    background: linear-gradient(135deg, #002366, #003399);
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    white-space: nowrap;
}
.card-specialty {
    font-size: 0.82rem;
    color: #FF6600;
    font-weight: 700;
    margin-bottom: 0.6rem;
}
.card-rating { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.6rem; }
.stars-row { display: flex; gap: 1px; }
.rating-score { font-size: 0.85rem; font-weight: 800; color: #0F172A; }
.rating-count { font-size: 0.78rem; color: #64748B; }
.card-meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
    font-size: 0.78rem;
    color: #64748B;
}
.card-meta span { display: flex; align-items: center; gap: 0.3rem; }
.card-tags-row { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.ctag {
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    background: #F1F5F9;
    color: #475569;
}
.ctag-online { background: #EFF6FF; color: #2563EB; }
.ctag-home { background: #F0FDF4; color: #16A34A; }

/* Card Footer */
.card-footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: #F8FAFC;
    border-top: 1px solid #F1F5F9;
    gap: 1rem;
    flex-wrap: wrap;
}
.price-display { display: flex; align-items: baseline; gap: 0.25rem; }
.price-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: #002366;
    line-height: 1;
}
.price-unit { font-size: 0.75rem; color: #64748B; font-weight: 600; }
.card-actions { display: flex; gap: 0.6rem; }
.btn-outline-card {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    border: 1.5px solid #002366;
    color: #002366;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s;
}
.btn-outline-card:hover { background: #002366; color: white; }
.btn-book-card {
    padding: 0.6rem 1.1rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #FF6600, #E65C00);
    color: white;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    transition: all 0.25s;
}
.btn-book-card:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(255,102,0,0.35); }

/* ── PAGINATION ── */
.pagination-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}
.pag-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1.5px solid #E2E8F0;
    background: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    color: #64748B;
    transition: all 0.2s;
    font-family: inherit;
}
.pag-btn:hover, .pag-btn.active {
    background: #002366;
    border-color: #002366;
    color: white;
}
.pag-next {
    padding: 0 1.1rem;
    height: 38px;
    border-radius: 8px;
    border: 1.5px solid #E2E8F0;
    background: white;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    color: #002366;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s;
    font-family: inherit;
}
.pag-next:hover { background: #F8FAFC; }

/* ── HOW SECTION ── */
.how-section {
    padding: 6rem 0;
    background: white;
}
.section-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FF6600;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #002366;
    margin-bottom: 0.75rem;
}
.section-subtitle {
    font-size: 1rem;
    color: #64748B;
    margin-bottom: 4rem;
}
.text-center { text-align: center; }
.steps-grid {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
}
.step-card {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    position: relative;
    border: 1px solid #E2E8F0;
    transition: all 0.3s;
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,35,102,0.1);
    border-color: #FF6600;
}
.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0,35,102,0.06);
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.25rem;
}
.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FFF0E6, #FFE0CC);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; color: #002366; }
.step-card p { font-size: 0.88rem; color: #64748B; line-height: 1.6; }
.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #FF6600, #FFB400);
    flex-shrink: 0;
}
@media (max-width: 768px) { .step-connector { display: none; } }

/* ── WHY SECTION ── */
.why-section {
    padding: 6rem 0;
    background: #F8FAFC;
}
.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
    margin-top: 3.5rem;
}
.why-card-v2 {
    background: white;
    border-radius: 20px;
    padding: 2.25rem;
    border: 1.5px solid #E2E8F0;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.why-card-v2::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6600, #FFB400);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.why-card-v2:hover::before { transform: scaleX(1); }
.why-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,35,102,0.1);
}
.why-icon-wrap {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.why-card-v2 h3 { font-size: 1.05rem; color: #002366; margin-bottom: 0.6rem; }
.why-card-v2 p { font-size: 0.88rem; color: #64748B; line-height: 1.6; margin-bottom: 1rem; }
.why-stat {
    font-size: 0.75rem;
    font-weight: 800;
    color: #FF6600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(145deg, #001a4d 0%, #002366 60%, #003399 100%);
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    margin-top: 3rem;
}
.testi-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
}
.testi-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.testi-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-author img {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
}
.testi-author strong { display: block; color: white; font-size: 0.9rem; }
.testi-author span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ── CTA PREMIUM ── */
.cta-premium-section { padding: 5rem 0 6rem; background: #F8FAFC; }
.cta-premium-card {
    background: linear-gradient(135deg, #002366 0%, #001a4d 50%, #003399 100%);
    border-radius: 28px;
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 400px; height: 200px;
    background: radial-gradient(ellipse, rgba(255,102,0,0.3), transparent 70%);
    pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFB400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
}
.cta-premium-card h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: white;
    margin-bottom: 1rem;
}
.cta-premium-card p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-btn-main {
    background: linear-gradient(135deg, #FF6600, #E65C00);
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}
.cta-btn-main:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,102,0,0.4); }
.cta-btn-sec {
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.25);
    color: white;
    padding: 1.1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}
.cta-btn-sec:hover { background: rgba(255,255,255,0.18); }



/* ── STICKY MOBILE ── */
.sticky-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 1rem;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 900;
}
@media (max-width: 768px) {
    .sticky-mobile-bar { display: block; text-align: center; }
    .sticky-mobile-bar .btn { width: 100%; justify-content: center; }
    /* Le bouton WhatsApp ne doit pas recouvrir la barre fixe du bas */
    .whatsapp-float { bottom: 88px; }
    body { padding-bottom: 76px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .marketplace-layout { grid-template-columns: minmax(0, 1fr); }
    .filters-panel { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-bar { gap: 1rem; }
    .stat-divider { display: none; }
    .stat-item { padding: 1rem 1.5rem; }
}
@media (max-width: 600px) {
    .hero-search-bar { flex-direction: column; padding: 1rem; border-radius: 16px; }
    .search-divider { display: none; }
    .search-field { width: 100%; }
    .search-btn { width: 100%; justify-content: center; }
    .cta-premium-card { padding: 3rem 1.5rem; }
    .teacher-grid { grid-template-columns: 1fr; }
    .filters-panel { padding: 1.25rem; }
    .marketplace-layout { gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .steps-grid { flex-direction: column; align-items: center; }
    .card-body { flex-direction: column; align-items: center; text-align: center; }
    .card-meta { justify-content: center; }
    .card-tags-row { justify-content: center; }
    .card-name-row { justify-content: center; }
}
