/* ==========================================================================
   JUAZEIRO PAINTBALL - TINTA NA VEIA (Desde 2008)
   Ultra-Premium Tactical Dark Theme & Design System
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-deep: #08090d;
  --bg-surface: #0e1118;
  --bg-card: #141822;
  --bg-card-hover: #1c2230;
  --bg-elevated: #22293b;
  
  --red-primary: #e6192e;
  --red-glow: #ff2a40;
  --red-dark: #9e0e1d;
  --red-subtle: rgba(230, 25, 46, 0.12);
  --red-border: rgba(230, 25, 46, 0.35);
  
  --orange-hazard: #ff7700;
  --yellow-splat: #ffcc00;
  --green-online: #25d366;
  --blue-neon: #00d2ff;
  
  --text-main: #f5f6fa;
  --text-muted: #9aa1b2;
  --text-dim: #656c80;
  
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-medium: rgba(255, 255, 255, 0.15);
  
  /* Typography */
  --font-tactical: 'Rajdhani', -apple-system, sans-serif;
  --font-display: 'Teko', impact, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Elevations & Shadows */
  --shadow-red-sm: 0 4px 14px rgba(230, 25, 46, 0.3);
  --shadow-red-lg: 0 10px 30px rgba(230, 25, 46, 0.45);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 20px rgba(230, 25, 46, 0.5);
  
  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base Reset & Smoothness */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
}

body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
  background: var(--bg-deep);
  position: relative;
  line-height: 1.6;
}

/* Custom Tactical Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: #252a38;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--red-primary);
}

/* Tactical Background Grid Pattern */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Typography Utilities */
h1, h2, h3, h4, .tactical-font {
  font-family: var(--font-tactical);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-main);
  line-height: 1.15;
}

.display-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 0.95;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #ff4b5c 50%, var(--red-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-red {
  background: linear-gradient(135deg, #ff3b4f 0%, var(--red-primary) 70%, var(--red-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-tactical);
}

.badge-tactical {
  background: rgba(230, 25, 46, 0.15);
  border: 1px solid var(--red-border);
  color: #ff5768;
}

.badge-live {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25d366;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: currentColor;
  box-shadow: 0 0 10px currentColor;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

/* ==========================================================================
   Tactical Top Ticker
   ========================================================================== */
.top-ticker {
  background: linear-gradient(90deg, #180407 0%, #24080e 50%, #180407 100%);
  border-bottom: 1px solid rgba(230, 25, 46, 0.35);
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  position: relative;
  z-index: 101;
}

.ticker-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.ticker-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #cfd5e4;
  font-weight: 500;
}

.ticker-left strong {
  color: #ffffff;
  font-weight: 700;
}

.ticker-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.ticker-link {
  color: #d1d6e5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.ticker-link svg {
  color: var(--red-glow);
}

.ticker-link:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 42, 64, 0.6);
}

/* ==========================================================================
   Header & Navbar (Glassmorphic & Tactical Prestige)
   ========================================================================== */
.header-navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(8, 9, 13, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230, 25, 46, 0.28);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  transition: all var(--transition-smooth);
}

.header-navbar.scrolled {
  background: rgba(6, 7, 10, 0.98);
  border-bottom-color: rgba(230, 25, 46, 0.5);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.9), 0 0 20px rgba(230, 25, 46, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(0.75rem, 1.5vw, 1.5rem);
  gap: 0.75rem;
  box-sizing: border-box;
}

/* Brand Logo & Prominent Badge */
.brand-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red-primary);
  background-color: #000000;
  box-shadow: 0 0 16px rgba(230, 25, 46, 0.7), 0 3px 10px rgba(0, 0, 0, 0.8);
  transition: transform var(--transition-bounce), box-shadow var(--transition-smooth);
  flex-shrink: 0;
}

.brand-logo-wrapper:hover .brand-logo-img {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 0 26px rgba(230, 25, 46, 0.95), 0 4px 14px rgba(0, 0, 0, 0.9);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
}

.brand-title {
  font-family: var(--font-tactical);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffffff;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.brand-title span {
  color: var(--red-glow);
  text-shadow: 0 0 12px rgba(255, 42, 64, 0.6);
}

.brand-tagline {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #ff5768;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.brand-tagline::before {
  content: "•";
  color: var(--red-glow);
  font-size: 0.9rem;
}

/* Nav Menu Links - Crystal Clear & Premium */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.nav-item {
  white-space: nowrap;
  display: inline-block;
}

.nav-item a {
  font-family: var(--font-tactical);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  white-space: nowrap !important;
  display: inline-block;
  transition: all var(--transition-fast);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.nav-item a:hover {
  color: #ffffff;
  background: rgba(230, 25, 46, 0.16);
  box-shadow: inset 0 0 0 1px rgba(230, 25, 46, 0.4), 0 0 12px rgba(230, 25, 46, 0.25);
  transform: translateY(-1px);
}

.nav-item a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red-glow);
  box-shadow: 0 0 8px var(--red-glow);
  transition: width var(--transition-smooth);
  border-radius: 2px;
}

.nav-item a:hover::after,
.nav-item a.active::after {
  width: calc(100% - 1.2rem);
}

.nav-item a.active {
  color: #ffffff;
  background: rgba(230, 25, 46, 0.22);
  box-shadow: inset 0 0 0 1px rgba(230, 25, 46, 0.6);
}

/* Nav Actions (Sound & CTA Button) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav-actions .btn {
  padding: 0.65rem 1.15rem;
  font-size: 0.92rem;
  white-space: nowrap;
}

/* Sound Effect Button */
.btn-sound-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  color: var(--text-muted);
  padding: 0.45rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.btn-sound-toggle:hover {
  color: #ffffff;
  border-color: var(--red-border);
  background: var(--bg-card-hover);
  box-shadow: 0 0 12px rgba(230, 25, 46, 0.3);
}

.btn-sound-toggle.muted svg {
  opacity: 0.4;
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 102;
}

.mobile-nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: #ffffff;
  transition: all var(--transition-smooth);
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  font-family: var(--font-tactical);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-glow) 0%, var(--red-primary) 70%, var(--red-dark) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-red-sm);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-lg);
  color: #ffffff;
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #2ae771 0%, #25d366 60%, #1ea951 100%);
  color: #0b2212;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  color: #05160b;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.btn-glow {
  animation: glowPulse 2.5s infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(230, 25, 46, 0.4); }
  50% { box-shadow: 0 0 30px rgba(230, 25, 46, 0.85); }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.42) contrast(1.15);
  transform: scale(1.03);
  transition: transform 10s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: 
    radial-gradient(circle at 75% 45%, rgba(230, 25, 46, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 10% 20%, rgba(0, 0, 0, 0.85) 0%, transparent 50%),
    linear-gradient(180deg, rgba(8, 9, 13, 0.7) 0%, rgba(8, 9, 13, 0.4) 40%, var(--bg-deep) 100%),
    linear-gradient(90deg, rgba(8, 9, 13, 0.95) 0%, rgba(8, 9, 13, 0.7) 50%, rgba(8, 9, 13, 0.3) 100%);
  pointer-events: none;
}

.hero-laser-line {
  position: absolute;
  top: 48%;
  left: 0;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 25, 46, 0.8), #ff3045, transparent);
  box-shadow: 0 0 10px #ff3045, 0 0 20px rgba(230, 25, 46, 0.6);
  opacity: 0.6;
  pointer-events: none;
  animation: laserScan 6s infinite ease-in-out;
}

@keyframes laserScan {
  0%, 100% { transform: translateY(0) scaleX(1); opacity: 0.4; }
  50% { transform: translateY(-25px) scaleX(1.1); opacity: 0.85; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-pre-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.8);
}

.hero-description {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: #cfd5e4;
  line-height: 1.6;
  margin-bottom: 2.25rem;
  max-width: 640px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

/* Hero Stats Ribbon */
.hero-stats-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(14, 17, 24, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--red-primary);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.stat-number .highlight {
  color: var(--red-glow);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: var(--font-tactical);
  margin-top: 0.25rem;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-alt {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-header .badge {
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Tactical Corner Brackets */
.tactical-bracket-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  transition: all var(--transition-smooth);
}

.tactical-bracket-card::before,
.tactical-bracket-card::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--red-primary);
  pointer-events: none;
  opacity: 0.4;
  transition: all var(--transition-smooth);
}

.tactical-bracket-card::before {
  top: -1px; left: -1px;
  border-top: 2px solid var(--red-primary);
  border-left: 2px solid var(--red-primary);
}

.tactical-bracket-card::after {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--red-primary);
  border-right: 2px solid var(--red-primary);
}

.tactical-bracket-card:hover::before,
.tactical-bracket-card:hover::after {
  width: 22px;
  height: 22px;
  opacity: 1;
}

/* ==========================================================================
   Battle Calculator (Interactive Simulator)
   ========================================================================== */
.calc-wrapper {
  background: linear-gradient(145deg, #10131c 0%, #171b26 100%);
  border: 1px solid var(--red-border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.8), 0 0 25px rgba(230, 25, 46, 0.15);
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.calc-panel-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.calc-panel-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.calc-group {
  margin-bottom: 1.8rem;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-tactical);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.calc-badge-count {
  background: var(--red-subtle);
  border: 1px solid var(--red-border);
  color: var(--red-glow);
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
  font-size: 0.95rem;
}

/* Range Slider */
.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #252b3b;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red-primary);
  border: 3px solid #ffffff;
  box-shadow: 0 0 12px var(--red-glow);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Quick Select Buttons */
.player-quick-select {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.btn-player-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  color: var(--text-muted);
  font-family: var(--font-tactical);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-player-pill.active,
.btn-player-pill:hover {
  background: var(--red-primary);
  border-color: var(--red-glow);
  color: #ffffff;
  box-shadow: var(--shadow-red-sm);
}

/* Package Options */
.package-radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.package-option-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 10px;
  padding: 1.1rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.package-option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.package-option-card:hover {
  border-color: rgba(230, 25, 46, 0.5);
  background: var(--bg-card-hover);
}

.package-option-card.active {
  border-color: var(--red-primary);
  background: rgba(230, 25, 46, 0.1);
  box-shadow: 0 0 15px rgba(230, 25, 46, 0.25);
}

.package-card-header {
  font-family: var(--font-tactical);
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.package-balls-count {
  font-size: 0.82rem;
  color: var(--red-glow);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.package-card-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: auto;
}

.package-card-price small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: normal;
  font-family: var(--font-body);
}

/* Add-ons Checkboxes */
.addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.addon-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.addon-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
}

.addon-card input[type="checkbox"] {
  accent-color: var(--red-primary);
  width: 17px;
  height: 17px;
  cursor: pointer;
}

.addon-info {
  display: flex;
  flex-direction: column;
}

.addon-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
}

.addon-price {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Calculator Receipt / Output Box */
.calc-receipt-box {
  background: #0b0d13;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}

.receipt-header {
  border-bottom: 1px dashed var(--border-medium);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.receipt-title {
  font-family: var(--font-tactical);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.receipt-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
}

.receipt-item {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

.receipt-item span:last-child {
  color: #ffffff;
  font-weight: 600;
}

.receipt-total-block {
  border-top: 1px dashed var(--border-medium);
  padding-top: 1.25rem;
  margin-bottom: 1.8rem;
}

.receipt-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.35rem;
}

.receipt-total-label {
  font-family: var(--font-tactical);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

.receipt-total-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red-glow);
  line-height: 1;
}

.receipt-per-person {
  text-align: right;
  font-size: 0.88rem;
  color: var(--green-online);
  font-weight: 600;
}

/* ==========================================================================
   Game Modes & Missions
   ========================================================================== */
.missions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.mission-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.mission-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--red-border);
  box-shadow: 0 15px 35px -10px rgba(230, 25, 46, 0.25);
}

.mission-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--red-subtle);
  border: 1px solid var(--red-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-glow);
  margin-bottom: 1.4rem;
  transition: all var(--transition-fast);
}

.mission-card:hover .mission-icon-wrap {
  background: var(--red-primary);
  color: #ffffff;
  box-shadow: 0 0 18px var(--red-glow);
  transform: scale(1.08);
}

.mission-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.mission-desc {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.mission-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}

.mission-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-tactical);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

/* ==========================================================================
   The Combat Arena (Tabs & Visual Experience)
   ========================================================================== */
.arena-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.arena-media-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8);
}

.arena-main-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.arena-media-frame:hover .arena-main-img {
  transform: scale(1.04);
}

.arena-mode-switch {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  gap: 0.5rem;
  background: rgba(10, 12, 17, 0.85);
  backdrop-filter: blur(10px);
  padding: 0.4rem;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
}

.btn-arena-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-tactical);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.6rem;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
}

.btn-arena-tab.active {
  background: var(--red-primary);
  color: #ffffff;
  box-shadow: var(--shadow-red-sm);
}

.arena-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 1.8rem;
}

.arena-feature-item {
  display: flex;
  gap: 1.1rem;
}

.feature-bullet-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--red-subtle);
  border: 1px solid var(--red-border);
  color: var(--red-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.feature-bullet-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.feature-bullet-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ==========================================================================
   Elite Gear & Safety
   ========================================================================== */
.gear-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.gear-media-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8);
}

.gear-media-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.gear-cards-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.gear-card {
  padding: 1.4rem 1.6rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: all var(--transition-fast);
}

.gear-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(230, 25, 46, 0.4);
  transform: translateX(6px);
}

.gear-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-glow);
  flex-shrink: 0;
}

.gear-title {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.gear-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ==========================================================================
   Packages & Pricing Cards
   ========================================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-smooth);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
}

.package-card.featured {
  background: linear-gradient(180deg, #181d2a 0%, #12151e 100%);
  border: 2px solid var(--red-primary);
  box-shadow: 0 15px 40px -10px rgba(230, 25, 46, 0.35);
  transform: scale(1.04);
}

.package-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.featured-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red-primary);
  color: #ffffff;
  padding: 0.3rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-tactical);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-red-sm);
  white-space: nowrap;
}

.package-name {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.package-summary {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  min-height: 44px;
}

.package-price-wrap {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.package-price-wrap .price {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.package-price-wrap .currency {
  font-size: 1.5rem;
  color: var(--red-glow);
  vertical-align: top;
  margin-right: 2px;
}

.package-price-wrap .period {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.2rem;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.93rem;
  color: #cfd5e4;
}

.package-features li svg {
  color: var(--red-glow);
  flex-shrink: 0;
}

/* ==========================================================================
   Photo Gallery & Lightbox
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 270px;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
}

.gallery-item.span-2 {
  grid-column: span 2;
}

.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay-badge {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 9, 13, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-thumb {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay-badge {
  opacity: 1;
}

.gallery-caption {
  font-family: var(--font-tactical);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Modal Lightbox */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-img-wrapper {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  border: 1px solid var(--border-medium);
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.9);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================================================================
   Reviews & Testimonials
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  color: #ffb400;
  margin-bottom: 1.1rem;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cfd5e4;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--red-border);
  color: var(--red-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-tactical);
}

.reviewer-name {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.reviewer-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Section (Accordion)
   ========================================================================== */
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-medium);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #ffffff;
  font-family: var(--font-tactical);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  color: var(--red-glow);
  transition: transform var(--transition-smooth);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.35rem;
}

/* ==========================================================================
   Location & Contact
   ========================================================================== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.location-info-card {
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
}

.location-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.location-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--red-subtle);
  border: 1px solid var(--red-border);
  color: var(--red-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.location-text p, .location-text a {
  color: var(--text-muted);
  font-size: 0.94rem;
  text-decoration: none;
}

.location-text a:hover {
  color: var(--red-glow);
}

.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.6rem;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-day {
  color: #ffffff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.schedule-hours {
  font-family: var(--font-tactical);
  font-weight: 700;
  color: #25d366;
  letter-spacing: 0.04em;
}

.schedule-closed {
  color: var(--text-dim);
  font-size: 0.82rem;
  font-style: italic;
}

.btn-route {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--red-glow);
  font-family: var(--font-tactical);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 0.4rem;
  transition: all var(--transition-fast);
}

.btn-route:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.map-wrapper {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.7);
  min-height: 380px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
  filter: invert(90%) hue-rotate(180deg) contrast(1.1) brightness(0.9);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #050608;
  border-top: 1px solid rgba(230, 25, 46, 0.2);
  padding: 4.5rem 0 2rem;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 1.1rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--red-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--red-glow);
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wa-btn-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ae771 0%, #25d366 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  position: relative;
  transition: transform var(--transition-bounce), box-shadow var(--transition-smooth);
}

.wa-btn-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.75);
}

.wa-btn-circle::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.75;
  animation: waPing 2s infinite ease-out;
}

@keyframes waPing {
  0% { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0; }
}

.wa-bubble-tip {
  background: #11141d;
  color: #ffffff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-medium);
  white-space: nowrap;
  animation: tipFloat 3s infinite ease-in-out;
}

@keyframes tipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-stats-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }
  .calc-wrapper {
    grid-template-columns: 1fr;
  }
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .package-card.featured {
    transform: none;
  }
  .package-card.featured:hover {
    transform: translateY(-8px);
  }
  .arena-showcase, .gear-grid, .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* Responsive Navigation Breakpoint: 1260px */
@media (max-width: 1260px) {
  .nav-links {
    display: none !important;
  }
  .mobile-nav-toggle {
    display: block !important;
  }
  .nav-container {
    height: 80px;
  }
  .nav-links.mobile-active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 9, 13, 0.98);
    backdrop-filter: blur(20px);
    padding: 2.2rem 1.8rem;
    gap: 1.25rem;
    z-index: 99;
    border-top: 1px solid var(--border-subtle);
    align-items: stretch;
    overflow-y: auto;
  }
  .nav-links.mobile-active .nav-item a {
    font-size: 1.25rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
  }
}

.mobile-nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .top-ticker {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.span-2 {
    grid-column: span 1;
  }
  .package-radio-grid {
    grid-template-columns: 1fr;
  }
  .addons-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats-ribbon {
    grid-template-columns: 1fr 1fr;
    padding: 1.25rem;
    gap: 1rem;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .wa-bubble-tip {
    display: none;
  }
}

@media (max-width: 580px) {
  .nav-actions .btn {
    display: none;
  }
  .brand-title {
    font-size: 1.15rem;
  }
  .brand-tagline {
    display: none;
  }
  .brand-logo-img {
    width: 48px;
    height: 48px;
  }
  .nav-container {
    height: 70px;
    padding: 0 1rem;
  }
  .nav-links.mobile-active {
    top: 70px;
  }
}
