@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --primary: #ff4d4d;
    --primary-dark: #e63939;
    --dark: #111111;
    --dark2: #1e1e2e;
    --whatsapp: #25D366;
    --whatsapp-dark: #1da851;
    --bg: #f5f7fa;
    --card-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --card-shadow-hover: 0 16px 40px rgba(0,0,0,0.14);
    --radius: 16px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: #333;
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--dark2);
    padding: 0 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 200;
    height: 65px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.logo {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
}
.logo span { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 5px; }

.nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.lang-switch { display: flex; gap: 5px; margin-left: 10px; }
.lang-switch a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.2s;
}
.lang-switch a:hover, .lang-switch a.active-lang {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

/* ===== HERO ===== */
.hero {
    padding: 100px 6% 90px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,77,77,0.18) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(100,100,255,0.08) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
    position: absolute;
    width: 4px; height: 4px;
    background: rgba(255,77,77,0.5);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}
.particle:nth-child(1){ top:15%; left:10%; animation-delay:0s; }
.particle:nth-child(2){ top:70%; left:80%; animation-delay:1s; }
.particle:nth-child(3){ top:40%; left:90%; animation-delay:2s; }
.particle:nth-child(4){ top:80%; left:20%; animation-delay:3s; }
.particle:nth-child(5){ top:20%; left:70%; animation-delay:1.5s; }
.particle:nth-child(6){ top:55%; left:45%; animation-delay:2.5s; }

@keyframes float {
    0%,100% { transform: translateY(0) scale(1); opacity:.5; }
    50%      { transform: translateY(-20px) scale(1.4); opacity:1; }
}

.hero-content { position: relative; z-index: 1; }

/* Fade-in animation */
.fade-in { animation: fadeIn .8s ease both; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-block;
    background: rgba(255,77,77,0.18);
    color: var(--primary);
    border: 1px solid rgba(255,77,77,0.4);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
    animation: fadeIn .6s ease both;
}

.hero h1 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    animation: fadeIn .8s .1s ease both;
}

.hero p {
    max-width: 560px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    margin-bottom: 32px;
    animation: fadeIn .8s .2s ease both;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeIn .8s .3s ease both;
}

.hero-trust {
    display: flex;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
    animation: fadeIn .8s .4s ease both;
}
.hero-trust span {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}
.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,77,77,0.4);
}

/* Pulsing CTA button */
.btn-pulse {
    animation: pulse 2.5s infinite;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,77,77,.4); }
    50%      { box-shadow: 0 0 0 10px rgba(255,77,77,0); }
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    box-shadow: none;
}

/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(135deg, var(--primary), #ff8080);
    color: white;
    text-align: center;
    padding: 36px 6%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cta-band p { font-size: 16px; font-weight: 600; opacity: .95; }
.cta-band .btn { background: white; color: var(--primary); }
.cta-band .btn:hover { background: #f5f5f5; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ===== SCROLL ANIMATION ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FEATURES ===== */
.features {
    padding: 60px 6%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}
.feature-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px 24px;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    border-bottom: 3px solid transparent;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-bottom-color: var(--primary);
}
.feature-icon { font-size: 38px; margin-bottom: 14px; }
.feature-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: #777; line-height: 1.6; }

/* ===== SECTION HEADER ===== */
.section-header {
    padding: 30px 6% 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.section-title { font-size: 28px; font-weight: 700; }
.section-title span { color: var(--primary); }
.products-count {
    font-size: 13px;
    color: #aaa;
    font-weight: 500;
    background: white;
    padding: 5px 14px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

/* ===== FILTERS BAR ===== */
.filters-bar {
    padding: 20px 6% 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

/* Search */
.search-wrap { flex: 1; min-width: 240px; position: relative; }
.search-wrap::before {
    content: '🔍';
    position: absolute;
    left: 14px; top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
}
.search-wrap input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border-radius: 12px;
    border: 2px solid #eee;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color .25s, box-shadow .25s;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.search-wrap input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255,77,77,.08);
}
.search-wrap input::placeholder { color: #bbb; }

/* Filter controls row */
.filter-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

/* Custom select wrapper */
.filter-controls select {
    appearance: none;
    -webkit-appearance: none;
    padding: 11px 36px 11px 14px;
    border-radius: 12px;
    border: 2px solid #eee;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
    cursor: pointer;
    outline: none;
    transition: all .25s;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.filter-controls select:hover { border-color: #ccc; }
.filter-controls select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255,77,77,.08);
}

/* Favoris button */
.fav-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 18px;
    border-radius: 12px;
    border: 2px solid #eee;
    background: white;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    white-space: nowrap;
}
.fav-toggle-btn:hover {
    border-color: #ffb3b3;
    color: var(--primary);
    background: #fff5f5;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(255,77,77,.12);
}
.fav-toggle-btn.active {
    background: linear-gradient(135deg, #ff4d4d, #ff8080);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 14px rgba(255,77,77,.35);
}
.fav-toggle-btn.active:hover { transform: translateY(-1px); }

/* ===== GRID ===== */
.grid {
    padding: 20px 6% 60px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* ===== CARD ===== */
.card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

/* ===== SLIDER ===== */
.slider {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: #f0f0f0;
}
.slider img.slide {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: none;
    transition: opacity .3s;
}
.slider img.slide.active { display: block; }
.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}
.slider-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.slider-dot.active { background: white; transform: scale(1.3); }
.slider-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: .3px;
}

/* Favorite button on card */
.fav-btn {
    position: absolute;
    top: 10px; right: 10px;
    background: rgba(255,255,255,.92);
    border: none;
    border-radius: 50%;
    width: 36px; height: 36px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
    transition: transform .2s, background .2s;
    z-index: 3;
}
.fav-btn:hover { transform: scale(1.2); background: white; }

/* Slider link wrapper */
.slider-link { display: block; text-decoration: none; }

/* Hover overlay on image */
.slider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
    z-index: 1;
}
.slider-overlay span {
    background: white;
    color: #222;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(8px);
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.card:hover .slider-overlay { background: rgba(0,0,0,.28); }
.card:hover .slider-overlay span { opacity: 1; transform: translateY(0); }

/* ===== CARD BODY ===== */
.card-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.card-title { font-size: 15px; font-weight: 600; color: #1a1a1a; line-height: 1.35; }
.card-desc { font-size: 13px; color: #aaa; line-height: 1.5; flex: 1; }

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 6px 0 2px;
}
.price { color: var(--primary); font-weight: 700; font-size: 21px; }
.price small { font-size: 13px; font-weight: 500; }
.views-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: #ccc;
    font-weight: 500;
    background: #f8f8f8;
    padding: 3px 8px;
    border-radius: 20px;
}

/* ===== CARD ACTIONS ===== */
.card-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

/* Voir le détail — styled */
.btn-detail {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    transition: all .25s;
    border: 2px solid transparent;
    letter-spacing: .2px;
}
.btn-detail:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
}

/* ===== WHATSAPP ===== */
.whatsapp {
    flex: 1.6;
    background: var(--whatsapp);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 12px;
    color: white;
    text-decoration: none;
    transition: all .25s;
    letter-spacing: .2px;
}
.whatsapp svg { width: 14px; height: 14px; flex-shrink: 0; }
.whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37,211,102,.4);
}


/* ===== PRIX SUR DEMANDE ===== */
.price-demand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #25D366, #1da851);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(37,211,102,.3);
}
.price-box-demand {
    display: flex;
    align-items: center;
    margin: 16px 0;
}
.price-box-demand span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366, #1da851);
    color: white;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #222;
    color: white;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
    z-index: 9999;
    white-space: nowrap;
    box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===== FOOTER ===== */
footer.footer, .footer {
    background: var(--dark2);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 32px 6%;
    font-size: 13px;
}
.footer strong { color: white; }

/* ===== ADMIN ===== */
.admin-container { width: 92%; max-width: 1100px; margin: 30px auto 60px; }

.admin-form {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
}
.admin-form h2 { margin-bottom: 22px; font-size: 20px; color: var(--dark); }

.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1.5px solid #e0e0e0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    background: #fafafa;
}
.admin-form input:focus,
.admin-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,77,77,.06);
    background: white;
}
.admin-form textarea { height: 90px; resize: vertical; }

.admin-form button, .btn-admin {
    background: var(--dark);
    color: white;
    padding: 13px 26px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all .2s;
}
.admin-form button:hover, .btn-admin:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,77,77,.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}
.stat-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: transform .2s;
}
.stat-card:hover { transform: translateY(-3px); }
.stat-card .stat-icon { font-size: 30px; margin-bottom: 8px; }
.stat-card h4 { font-size: 12px; color: #aaa; font-weight: 500; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.stat-card .stat-num { font-size: 28px; font-weight: 700; color: var(--dark); }

.table-container {
    background: white;
    padding: 26px;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    overflow-x: auto;
}

table { width: 100%; border-collapse: collapse; }
thead tr { border-bottom: 2px solid #f0f0f0; }
th {
    text-align: left;
    padding: 10px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: .5px;
}
td {
    padding: 14px 12px;
    border-bottom: 1px solid #f8f8f8;
    font-size: 14px;
    vertical-align: middle;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: #fafafa; }

.badge-views {
    background: #f5f5f5;
    color: #666;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.action-btn {
    padding: 6px 12px;
    border-radius: 7px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all .2s;
    display: inline-block;
    margin-right: 4px;
}
.btn-edit  { background: #f3f4f6; color: #444; }
.btn-edit:hover  { background: #e5e7eb; }
.delete, .btn-delete { background: #fff0f0; color: #c00; }
.btn-delete:hover, .delete:hover { background: #ffe0e0; }

/* ===== LOGIN ===== */
.login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
}
.login-box {
    background: white;
    padding: 44px 38px;
    border-radius: 20px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
    text-align: center;
}
.login-box .logo { color: var(--dark); font-size: 24px; margin-bottom: 8px; display: block; }
.login-box p { color: #aaa; font-size: 14px; margin-bottom: 26px; }
.login-error { color: var(--primary); font-size: 13px; margin-bottom: 12px; }

/* ===== RTL ===== */
html[dir="rtl"] body { direction: rtl; text-align: right; }
html[dir="rtl"] .navbar { flex-direction: row-reverse; }
html[dir="rtl"] .nav-links { flex-direction: row-reverse; }
html[dir="rtl"] th { text-align: right; }
html[dir="rtl"] .action-btn { margin-right: 0; margin-left: 4px; }
html[dir="rtl"] .slider-badge { left: auto; right: 12px; }
html[dir="rtl"] .fav-btn { right: auto; left: 10px; }
html[dir="rtl"] .hero-trust { flex-direction: row-reverse; }

/* ===== MOBILE ===== */
@media(max-width: 768px) {
    .menu-toggle { display: block; }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px; right: 0;
        background: var(--dark2);
        width: 220px;
        padding: 15px;
        border-radius: 0 0 0 16px;
        box-shadow: -5px 10px 30px rgba(0,0,0,.3);
        z-index: 199;
    }
    .lang-switch {
        position: absolute;
        top: 65px; left: 0;
        margin: 15px;
        display: none;
        z-index: 199;
    }
    .nav-links.active  { display: flex; }
    .lang-switch.active { display: flex; }

    .hero { text-align: center; padding: 70px 6% 60px; }
    .hero h1 { font-size: 30px; }
    .hero p  { font-size: 15px; }
    .hero-btns { justify-content: center; }
    .hero::after { display: none; }
    .hero-trust { justify-content: center; }

    .features { grid-template-columns: 1fr 1fr; padding: 30px 5%; }
    .grid { grid-template-columns: 1fr; padding: 16px 5% 40px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }

    .filters-bar { padding: 14px 5% 0; }
    .search-wrap { min-width: 100%; }
    .filter-controls { width: 100%; }
    .filter-controls select { flex: 1; min-width: 0; }

    .cta-band { flex-direction: column; gap: 16px; }

    .section-header { padding: 20px 5% 0; }
}

@media(max-width: 480px) {
    .features { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 26px; }
}
