/* ===========================
   eSports ARG — Main CSS
   Red/White Theme, Grid-heavy layout
   =========================== */

:root {
  --red: #e63329;
  --red-dark: #b8221a;
  --red-light: rgba(230,51,41,0.12);
  --bg: #ffffff;
  --bg-off: #f7f7f8;
  --bg-dark: #0f0f14;
  --bg-dark2: #1a1a22;
  --text: #0f0f14;
  --text-light: #5a5a72;
  --border: #e5e5e8;
  --border-dark: #252532;
  --font-head: 'Barlow Condensed', 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 10px;
  --transition: 0.28s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--red); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-block; background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase; padding: 14px 34px; border-radius: 4px; transition: var(--transition); border: 2px solid var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }
.btn-outline { display: inline-block; background: transparent; color: var(--red); font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase; padding: 14px 34px; border-radius: 4px; border: 2px solid var(--red); transition: var(--transition); }
.btn-outline:hover { background: var(--red); color: #fff; }
.btn-white { display: inline-block; background: #fff; color: var(--red); font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase; padding: 14px 34px; border-radius: 4px; border: 2px solid #fff; transition: var(--transition); }
.btn-white:hover { background: transparent; color: #fff; }
.btn-nav { display: inline-block; background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; padding: 9px 22px; border-radius: 4px; transition: var(--transition); }
.btn-nav:hover { background: var(--red-dark); }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--bg-dark); padding: 0; border-bottom: 3px solid var(--red); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; height: 64px; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-size: 24px; font-weight: 800; color: #fff; letter-spacing: 1px; }
.logo-e { color: var(--red); }
.logo-badge { background: var(--red); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 2px; padding: 2px 8px; border-radius: 3px; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-link { padding: 8px 14px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: rgba(255,255,255,0.65); border-radius: 4px; transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active { border-bottom: 2px solid var(--red); border-radius: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }

/* ===== SECTION LABELS ===== */
.section-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 3px; color: var(--red); text-transform: uppercase; margin-bottom: 12px; }
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--red); }
.section-header h2 { font-family: var(--font-head); font-size: clamp(30px, 4vw, 48px); font-weight: 800; line-height: 1.1; color: var(--text); }
.section-header.center { text-align: center; margin-bottom: 52px; }
.section-header.center .section-label { justify-content: center; }
.section-header.center .section-label::before { display: none; }

/* ===== HERO ===== */
.hero { min-height: 100vh; background: var(--bg-dark); position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; overflow: hidden; padding-top: 64px; }
.hero-left { padding: 80px 40px 80px 64px; position: relative; z-index: 2; }
.hero-right { position: relative; height: 100%; min-height: 600px; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; }
.hero-right::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--bg-dark) 0%, transparent 40%); }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 3px; margin-bottom: 24px; }
.hero-title { font-family: var(--font-head); font-size: clamp(48px, 6vw, 84px); font-weight: 900; line-height: 0.95; color: #fff; margin-bottom: 24px; text-transform: uppercase; }
.hero-title .line2 { color: var(--red); display: block; }
.hero-desc { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 36px; max-width: 480px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-numbers { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.hero-num { border-left: 3px solid var(--red); padding-left: 16px; }
.hero-num strong { display: block; font-family: var(--font-head); font-size: 36px; font-weight: 800; color: #fff; line-height: 1; }
.hero-num span { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }

/* ===== TICKER ===== */
.ticker-bar { background: var(--red); padding: 10px 0; overflow: hidden; }
.ticker-track { display: flex; gap: 60px; animation: ticker 20s linear infinite; white-space: nowrap; }
.ticker-item { font-family: var(--font-head); font-size: 14px; font-weight: 700; letter-spacing: 2px; color: #fff; text-transform: uppercase; display: flex; align-items: center; gap: 16px; }
.ticker-item::after { content: '★'; color: rgba(255,255,255,0.5); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== ABOUT ===== */
.about-section { padding: 100px 0; background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.about-images { position: relative; }
.about-img-main { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-img-float { position: absolute; bottom: -30px; right: -30px; width: 200px; aspect-ratio: 1; object-fit: cover; border: 6px solid var(--bg); border-radius: var(--radius); }
.about-content { padding: 60px 60px 60px 80px; display: flex; flex-direction: column; justify-content: center; }
.about-content h2 { font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.about-content p { color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }
.about-list { list-style: none; margin: 24px 0; }
.about-list li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.about-list li i { color: var(--red); width: 20px; }

/* ===== SERVICES ===== */
.services-section { padding: 100px 0; background: var(--bg-dark); }
.services-section .section-header h2 { color: #fff; }
.services-mega-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border-dark); margin-top: 0; }
.service-mega-card { background: var(--bg-dark2); padding: 36px 28px; transition: var(--transition); cursor: default; }
.service-mega-card:hover { background: var(--red); }
.service-mega-card:hover .service-mega-desc { color: rgba(255,255,255,0.8); }
.service-mega-card:hover .service-mega-icon { background: rgba(255,255,255,0.15); color: #fff; }
.service-mega-card:hover .service-mega-link { color: #fff; }
.service-mega-icon { width: 56px; height: 56px; background: var(--red-light); color: var(--red); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; transition: var(--transition); }
.service-mega-card h3 { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.service-mega-desc { color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 20px; line-height: 1.6; transition: var(--transition); }
.service-mega-link { color: var(--red); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; transition: var(--transition); }

/* ===== GALLERY MOSAIC ===== */
.gallery-section { padding: 100px 0; background: var(--bg-off); }
.gallery-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 240px 240px; gap: 8px; }
.gm-item { overflow: hidden; border-radius: var(--radius); position: relative; }
.gm-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gm-item:hover img { transform: scale(1.06); }
.gm-item:nth-child(1) { grid-column: 1/6; grid-row: 1/3; }
.gm-item:nth-child(2) { grid-column: 6/9; }
.gm-item:nth-child(3) { grid-column: 9/13; }
.gm-item:nth-child(4) { grid-column: 6/10; }
.gm-item:nth-child(5) { grid-column: 10/13; }

/* ===== PRICING STRIP ===== */
.pricing-section { padding: 100px 0; background: var(--bg); }
.pricing-strip { display: grid; grid-template-columns: repeat(3,1fr); border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.price-block { padding: 40px 32px; border-right: 1px solid var(--border); text-align: center; transition: var(--transition); }
.price-block:last-child { border-right: none; }
.price-block.highlight { background: var(--bg-dark); border-color: var(--bg-dark); }
.price-block.highlight .price-name, .price-block.highlight .price-amount, .price-block.highlight .price-desc { color: #fff; }
.price-block.highlight .price-per { color: rgba(255,255,255,0.5); }
.price-name { font-family: var(--font-head); font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 16px; }
.price-amount { font-family: var(--font-head); font-size: 60px; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 4px; }
.price-per { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }
.price-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 28px; }
.price-features { list-style: none; text-align: left; margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }
.price-features li { font-size: 14px; display: flex; align-items: center; gap: 10px; }
.price-features li i { color: var(--red); font-size: 12px; }

/* ===== EVENTS ===== */
.events-section { padding: 100px 0; background: var(--bg-dark); }
.events-section .section-header h2 { color: #fff; }
.events-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.event-featured { position: relative; overflow: hidden; border-radius: var(--radius); }
.event-featured img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }
.event-featured-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,15,20,0.95) 30%, rgba(15,15,20,0.3) 100%); padding: 32px; display: flex; flex-direction: column; justify-content: flex-end; }
.event-tag { display: inline-block; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 2px; padding: 4px 12px; border-radius: 3px; text-transform: uppercase; margin-bottom: 12px; width: fit-content; }
.event-featured-title { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.event-featured-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.event-featured-meta span { font-size: 13px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; }
.event-featured-meta i { color: var(--red); }
.events-side { display: flex; flex-direction: column; gap: 12px; }
.event-side-card { background: var(--bg-dark2); border-radius: var(--radius); overflow: hidden; display: flex; gap: 0; transition: var(--transition); }
.event-side-card:hover { border-left: 3px solid var(--red); }
.event-side-img { width: 110px; flex-shrink: 0; }
.event-side-img img { width: 100%; height: 100%; object-fit: cover; }
.event-side-body { padding: 16px; flex: 1; }
.event-side-body .event-tag { font-size: 9px; padding: 2px 8px; margin-bottom: 8px; }
.event-side-body h4 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.event-side-body p { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ===== WHY US ===== */
.why-section { padding: 100px 0; background: var(--bg-off); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-image { position: relative; }
.why-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }
.why-badge { position: absolute; top: -20px; right: -20px; background: var(--red); color: #fff; padding: 20px; border-radius: var(--radius); text-align: center; }
.why-badge strong { display: block; font-family: var(--font-head); font-size: 36px; font-weight: 900; line-height: 1; }
.why-badge span { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { width: 48px; height: 48px; background: var(--red-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--red); flex-shrink: 0; }
.why-item h4 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.why-item p { color: var(--text-light); font-size: 14px; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 80px 0; background: var(--red); }
.testimonials-section .section-label { color: rgba(255,255,255,0.7); }
.testimonials-section .section-label::before { background: rgba(255,255,255,0.5); }
.testimonials-section .section-header h2 { color: #fff; }
.testimonials-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial { background: rgba(255,255,255,0.12); border-radius: var(--radius); padding: 28px; border: 1px solid rgba(255,255,255,0.15); }
.testimonial p { color: rgba(255,255,255,0.9); font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-info strong { display: block; color: #fff; font-size: 15px; }
.testimonial-info span { color: rgba(255,255,255,0.6); font-size: 13px; }
.stars-white { color: #fff; margin-bottom: 12px; font-size: 13px; }

/* ===== CTA STRIP ===== */
.cta-strip { background: var(--bg-dark); padding: 80px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-inner h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: #fff; line-height: 1.1; }
.cta-inner h2 em { color: var(--red); font-style: normal; }
.cta-inner p { color: rgba(255,255,255,0.5); margin-top: 8px; }
.cta-right { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-dark); border-top: 3px solid var(--red); padding: 60px 0 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo-wrap .nav-logo { margin-bottom: 16px; }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 6px; background: var(--bg-dark2); border: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: var(--transition); font-size: 15px; }
.footer-social a:hover { background: var(--red); color: #fff; border-color: var(--red); }
.footer-col h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #fff; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); font-size: 14px; padding: 5px 0; transition: var(--transition); }
.footer-col a:hover { color: var(--red); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 10px; }
.footer-contact-item i { color: var(--red); margin-top: 2px; width: 16px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid var(--border-dark); padding-top: 20px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.3); }

/* ===== PAGE HERO ===== */
.page-hero { padding-top: 64px; background: var(--bg-dark); position: relative; overflow: hidden; }
.page-hero-inner { padding: 80px 0 60px; position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(36px, 6vw, 72px); font-weight: 900; color: #fff; text-transform: uppercase; line-height: 1; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 18px; max-width: 600px; }
.page-hero-stripe { height: 4px; background: var(--red); }

/* ===== CONTENT PAGES ===== */
.content-section { padding: 80px 0; }
.content-section h2 { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: var(--red); margin-bottom: 16px; }
.content-section h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin: 24px 0 12px; }
.content-section p { color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }
.content-section ul { list-style: none; margin-bottom: 16px; }
.content-section ul li { color: var(--text-light); padding: 6px 0 6px 24px; position: relative; }
.content-section ul li::before { content: '→'; position: absolute; left: 0; color: var(--red); }

/* ===== CONTACT ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: 0 4px 32px rgba(0,0,0,0.06); }
.contact-form-box h3 { font-family: var(--font-head); font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.contact-form-box p { color: var(--text-light); font-size: 14px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: var(--bg-off); border: 1px solid var(--border); border-radius: 6px; padding: 11px 14px; color: var(--text); font-family: var(--font-body); font-size: 15px; outline: none; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.contact-info-side { display: flex; flex-direction: column; gap: 20px; }
.c-info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.c-icon { width: 44px; height: 44px; background: var(--red-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 18px; flex-shrink: 0; }
.c-info-card h4 { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.c-info-card p { color: var(--text-light); font-size: 14px; }
.map-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.map-box iframe { width: 100%; height: 200px; border: none; filter: saturate(0.8); }
.map-box-footer { padding: 14px 16px; background: var(--bg-off); font-size: 13px; color: var(--text-light); }

/* ===== COOKIE ===== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--bg-dark); border-top: 3px solid var(--red); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cookie-banner p { font-size: 14px; color: rgba(255,255,255,0.7); }
.cookie-banner a { color: var(--red); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; }
.cookie-accept { background: var(--red); color: #fff; border: none; padding: 9px 22px; border-radius: 4px; font-weight: 700; cursor: pointer; font-size: 14px; }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid var(--border-dark); padding: 9px 22px; border-radius: 4px; cursor: pointer; font-size: 14px; }
.cookie-banner.hidden { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 80px 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-content { padding: 40px 0 0; }
  .about-images { padding-bottom: 40px; }
  .about-img-float { bottom: 0; right: 0; width: 120px; }
  .services-mega-grid { grid-template-columns: 1fr 1fr; }
  .gallery-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gm-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  .pricing-strip { grid-template-columns: 1fr; border: none; gap: 16px; }
  .price-block { border-right: none; border: 2px solid var(--border); border-radius: var(--radius); }
  .events-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-row { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--bg-dark); flex-direction: column; align-items: center; justify-content: center; gap: 8px; z-index: 999; }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 20px; padding: 12px 24px; }
  .btn-nav { display: none; }
  .hamburger { display: flex; z-index: 1000; }
  .services-mega-grid { grid-template-columns: 1fr; }
  .testimonials-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .hero-numbers { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 42px; }
  .hero-numbers { grid-template-columns: 1fr; }
}
