/* ============================================
   VRTeamArena — main stylesheet
   Color palette:
   --c-bg:       #0D0D1A  (deep space dark)
   --c-surface:  #131326  (card / section bg)
   --c-accent:   #00D4FF  (electric cyan)
   --c-red:      #FF4D6D  (arena red)
   --c-text:     #E8E8F0  (light body)
   --c-muted:    #6B6B8A  (muted labels)
   ============================================ */

:root {
  --c-bg:      #0D0D1A;
  --c-surface: #131326;
  --c-accent:  #00D4FF;
  --c-red:     #FF4D6D;
  --c-text:    #E8E8F0;
  --c-muted:   #6B6B8A;
  --c-border:  rgba(0, 212, 255, 0.18);
  --radius:    8px;
  --max-w:     1180px;
}

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

html { scroll-behavior: smooth; background: var(--c-bg); }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── UTILITY ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-accent);
  border: 1px solid var(--c-accent);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: fit-content;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-align: center;
}
.section-sub {
  margin-top: 14px;
  color: var(--c-muted);
  font-size: 16px;
  max-width: 560px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-accent);
  color: #0D0D1A;
}
.btn-outline {
  background: transparent;
  color: var(--c-accent);
  border: 1.5px solid var(--c-accent);
}
.divider { width: 48px; height: 3px; background: var(--c-accent); margin-bottom: 28px; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,26,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-wrap img { width: 44px; height: 44px; }
.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .02em;
  color: #fff;
}
.brand-name span { color: var(--c-accent); }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-muted);
  letter-spacing: .04em;
}
.site-nav a:hover { color: var(--c-text); }
.nav-cta {
  background: var(--c-accent);
  color: #0D0D1A !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 14px;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
}

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--c-bg);
  z-index: 0;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}
.hero-glow {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,.12) 0%, transparent 70%);
  z-index: 1;
}
.hero-glow-red {
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,77,109,.08) 0%, transparent 70%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-text {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,.1);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: 28px;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}
.hero-title em { font-style: normal; color: var(--c-accent); }
.hero-desc {
  font-size: 18px;
  color: var(--c-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat {}
.hero-stat-num {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.hero-stat-num span { color: var(--c-accent); }
.hero-stat-label {
  font-size: 13px;
  color: var(--c-muted);
  margin-top: 4px;
}
.hero-visual {
  position: relative;
}
.hero-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  aspect-ratio: 4/3;
  background: var(--c-surface);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-float-badge {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 14px 20px;
  min-width: 190px;
}
.hfb-label { font-size: 11px; color: var(--c-muted); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.hfb-val { font-size: 22px; font-weight: 800; color: #fff; margin-top: 4px; }
.hfb-val span { color: var(--c-accent); }

/* ── FEATURES ── */
.features { padding: 100px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.feat-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 32px 28px;
}
.feat-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,212,255,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--c-accent);
}
.feat-icon svg { width: 24px; height: 24px; }
.feat-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.feat-desc { font-size: 14px; color: var(--c-muted); line-height: 1.6; }

/* ── HOW IT WORKS ── */
.how { padding: 100px 0; background: var(--c-surface); }
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-border);
}
.how-step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(0,212,255,.1);
  border: 1px solid var(--c-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--c-accent);
}
.step-body {}
.step-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.step-desc { font-size: 14px; color: var(--c-muted); line-height: 1.6; }
.how-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  aspect-ratio: 3/4;
  background: var(--c-bg);
}
.how-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── PACKAGES (PRODUCTS) ── */
.packages { padding: 100px 0; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.pkg-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pkg-card.featured {
  border-color: var(--c-accent);
  position: relative;
}
.pkg-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--c-accent);
  color: #0D0D1A;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.pkg-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--c-bg);
  overflow: hidden;
  border-bottom: 1px solid var(--c-border);
}
.pkg-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pkg-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.pkg-name { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.pkg-desc { font-size: 14px; color: var(--c-muted); line-height: 1.6; margin-bottom: 20px; flex: 1; }
.pkg-includes { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.pkg-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--c-text); }
.pkg-item svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--c-accent); }
.pkg-price { font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 20px; }
.pkg-price small { font-size: 14px; font-weight: 400; color: var(--c-muted); }
.pkg-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
}
.pkg-btn-accent { background: var(--c-accent); color: #0D0D1A; }
.pkg-btn-outline { border: 1.5px solid var(--c-accent); color: var(--c-accent); }

/* ── STATS / SOCIAL PROOF ── */
.stats-bar {
  padding: 72px 0;
  background: var(--c-accent);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-block {}
.stat-num {
  font-size: 48px;
  font-weight: 900;
  color: #0D0D1A;
  line-height: 1;
}
.stat-desc {
  font-size: 15px;
  color: rgba(13,13,26,.7);
  margin-top: 6px;
  font-weight: 500;
}

/* ── GALLERY ── */
.gallery { padding: 100px 0; background: var(--c-surface); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 56px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
}
.gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.gallery-item.large .gallery-img {
  height: 260px;
}
.gallery-item.large { grid-column: span 2; aspect-ratio: 2/1; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 100px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testi-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 32px 28px;
}
.testi-quote { font-size: 15px; color: var(--c-text); line-height: 1.7; margin-bottom: 24px; }
.testi-quote::before { content: '"'; color: var(--c-accent); font-size: 24px; line-height: 0; vertical-align: -8px; margin-right: 4px; }
.testi-author {}
.testi-name { font-size: 15px; font-weight: 700; color: #fff; }
.testi-role { font-size: 13px; color: var(--c-muted); margin-top: 2px; }

/* ── FAQ ── */
.faq { padding: 100px 0; background: var(--c-surface); }
.faq-list { max-width: 760px; margin: 56px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--c-accent);
}
.faq-question.open svg { transform: rotate(45deg); }
.faq-answer {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
}
.faq-answer.open { max-height: 300px; padding-bottom: 20px; }

/* ── CONTACTS ── */
.contacts { padding: 100px 0; }
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
}
.contact-items { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(0,212,255,.1);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-label { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 4px; }
.contact-value { font-size: 16px; font-weight: 600; color: #fff; }
.contact-value a { color: #fff; }
.contact-value a:hover { color: var(--c-accent); }
.map-placeholder {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.map-placeholder svg { opacity: .3; }

/* ── FOOTER ── */
.site-footer {
  background: #07070F;
  border-top: 1px solid var(--c-border);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--c-border);
}
.footer-brand-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 12px 0 12px;
}
.footer-brand-name span { color: var(--c-accent); }
.footer-desc { font-size: 14px; color: var(--c-muted); line-height: 1.65; }
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--c-muted); }
.footer-links a:hover { color: var(--c-text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 13px;
  color: var(--c-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { color: var(--c-muted); }
.footer-legal a:hover { color: var(--c-text); }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,13,26,.98);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 22px;
  font-weight: 700;
  color: var(--c-text);
}
.mobile-nav a:hover { color: var(--c-accent); }
.mobile-nav .close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--c-text);
  cursor: pointer;
}
.mobile-nav .close-btn svg { width: 28px; height: 28px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-img-wrap { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .map-placeholder { max-width: 100%; }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .burger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

/* ── COOKIE BANNER (UPDATED) ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: 24px;
  z-index: 9999;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.cookie-banner.hidden { display: none; }

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 280px;
}

.cookie-banner-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}

.cookie-banner-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-muted);
  margin: 0;
}

.cookie-banner-text a {
  color: var(--c-accent);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 18px;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.cookie-btn-accept {
  background: var(--c-accent);
  color: var(--c-bg);
}

.cookie-btn-accept:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cookie-btn-reject,
.cookie-btn-cancel {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border);
}

.cookie-btn-reject:hover,
.cookie-btn-cancel:hover {
  border-color: var(--c-text);
  background: rgba(255,255,255,0.05);
}

.cookie-btn-customize,
.cookie-btn-save {
  background: rgba(0, 212, 255, 0.15);
  color: var(--c-accent);
  border: 1px solid var(--c-accent);
}

.cookie-btn-customize:hover,
.cookie-btn-save:hover {
  background: rgba(0, 212, 255, 0.25);
}

/* ── COOKIE MODAL ── */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.cookie-modal {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--c-border);
}

.cookie-modal-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--c-muted);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.cookie-modal-close:hover {
  color: #fff;
}

.cookie-modal-body {
  padding: 24px;
}

.cookie-option {
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--c-border);
  border-radius: 8px;
}

.cookie-option:last-child { margin-bottom: 0; }

.cookie-option-header {
  display: flex;
  gap: 12px;
}

.cookie-option input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
  min-width: 20px;
  width: 20px;
  height: 20px;
}

.cookie-option input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-option label {
  cursor: pointer;
  flex: 1;
}

.cookie-option label strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}

.cookie-option label p {
  margin: 0;
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.4;
}

.cookie-modal-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--c-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-modal-link {
  font-size: 13px;
  color: var(--c-accent);
  text-decoration: underline;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
}

@media (max-width: 768px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
  .cookie-modal-footer { flex-direction: column; align-items: stretch; }
  .cookie-modal-actions { width: 100%; }
  .cookie-modal-actions .cookie-btn { flex: 1; }
}


@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; aspect-ratio: 4/3; }
  .hero-actions { flex-direction: column; }
  .stats-inner { grid-template-columns: 1fr; }
}
