/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #DA291C;
    --primary-dark: #B71C1C;
    --primary-light: #FF5252;
    --accent: #FF8C00;
    --accent-light: #FFC72C;
    --bg: #0f0f1a;
    --bg-card: #1a1a2e;
    --bg-card-hover: #222240;
    --bg-section: #16213e;
    --text: #e0e0e0;
    --text-light: #9e9e9e;
    --text-muted: #6b6b80;
    --border: #2a2a45;
    --border-light: #3a3a55;
    --success: #4CAF50;
    --info: #00A6ED;
    --warning: #FFC72C;
    --font: 'Tajawal', sans-serif;
    --font-display: 'Bebas Neue', cursive;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 50px;
    --shadow: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 30px rgba(218,41,28,0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TYPOGRAPHY ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}
.btn-order {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #1a1a2e;
    font-weight: 800;
}
.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.3);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15,15,26,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text);
}
.logo-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 12px;
    color: #1a1a2e;
    font-size: 1.2rem;
}
.logo-highlight { color: var(--accent); }
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-link {
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.hamburger span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.menu-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 998; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(218,41,28,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,140,0,0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(218,41,28,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #1a1a2e;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 500px;
}
.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}
.hero-stat {
    text-align: center;
}
.hero-stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-display);
    letter-spacing: 1px;
}
.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.hero-cta {
    display: flex;
    gap: 15px;
}
/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-burger-card {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--border);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(218,41,28,0.1);
    animation: float 6s ease-in-out infinite;
}
.hero-main-burger {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}
.hero-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    box-shadow: var(--shadow);
    animation: float 5s ease-in-out infinite;
    white-space: nowrap;
}
.hero-floating-badge i { color: var(--accent); }
.badge-1 { top: 30px; right: -10px; animation-delay: 0s; }
.badge-2 { bottom: 60px; left: -20px; animation-delay: 1.5s; }
.badge-3 { top: 50%; left: -30px; animation-delay: 3s; }
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ===== CATEGORIES PREVIEW ===== */
.categories-preview {
    padding: 80px 0;
    background: var(--bg-section);
}
.cat-preview-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.cat-preview-card {
    text-align: center;
    padding: 30px 15px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}
.cat-preview-card:hover {
    transform: translateY(-8px);
    border-color: var(--cat-color, var(--accent));
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.cat-preview-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cat-color, var(--accent));
    border-radius: 50%;
    font-size: 1.5rem;
    color: #fff;
    transition: var(--transition);
}
.cat-preview-card:hover .cat-preview-icon {
    transform: scale(1.1) rotate(-5deg);
}
.cat-preview-card h3 { font-size: 1rem; margin-bottom: 5px; }
.cat-preview-card p { font-size: 0.8rem; color: var(--text-muted); }

/* ===== OFFERS ===== */
.offers-section {
    padding: 80px 0;
    background: var(--bg);
}
.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.offer-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}
.offer-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.offer-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--bg-card), #2a1a1e);
    border-color: var(--accent);
}
.offer-tag {
    display: inline-block;
    padding: 4px 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #1a1a2e;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 0 0 8px 0;
}
.offer-content {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
}
.offer-text { flex: 1; }
.offer-text h3 { font-size: 1.3rem; margin-bottom: 8px; }
.offer-text p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 12px; }
.offer-price { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.offer-old { text-decoration: line-through; color: var(--text-muted); font-size: 0.9rem; }
.offer-new { color: var(--primary); font-weight: 800; font-size: 1.3rem; }
.offer-image { flex-shrink: 0; }
.offer-image img { width: 120px; height: 120px; border-radius: var(--radius-sm); object-fit: cover; }
.offer-card.featured .offer-image img { width: 160px; height: 160px; }

/* ===== HOW IT WORKS ===== */
.how-section {
    padding: 80px 0;
    background: var(--bg-section);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.step-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.step-num {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #1a1a2e;
    font-weight: 900;
    border-radius: 50%;
    font-size: 1.1rem;
}
.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--accent);
    border: 2px solid var(--border);
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ===== FEATURED PRODUCTS ===== */
.featured-products {
    padding: 80px 0;
    background: var(--bg);
}
.fp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.fp-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}
.fp-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: var(--shadow); }
.fp-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #1a1a2e;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    z-index: 2;
}
.fp-img-wrap {
    height: 200px;
    overflow: hidden;
}
.fp-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.fp-card:hover .fp-img-wrap img { transform: scale(1.08); }
.fp-info { padding: 15px; }
.fp-info h3 { font-size: 1rem; margin-bottom: 5px; }
.fp-info p { font-size: 0.8rem; color: var(--text-light); margin-bottom: 12px; line-height: 1.5; }
.fp-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fp-price { font-weight: 800; color: var(--accent); font-size: 1.05rem; }
.fp-add-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    transition: var(--transition);
}
.fp-add-btn:hover { background: var(--primary-dark); transform: rotate(90deg); }

/* ===== APP SECTION ===== */
.app-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
}
.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.app-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.app-text h2 { font-size: 2.2rem; margin-bottom: 15px; }
.app-text p { color: var(--text-light); margin-bottom: 25px; line-height: 1.8; }
.app-buttons { display: flex; gap: 15px; }
.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-weight: 700;
    transition: var(--transition);
    font-size: 0.9rem;
}
.app-btn:hover { border-color: var(--accent); transform: translateY(-2px); }
.app-btn i { font-size: 1.3rem; color: var(--accent); }
.phone-mockup {
    width: 220px;
    margin: 0 auto;
    background: #1a1a2e;
    border-radius: 30px;
    padding: 10px;
    border: 2px solid var(--border);
    box-shadow: var(--shadow-lg);
}
.phone-screen { border-radius: 22px; overflow: hidden; background: #0f0f1a; }
.phone-header {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}
.phone-body { padding: 15px; }
.phone-order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}
.phone-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-weight: 800;
    font-size: 1rem;
    color: var(--accent);
}
.phone-order-btn {
    text-align: center;
    padding: 12px;
    background: var(--accent);
    color: #1a1a2e;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.9rem;
}

/* ===== ABOUT ===== */
.about-section {
    padding: 80px 0;
    background: var(--bg-section);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-image { border-radius: var(--radius); overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent);
    color: #1a1a2e;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.about-text h2 { font-size: 2.2rem; margin-bottom: 15px; }
.about-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 25px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-feature { display: flex; align-items: center; gap: 10px; }
.about-feature i { color: var(--success); font-size: 1.1rem; }
.about-feature span { font-weight: 500; }

/* ===== CONTACT ===== */
.contact-section {
    padding: 80px 0;
    background: var(--bg);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info h2 { font-size: 2rem; margin-bottom: 10px; }
.contact-info > p { color: var(--text-light); margin-bottom: 30px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 15px; }
.ci-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--accent);
    font-size: 1.2rem;
}
.contact-item h4 { font-size: 0.9rem; margin-bottom: 3px; color: var(--text-light); }
.contact-item a, .contact-item span { font-weight: 700; font-size: 0.95rem; }
.contact-item a { color: var(--accent); }
.contact-form-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 35px;
    border: 1px solid var(--border);
}
.contact-form h3 { font-size: 1.3rem; margin-bottom: 20px; }
.form-group { margin-bottom: 15px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255,140,0,0.1);
}
.form-group textarea { resize: vertical; }

/* ===== FOOTER ===== */
.footer {
    background: #0a0a14;
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 15px;
}
.footer-logo i {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 10px; color: #1a1a2e;
}
.footer-brand p { color: var(--text-light); font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-card); border-radius: 50%;
    color: var(--text-light); transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: #1a1a2e; transform: translateY(-3px); }
.footer-links h4, .footer-hours h4 { font-size: 1rem; margin-bottom: 20px; color: var(--text); }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: var(--text-light); font-size: 0.9rem; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--accent); padding-right: 5px; }
.footer-hours ul li { color: var(--text-light); font-size: 0.9rem; margin-bottom: 10px; }
.footer-delivery {
    display: flex; align-items: center; gap: 8px;
    color: var(--accent); font-weight: 700; margin-top: 20px;
}
.footer-bottom {
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #1a1a2e;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); background: var(--accent-light); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 30px; }
    .hero-stats { justify-content: center; }
    .hero-cta { justify-content: center; }
    .hero-burger-card { width: 300px; height: 300px; }
    .cat-preview-grid { grid-template-columns: repeat(3, 1fr); }
    .fp-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-burger-card { width: 240px; height: 240px; }
    .badge-1 { top: 10px; right: 0; }
    .badge-2 { bottom: 30px; left: 0; }
    .badge-3 { display: none; }
    .nav-links { display: none; position: fixed; top: 70px; right: 0; width: 280px; background: var(--bg-card); flex-direction: column; padding: 20px; gap: 5px; border-radius: 0 0 0 16px; border-left: 1px solid var(--border); border-bottom: 1px solid var(--border); z-index: 999; }
    .nav-links.open { display: flex; }
    .nav-link { padding: 12px 16px; border-radius: var(--radius-sm); }
    .nav-link:hover { background: var(--bg-card-hover); }
    .hamburger { display: flex; }
    .menu-overlay.active { display: block; }
    .cat-preview-grid { grid-template-columns: repeat(2, 1fr); }
    .offers-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .fp-grid { grid-template-columns: 1fr; }
    .app-content { grid-template-columns: 1fr; text-align: center; }
    .app-buttons { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-features { justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .section-header h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-stats { flex-wrap: wrap; justify-content: center; }
    .nav-actions .btn-sm { padding: 6px 12px; font-size: 0.75rem; }
}
