/* ==========================================
   Mostbet Pakistan Landing - CSS
   MOBILE-FIRST | RTL Urdu | Dark Luxury
   ========================================== */

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

:root {
    --gold: #daa520;
    --gold-light: #ffd700;
    --gold-dark: #b8860b;
    --bg-primary: #0a0c19;
    --bg-secondary: #0f1223;
    --bg-card: #151835;
    --text-primary: #ffffff;
    --text-secondary: #b0b5d0;
    --text-muted: #6b7099;
    --red: #ff1744;
    --gradient-gold: linear-gradient(135deg, #daa520, #ffd700, #b8860b);
    --shadow-gold: 0 0 30px rgba(218, 165, 32, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --radius: 14px;
    --radius-sm: 10px;
    --font-urdu: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', serif;
    --font-en: 'Poppins', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; direction: rtl; font-size: 16px; }

body {
    font-family: var(--font-urdu);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 2;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    padding-bottom: 70px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* === Animations === */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes glow { 0%,100% { box-shadow: 0 0 15px rgba(218,165,32,0.2); } 50% { box-shadow: 0 0 30px rgba(218,165,32,0.5); } }
@keyframes scrollArrow { 0% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: 0.3; } 100% { transform: translateY(0); opacity: 1; } }
@keyframes particleFloat { 0% { opacity: 0; transform: translateY(0) scale(0); } 10% { opacity: 0.5; transform: scale(1); } 90% { opacity: 0.2; } 100% { opacity: 0; transform: translateY(-300px) scale(0); } }

.animate-fade-in { animation: fadeIn 0.8s ease-out both; }
.animate-slide-up { animation: slideUp 0.8s ease-out both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.reveal { opacity: 0; transform: translateY(25px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === CTA Button === */
.btn-cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; background: var(--gradient-gold); color: var(--bg-primary);
    font-family: var(--font-urdu); font-size: 0.9rem; font-weight: 700;
    border: none; border-radius: 50px; cursor: pointer; transition: var(--transition);
    position: relative; overflow: hidden; text-align: center; line-height: 1.6;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-cta:active { transform: translateY(0); }
.btn-cta-large { padding: 14px 32px; font-size: 0.95rem; }
.btn-cta-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-cta-outline:hover { background: var(--gradient-gold); color: var(--bg-primary); }
.btn-pulse { position: absolute; inset: 0; border-radius: 50px; border: 2px solid var(--gold); animation: pulse 2s infinite; pointer-events: none; }

/* ============================
   HEADER - Mobile First
   ============================ */
.header {
    position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
    background: rgba(10, 12, 25, 0.94); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(218, 165, 32, 0.1); transition: var(--transition);
}
.header.scrolled { background: rgba(10, 12, 25, 0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.logo img { height: 34px; width: auto; }
.nav-desktop { display: none; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.btn-header { padding: 8px 18px; font-size: 0.78rem; }

.burger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--gold); transition: var(--transition); border-radius: 2px; }
.burger.active span:nth-child(1) { transform: rotate(45deg) translateY(10px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-10px); }

.nav-mobile { display: none; flex-direction: column; padding: 14px 16px; background: var(--bg-secondary); border-top: 1px solid rgba(218,165,32,0.1); }
.nav-mobile.open { display: flex; }
.nav-mobile-link { padding: 11px 0; color: var(--text-secondary); font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-mobile-link:hover { color: var(--gold); }
.btn-mobile-nav { margin-top: 10px; }

/* Mobile CTA Bar */
.mobile-cta-bar {
    display: block; position: fixed; bottom: 0; right: 0; left: 0; z-index: 999;
    padding: 8px 12px; background: rgba(10,12,25,0.97); backdrop-filter: blur(10px);
    border-top: 2px solid var(--gold-dark);
}
.btn-cta-mobile { width: 100%; padding: 11px 14px; font-size: 0.85rem; white-space: normal; line-height: 1.5; }

/* ============================
   HERO - Mobile First
   ============================ */
.hero { position: relative; display: flex; align-items: center; padding-top: 60px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('images/hero-bg.webp') center/cover no-repeat; z-index: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,12,25,0.5) 0%, rgba(10,12,25,0.85) 50%, rgba(10,12,25,0.98) 100%); }
.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 20px 0; width: 100%; }

.hero-badge { display: inline-block; padding: 5px 14px; background: rgba(218,165,32,0.15); border: 1px solid rgba(218,165,32,0.3); border-radius: 50px; color: var(--gold); font-size: 0.72rem; margin-bottom: 14px; }

.hero-title { font-size: 1.45rem; font-weight: 700; line-height: 1.9; margin-bottom: 10px; word-wrap: break-word; overflow-wrap: break-word; }
.hero-title-gold { color: var(--gold); font-family: var(--font-en); font-weight: 900; font-size: 1.2em; }

.hero-subtitle { font-size: 0.84rem; color: var(--text-secondary); margin: 0 auto 16px; line-height: 2; padding: 0 4px; }
.hero-subtitle br { display: none; }

.hero-bonus {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    background: rgba(218,165,32,0.08); border: 2px solid var(--gold); border-radius: var(--radius);
    padding: 14px 16px; margin: 0 auto 20px; width: calc(100% - 20px); max-width: 300px;
    animation: glow 3s ease-in-out infinite;
}
.hero-bonus-amount { text-align: center; }
.hero-bonus-percent { font-family: var(--font-en); font-size: 2.2rem; font-weight: 900; color: var(--gold-light); line-height: 1.1; display: block; }
.hero-bonus-label { display: block; font-size: 0.75rem; color: var(--text-secondary); margin-top: 2px; }
.hero-bonus-detail { display: flex; flex-direction: column; text-align: center; gap: 1px; color: var(--text-primary); font-size: 0.82rem; }

.hero-ctas { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 24px; }
.hero-promo { color: var(--text-muted); font-size: 0.76rem; }
.hero-promo strong { color: var(--gold); font-family: var(--font-en); letter-spacing: 1px; }

.hero-stats { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero-stat { text-align: center; min-width: 70px; }
.hero-stat-num { font-family: var(--font-en); font-size: 1.3rem; font-weight: 800; color: var(--gold); }
.hero-stat-label { display: block; font-size: 0.68rem; color: var(--text-muted); }

.hero-scroll-indicator { display: none; }
.scroll-arrow { width: 20px; height: 20px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); animation: scrollArrow 2s infinite; opacity: 0.5; }

/* ============================
   SECTIONS - Mobile First
   ============================ */
.section { padding: 40px 0; }
.section-header { text-align: center; margin-bottom: 28px; }
.section-tag { display: inline-block; padding: 4px 12px; background: rgba(218,165,32,0.1); border: 1px solid rgba(218,165,32,0.2); border-radius: 50px; color: var(--gold); font-size: 0.74rem; margin-bottom: 10px; }
.section-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; line-height: 1.8; word-wrap: break-word; }
.section-desc { color: var(--text-secondary); margin: 0 auto; font-size: 0.84rem; line-height: 2; }

/* === Bonuses === */
.section-bonuses { background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary)); }
.bonus-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.bonus-card { background: var(--bg-card); border: 1px solid rgba(218,165,32,0.12); border-radius: var(--radius); padding: 22px 18px; position: relative; overflow: hidden; transition: var(--transition); }
.bonus-card-main { background: linear-gradient(135deg, var(--bg-card), rgba(218,165,32,0.06)); border-color: rgba(218,165,32,0.25); }
.bonus-card-glow { position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(218,165,32,0.04) 0%, transparent 70%); pointer-events: none; }
.bonus-card-content { position: relative; z-index: 1; }
.bonus-icon { font-size: 1.8rem; margin-bottom: 10px; }
.bonus-title { font-size: 1.05rem; margin-bottom: 4px; }
.bonus-amount { font-family: var(--font-en); font-size: 1.4rem; font-weight: 800; color: var(--gold); margin-bottom: 8px; }
.bonus-text { color: var(--text-secondary); font-size: 0.82rem; line-height: 2; margin-bottom: 14px; }

/* === Games === */
.section-games { background: var(--bg-secondary); }
.games-tabs { display: flex; justify-content: center; gap: 5px; margin-bottom: 24px; flex-wrap: wrap; }
.tab-btn { padding: 7px 12px; background: var(--bg-card); border: 1px solid rgba(218,165,32,0.15); border-radius: 50px; color: var(--text-secondary); font-family: var(--font-urdu); font-size: 0.72rem; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.tab-btn:hover { border-color: rgba(218,165,32,0.4); color: var(--gold); }
.tab-btn.active { background: var(--gradient-gold); color: var(--bg-primary); border-color: transparent; font-weight: 700; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.4s ease; }
.game-panel-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.game-panel-image img { border-radius: var(--radius); border: 1px solid rgba(218,165,32,0.12); width: 100%; max-height: 220px; object-fit: cover; }
.game-panel-info h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--gold); line-height: 1.8; }
.game-panel-info p { color: var(--text-secondary); margin-bottom: 10px; line-height: 2; font-size: 0.84rem; }
.game-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.game-feature { padding: 5px 10px; background: rgba(218,165,32,0.1); border: 1px solid rgba(218,165,32,0.2); border-radius: 50px; font-size: 0.7rem; color: var(--gold); white-space: nowrap; }

/* === Steps === */
.section-register { background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary)); }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 28px; }
.step-card { background: var(--bg-card); border: 1px solid rgba(218,165,32,0.1); border-radius: var(--radius); padding: 22px 16px; text-align: center; }
.step-number { width: 44px; height: 44px; background: var(--gradient-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-en); font-size: 1.2rem; font-weight: 800; color: var(--bg-primary); margin: 0 auto 12px; }
.step-card h3 { font-size: 0.95rem; margin-bottom: 6px; color: var(--gold); }
.step-card p { color: var(--text-secondary); font-size: 0.8rem; line-height: 2; }
.steps-cta { text-align: center; }

/* === Advantages === */
.section-advantages { background: var(--bg-primary); }
.advantages-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.advantage-card { background: var(--bg-card); border: 1px solid rgba(218,165,32,0.1); border-radius: var(--radius); padding: 24px 18px; }
.advantage-icon { margin-bottom: 14px; }
.advantage-icon img { width: 48px; height: 48px; }
.advantage-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--gold); }
.advantage-card p { color: var(--text-secondary); line-height: 2; font-size: 0.84rem; }

/* === App === */
.section-app { background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary)); }
.app-grid { display: grid; grid-template-columns: 1fr; gap: 24px; text-align: center; }
.app-image { order: -1; }
.app-image img { max-width: 200px; margin: 0 auto; border-radius: var(--radius); animation: float 4s ease-in-out infinite; }
.app-info .section-tag { margin-bottom: 10px; }
.app-info .section-title { text-align: center; margin-bottom: 12px; }
.app-info p { color: var(--text-secondary); margin-bottom: 10px; line-height: 2; font-size: 0.84rem; }
.app-features { display: grid; grid-template-columns: 1fr; gap: 8px; margin: 16px 0 20px; }
.app-feature { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: var(--bg-card); border-radius: var(--radius-sm); border: 1px solid rgba(218,165,32,0.1); font-size: 0.84rem; }
.app-feature-icon { font-size: 1.2rem; flex-shrink: 0; }

/* === Payments === */
.section-payments { background: var(--bg-secondary); }
.payments-showcase { text-align: center; margin-bottom: 24px; }
.payments-showcase img { max-width: 100%; margin: 0 auto; border-radius: var(--radius); }
.payments-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.payment-card { background: var(--bg-card); border: 1px solid rgba(218,165,32,0.1); border-radius: var(--radius-sm); padding: 16px 12px; text-align: center; }
.payment-card h4 { color: var(--gold); margin-bottom: 4px; font-size: 0.88rem; }
.payment-card p { color: var(--text-secondary); font-size: 0.76rem; line-height: 1.8; }
.payments-info { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 16px; background: var(--bg-card); border-radius: var(--radius); border: 1px solid rgba(218,165,32,0.15); }
.payment-info-item { display: flex; flex-direction: column; align-items: center; gap: 3px; text-align: center; }
.payment-info-label { font-size: 0.68rem; color: var(--text-muted); }
.payment-info-value { font-family: var(--font-en); font-weight: 700; font-size: 0.88rem; color: var(--gold); }

/* === Testimonials === */
.section-testimonials { background: var(--bg-primary); }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.testimonial-card { background: var(--bg-card); border: 1px solid rgba(218,165,32,0.1); border-radius: var(--radius); padding: 22px 18px; }
.testimonial-stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 10px; letter-spacing: 3px; }
.testimonial-card p { color: var(--text-secondary); font-size: 0.84rem; line-height: 2; margin-bottom: 10px; }
.testimonial-author { color: var(--text-muted); font-size: 0.76rem; }
.testimonial-author strong { color: var(--gold); }

/* === FAQ === */
.section-faq { background: var(--bg-secondary); }
.faq-list { max-width: 100%; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(218,165,32,0.1); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 14px 0; background: none; border: none; color: var(--text-primary); font-family: var(--font-urdu); font-size: 0.88rem; cursor: pointer; transition: var(--transition); text-align: start; gap: 10px; }
.faq-question:hover { color: var(--gold); }
.faq-question span:first-child { flex: 1; }
.faq-arrow { font-size: 0.65rem; color: var(--gold); transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 14px; }
.faq-answer p { color: var(--text-secondary); line-height: 2; font-size: 0.82rem; }

/* === Final CTA === */
.section-final-cta { background: linear-gradient(135deg, rgba(218,165,32,0.08), rgba(218,165,32,0.03)); border-top: 1px solid rgba(218,165,32,0.15); border-bottom: 1px solid rgba(218,165,32,0.15); padding: 44px 0; }
.final-cta-content { text-align: center; }
.final-cta-title { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.8; }
.final-cta-text { color: var(--text-secondary); margin: 0 auto 20px; font-size: 0.86rem; line-height: 2; }
.btn-cta-final { font-size: 0.9rem; padding: 14px 28px; white-space: normal; line-height: 1.6; }
.final-cta-promo { margin-top: 10px; color: var(--text-muted); font-size: 0.78rem; }
.final-cta-promo strong { color: var(--gold); font-family: var(--font-en); letter-spacing: 1px; }

/* === Footer === */
.footer { background: var(--bg-primary); border-top: 1px solid rgba(218,165,32,0.1); padding: 36px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 24px; }
.footer-brand img { margin-bottom: 10px; height: 32px; width: auto; }
.footer-brand p { color: var(--text-muted); font-size: 0.78rem; line-height: 1.9; }
.footer-links h4 { color: var(--gold); margin-bottom: 8px; font-size: 0.88rem; }
.footer-links a { display: block; color: var(--text-muted); font-size: 0.78rem; padding: 4px 0; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { text-align: center; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { color: var(--text-muted); font-size: 0.74rem; }
.footer-disclaimer { color: var(--red) !important; margin-top: 4px; font-weight: 700; }

.particle { position: absolute; width: 3px; height: 3px; background: var(--gold); border-radius: 50%; opacity: 0; animation: particleFloat 6s linear infinite; }

/* =============================================
   TABLET (min-width: 600px)
   ============================================= */
@media (min-width: 600px) {
    .container { padding: 0 24px; }
    .hero-title { font-size: 1.9rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-subtitle br { display: inline; }
    .hero-bonus { flex-direction: row; max-width: 400px; padding: 16px 24px; gap: 16px; }
    .hero-bonus-percent { font-size: 2.6rem; }
    .hero-bonus-detail { text-align: start; }
    .hero-stats { gap: 28px; }
    .hero-stat-num { font-size: 1.5rem; }

    .section { padding: 56px 0; }
    .section-title { font-size: 1.5rem; }
    .bonus-grid { grid-template-columns: 1fr 1fr; }
    .bonus-card-main { grid-column: 1 / -1; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .payments-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
    .app-features { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .games-tabs { gap: 8px; }
    .tab-btn { padding: 9px 18px; font-size: 0.82rem; }
}

/* =============================================
   DESKTOP (min-width: 992px)
   ============================================= */
@media (min-width: 992px) {
    body { padding-bottom: 0; }
    .container { padding: 0 32px; }
    .header-inner { height: 70px; }
    .logo img { height: 42px; }
    .nav-desktop { display: flex; gap: 26px; }
    .nav-desktop a { color: var(--text-secondary); font-size: 0.9rem; transition: var(--transition); position: relative; }
    .nav-desktop a:hover { color: var(--gold); }
    .nav-desktop a::after { content: ''; position: absolute; bottom: -4px; right: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
    .nav-desktop a:hover::after { width: 100%; }
    .burger { display: none; }
    .btn-header { padding: 10px 28px; font-size: 0.88rem; }
    .mobile-cta-bar { display: none; }

    .hero { min-height: 100vh; padding-bottom: 50px; }
    .hero-content { padding: 50px 0 40px; }
    .hero-badge { font-size: 0.86rem; padding: 7px 22px; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.1rem; max-width: 660px; }
    .hero-bonus { max-width: 460px; padding: 20px 36px; }
    .hero-bonus-percent { font-size: 3rem; }
    .hero-stats { gap: 44px; }
    .hero-stat-num { font-size: 1.9rem; }
    .hero-stat-label { font-size: 0.8rem; }
    .hero-scroll-indicator { display: block; position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; }

    .section { padding: 80px 0; }
    .section-header { margin-bottom: 48px; }
    .section-title { font-size: 2.1rem; }
    .section-desc { font-size: 0.98rem; max-width: 640px; }

    .game-panel-grid { grid-template-columns: 1fr 1.3fr; gap: 36px; align-items: center; }
    .game-panel-image img { max-height: none; }
    .game-panel-info h3 { font-size: 1.35rem; }
    .game-panel-info p { font-size: 0.92rem; }

    .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .advantages-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
    .advantage-card { padding: 32px; }
    .advantage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

    .app-grid { grid-template-columns: 1fr 1.5fr; gap: 48px; text-align: start; }
    .app-image { order: 0; }
    .app-image img { max-width: 280px; }
    .app-info .section-title { text-align: start; }

    .payments-info { display: flex; justify-content: center; gap: 36px; padding: 22px; }
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .faq-list { max-width: 800px; }
    .faq-question { font-size: 1rem; padding: 18px 0; }

    .section-final-cta { padding: 80px 0; }
    .final-cta-title { font-size: 2.1rem; }
    .final-cta-text { max-width: 580px; font-size: 1rem; }
    .btn-cta-final { font-size: 1.1rem; padding: 18px 52px; }

    .footer { padding: 56px 0 28px; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; }
}

/* =============================================
   LARGE DESKTOP (min-width: 1200px)
   ============================================= */
@media (min-width: 1200px) {
    .hero-title { font-size: 3.2rem; }
    .section-title { font-size: 2.4rem; }
    .bonus-card { padding: 30px; }
    .bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
}
