.social-card.telegram img {
  background: #229ED9;
  border: 2px solid #229ED9;
}
.social-card.telegram p {
  color: #fff;
  text-shadow: 0 1px 6px #229ED9cc, 0 0px 1px #000;
}
/* Ensure Telegram image matches layout of other social cards */
.social-card.telegram img {
  display: block;
  margin: 0 auto 1.2rem auto;
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 16px;
  background-size: cover;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
/* Social Grid Promos - Mejora visual de imágenes */
.social-grid {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}
.social-card {
  background: #181b22;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 240px;
  min-height: 320px;
  transition: transform 0.18s, box-shadow 0.18s;
  text-align: center;
  position: relative;
}
.social-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px 0 #00f2ff33;
}
.social-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px #00f2ff22;
  background: #fff;
  border: 2px solid #222c;
}
.social-link {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.6rem 1.3rem;
  background: #00f2ff;
  color: #000;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px #00f2ff55;
  transition: background 0.18s, color 0.18s;
  font-size: 1.08rem;
}
.social-link:hover {
  background: #00c2cc;
  color: #fff;
}

/* ===== PREMIUM PROMOTIONAL CARDS ===== */

.promo-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.promo-card-premium {
  background: linear-gradient(135deg, rgba(15, 23, 32, 0.8), rgba(0, 242, 255, 0.05));
  border: 1px solid rgba(0, 242, 255, 0.2);
  border-radius: 24px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

.promo-card-premium::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 242, 255, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.promo-card-premium:hover::before {
  opacity: 1;
}

.promo-card-premium:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(15, 23, 32, 0.95), rgba(0, 242, 255, 0.15));
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 242, 255, 0.2);
}

.promo-icon-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(0, 242, 255, 0.05));
  border: 2px solid rgba(0, 242, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 1;
}

.promo-card-premium:hover .promo-icon-circle {
  transform: scale(1.1) rotateZ(5deg);
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.2), rgba(0, 242, 255, 0.1));
  box-shadow: 0 0 30px rgba(0, 242, 255, 0.4);
}

.social-icon-svg {
  width: 60px;
  height: 60px;
  color: var(--primary);
  transition: all 0.3s;
}

.promo-card-premium:hover .social-icon-svg {
  color: #00c2cc;
  filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.5));
}

.promo-card-premium h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-main);
  transition: color 0.3s;
}

.promo-card-premium:hover h3 {
  color: var(--primary);
}

.promo-card-premium p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.5;
  flex-grow: 1;
}

.promo-badge {
  display: inline-block;
  background: rgba(0, 242, 255, 0.15);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 242, 255, 0.3);
  animation: fadeInScale 0.4s ease-out;
}

.promo-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), #00c2cc);
  color: #000;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.promo-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.promo-card-premium:hover .promo-cta {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 242, 255, 0.4);
}

.promo-card-premium:active .promo-cta::before {
  width: 300px;
  height: 300px;
}

/* Card-specific colors */
.discord-card .promo-icon-circle {
  border-color: rgba(88, 101, 242, 0.5);
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(88, 101, 242, 0.05));
}

.discord-card .social-icon-svg {
  color: #5865F2;
}

.discord-card:hover .promo-icon-circle {
  border-color: #5865F2;
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(88, 101, 242, 0.1));
  box-shadow: 0 0 30px rgba(88, 101, 242, 0.3);
}

.discord-card:hover .social-icon-svg {
  color: #5865F2;
}

.telegram-card .promo-icon-circle {
  border-color: rgba(34, 158, 217, 0.5);
  background: linear-gradient(135deg, rgba(34, 158, 217, 0.1), rgba(34, 158, 217, 0.05));
}

.telegram-card .social-icon-svg {
  color: #229ED9;
}

.telegram-card:hover .promo-icon-circle {
  border-color: #229ED9;
  background: linear-gradient(135deg, rgba(34, 158, 217, 0.2), rgba(34, 158, 217, 0.1));
  box-shadow: 0 0 30px rgba(34, 158, 217, 0.3);
}

.telegram-card:hover .social-icon-svg {
  color: #229ED9;
}

.instagram-card .promo-icon-circle {
  border-color: rgba(217, 51, 163, 0.5);
  background: linear-gradient(135deg, rgba(217, 51, 163, 0.1), rgba(217, 51, 163, 0.05));
}

.instagram-card .social-icon-svg {
  color: #D933A3;
}

.instagram-card:hover .promo-icon-circle {
  border-color: #D933A3;
  background: linear-gradient(135deg, rgba(217, 51, 163, 0.2), rgba(217, 51, 163, 0.1));
  box-shadow: 0 0 30px rgba(217, 51, 163, 0.3);
}

.instagram-card:hover .social-icon-svg {
  color: #D933A3;
}

.whatsapp-card .promo-icon-circle {
  border-color: rgba(16, 185, 129, 0.5);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
}

.whatsapp-card .social-icon-svg {
  color: #10B981;
}

.whatsapp-card:hover .promo-icon-circle {
  border-color: #10B981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.whatsapp-card:hover .social-icon-svg {
  color: #10B981;
}

/* Responsive */
@media (max-width: 768px) {
  .promo-grid-premium {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .promo-card-premium {
    padding: 2rem 1.5rem;
  }

  .promo-icon-circle {
    width: 100px;
    height: 100px;
  }

  .social-icon-svg {
    width: 50px;
    height: 50px;
  }

  .promo-card-premium h3 {
    font-size: 1.3rem;
  }
}
:root {
  /* Liberty Company brand tokens */
  --bg-dark: #0F1720; /* neutral dark */
  --bg-panel: rgba(15, 23, 32, 0.96);
  --primary: #0A6EFF; /* azul Liberty */
  --primary-dim: rgba(10, 110, 255, 0.08);
  --secondary: #00C48C; /* verde */
  --accent: #FFB026; /* naranja */
  --accent-dim: rgba(255,176,38,0.08);
  --text-main: #F5F7FA; /* claro */
  --text-muted: #A0A8B5;
  --border: rgba(255,255,255,0.06);
  --glass: blur(8px);
  --font-main: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* Prevent horizontal scrolling on mobile */
html, body {
  width: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Make all images responsive by default to avoid overflow on small screens */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Center the main content area safely without forcing every inner element to
   be constrained. This centers the page layout while preserving section
   composition (avoids breaking pages that rely on full-width children). */
main {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  overflow-x: hidden;
}

/* Container protection */
.container {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  overflow-x: hidden;
  line-height: 1.6;
  width: 100%;
  max-width: 100vw;
}

/* Guarantee no overflow on all container elements */
body, html {
  width: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Background Effects */
.bg-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
  transform: translateZ(0);
  will-change: opacity, filter;
}

.top-left {
  top: -200px;
  left: -200px;
  background: linear-gradient(45deg, rgba(220,20,60,0.9), rgba(255,200,200,0.2));
}

.bottom-right {
  bottom: -200px;
  right: -200px;
  background: linear-gradient(45deg, rgba(0,128,0,0.9), rgba(180,255,180,0.08));
}

.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
}

/* when input is focused on small screens, give room for keyboard
   and hide fixed bottom buttons slightly to avoid overlap */
body.input-focus .mobile-fixed-action {
  transform: translateY(45%);
  transition: transform 220ms ease;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  display: block;
  color: var(--primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Section title helpers: keep phrases together and highlight the important part */
.section-title { font-weight: 800; letter-spacing: -0.02em; }
.section-title-accent { color: var(--primary); font-weight: 900; margin-left: 0.25rem; }
.section-sub { display: inline-block; color: var(--text-muted); font-weight: 500; margin-left: 0.6rem; font-size: 0.95rem; }

/* Decorative / stray element safety: if a small cyan 'KY' or similar appears, keep it non-intrusive */
.ky-deco { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--primary); font-weight: 800; pointer-events: none; z-index: 1205; }

/* Robux offers table/cards */
.robux-table { /* removed - Robux offers no longer provided */ }
.robux-row { /* removed - Robux offers no longer provided */ }
.robux-amount { /* removed - Robux offers no longer provided */ }
.robux-old { /* removed - Robux offers no longer provided */ }
.robux-offer { /* removed - Robux offers no longer provided */ }
.btn-buy-robux { /* removed - Robux offers no longer provided */ }
.btn-buy-robux:hover { /* removed - Robux offers no longer provided */ }

/* Video grid */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-top: 1rem; }
.robux-table { /* removed - Robux offers no longer provided */ }
.robux-row { /* removed - Robux offers no longer provided */ }
.robux-row:hover { /* removed - Robux offers no longer provided */ }
.robux-amount { /* removed - Robux offers no longer provided */ }
.robux-prices { /* removed - Robux offers no longer provided */ }
.robux-prices .old-price { /* removed - Robux offers no longer provided */ }
.robux-prices .offer-price { /* removed - Robux offers no longer provided */ }
.robux-row .btn { /* removed - Robux offers no longer provided */ }

/* Responsive Robux Table (removed) */
@media (max-width: 480px) {
  .robux-row { /* removed */ }
  .robux-prices { /* removed */ }
  .robux-row .btn { /* removed */ }
}
  .robux-row { /* removed - Robux offers no longer provided */ }
  .robux-table { /* removed - Robux offers no longer provided */ }
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 6rem 0;
  background: transparent;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Promo (Free Review) */
.promo-card {
  background: linear-gradient(135deg, rgba(10,110,255,0.06) 0%, rgba(255,176,38,0.04) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  text-align: center;
}

.promo-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 242, 255, 0.12);
  border: 1px solid var(--border);
}

.promo-title {
  margin: 0 0 0.8rem;
}

.promo-text {
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.promo-actions { margin-top: 0.5rem; }

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: var(--glass);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-main);
  margin-left: 1rem;
}

.logo-icon {
  color: var(--primary);
  font-size: 2rem;
  flex-shrink: 0;
}

.highlight {
  color: var(--primary);
}

/* Navigation Menu */
.nav-menu ul {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  align-items: center;
}

/* Ensure nav container doesn't clip dropdowns and sits above other elements */
.nav-menu {
  z-index: 1200;
  overflow: visible;
}

.nav-menu li { position: relative; }

.nav-menu .dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: rgba(10,10,10,0.98);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  display: none;
}

.nav-menu li:hover > .dropdown { display: block; }

.nav-link {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.6rem 1.3rem;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(10,110,255,0.12);
  transition: background 0.18s, color 0.18s;
  font-size: 1.08rem;
}
.nav-link::after {
  content: '';
  background: color-mix(in srgb, var(--primary) 80%, #000 20%);
  color: #fff;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

/* Snowfall styles used by `xmas-animations.js` */
#snow-container {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 1050;
}

.snowflake {
  position: absolute;
  top: -6%;
  display: block;
  width: 1em; /* driven by JS font-size for variety */
  height: 1em;
  line-height: 1em;
  text-indent: -9999px; /* hide fallback glyph */
  border-radius: 50%;
  /* Azul pálido → blanco: suave transición cromática */
  background: radial-gradient(circle at 30% 30%, rgba(138,180,255,0.98) 0%, rgba(190,220,255,0.9) 40%, rgba(240,250,255,0.85) 70%, rgba(255,255,255,0.95) 100%);
  box-shadow: 0 6px 18px rgba(20,40,80,0.22), 0 1px 2px rgba(255,255,255,0.12) inset;
  opacity: 0.95;
  transform: translate3d(0,0,0);
  will-change: transform, opacity;
  animation-name: fall, sway;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
}

.snowflake--fading { transition: opacity 600ms ease, transform 600ms ease; opacity: 0; transform: translateY(8vh) scale(0.6); }

@keyframes fall {
  0% { transform: translateY(-2vh) rotate(0deg); }
  100% { transform: translateY(110vh) rotate(360deg); }
}

@keyframes sway {
  0% { transform: translateX(0px); }
  25% { transform: translateX(14px); }
  50% { transform: translateX(0px); }
  75% { transform: translateX(-10px); }
  100% { transform: translateX(0px); }
}


.nav-link:hover::after {
  width: 100%;
}

/* Hover labels: show a small pill when hovering menu items */
/* Bloque separado para estilos de píldoras hover de navegación */
.nav-hover-pills { }

/* Nav pill elements (DOM spans inserted by JS) */
.nav-pill {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.12rem 0.45rem;
  border-radius: 8px;
  font-size: 0.85rem;
  vertical-align: middle;
  opacity: 0;
  transform: translateY(-4px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  pointer-events: none;
}

/* Top-level nav: 'Ir' pill style */
.nav-menu > ul > li > a .nav-pill {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #000;
  box-shadow: 0 6px 18px rgba(10,110,255,0.10);
}

/* Dropdown children: 'Ver' pill style */
.nav-dropdown a .nav-pill {
  background: rgba(255,255,255,0.03);
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.03);
}

/* Reveal on focus only (not on hover) */
.nav-menu > ul > li > a:focus .nav-pill,
.nav-dropdown a:focus .nav-pill {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.nav-link span {
  font-size: 1rem;
}

.nav-icon-img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  filter: brightness(0.7);
  transition: filter 0.3s;
}

.nav-link:hover .nav-icon-img {
  filter: brightness(1);
}

/* Menu Toggle Button (Hamburger) - Desktop & Mobile */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 1001;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  opacity: 0.8;
}

.menu-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Server status pill */
#server-status span {
  display: inline-block;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
}

.server-online { background: linear-gradient(90deg, rgba(10,110,255,0.12), rgba(0,196,140,0.06)); color: var(--secondary); border: 1px solid rgba(10,110,255,0.12); }
.server-offline { background: rgba(255,255,255,0.03); color: var(--text-muted); border: 1px solid rgba(255,255,255,0.03); }
.server-error { background: rgba(239,68,68,0.08); color: var(--danger); border: 1px solid rgba(239,68,68,0.12); }

/* Product cards: unified visual system for all product pages */
.products-grid,
.streaming-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.product-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(0,0,0,0.02));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  box-shadow: 0 6px 18px rgba(2,6,23,0.35);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(2,6,23,0.45);
  border-color: rgba(10,110,255,0.12);
}

.product-header {
  display:flex;
  gap:1rem;
  align-items:center;
}

.product-image {
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  border-radius: 10px;
  overflow: hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.03));
  border: 1px solid var(--border);
}
.product-image img { width: 100%; height: 100%; object-fit: cover; }

.product-badge {
  margin-left: auto;
  background: rgba(10,110,255,0.08);
  color: var(--primary);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-weight:700;
  font-size:0.85rem;
  border: 1px solid rgba(10,110,255,0.06);
}

.product-info h3 { margin: 0 0 0.5rem 0; }
.product-features { list-style: none; padding-left: 0; margin: 0 0 0.5rem 0; color: var(--text-muted); }
.product-features li { display:flex; gap:0.5rem; align-items:center; margin-bottom:0.4rem; }
.product-price { font-weight:800; font-size:1.1rem; color: var(--text-main); margin-top: 0.5rem; }
.product-guarantee { color: var(--secondary); font-weight:600; display:flex; gap:0.4rem; align-items:center; }

/* Buttons */
.btn { display:inline-flex; align-items:center; gap:0.6rem; padding:0.6rem 0.9rem; border-radius:10px; cursor:pointer; border:1px solid transparent; }
.btn-primary { background: var(--primary); color: #fff; border-color: rgba(10,110,255,0.08); box-shadow: 0 6px 20px rgba(10,110,255,0.12); }
.btn-primary:hover { filter:brightness(0.98); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); filter:brightness(0.95); }
.btn-outline { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn-full { width:100%; justify-content:center; }

/* Price badge inside button */
.btn .btn-badge { background: rgba(255,255,255,0.06); padding:0.25rem 0.5rem; border-radius:8px; font-weight:700; color:var(--text-main); }

/* Responsive tweaks */
@media (max-width: 720px) {
  .product-header { gap:0.6rem; }
  .product-image { width:72px; height:72px; }
  .products-grid, .streaming-products { gap: 1rem; }
}

/* Utility: uniform spacing for store-links section */
.store-links { display:flex; gap:0.6rem; flex-wrap:wrap; justify-content:center; }


.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Header decorative small banner next to hamburger */
.header-decor {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(0,242,255,0.02));
  border: 1px solid rgba(255,255,255,0.03);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  margin-left: 0.6rem;
  white-space: nowrap;
  align-self: center;
  z-index: 1001;
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}
.header-decor .deco-rocket { font-size: 1.05rem; }
.header-decor .deco-text { color: var(--text-muted); font-weight: 600; opacity: 0.95; }

/* small glow decoration to the right of header for visual balance */
.header-decor::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0,242,255,0.8), rgba(188,19,254,0.6));
  box-shadow: 0 6px 20px rgba(0,242,255,0.12), 0 2px 10px rgba(188,19,254,0.06);
  opacity: 0.9;
}

/* subtle patterned strip under the header to make the top feel less empty */
header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 28px;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.01) 0 6px, transparent 6px 24px);
  opacity: 0.04;
  pointer-events: none;
  z-index: 999;
}

@media (max-width: 1024px) {
  /* hide detailed text on smaller screens to avoid crowding */
  .header-decor .deco-text { display: none; }
  .header-decor { padding: 0.22rem 0.5rem; margin-left: 0.4rem; }
}

@media (max-width: 480px) {
  /* on very small screens show only the rocket so hamburger area stays compact */
  .header-decor { min-width: 26px; }
  .header-decor .deco-rocket { font-size: 1.1rem; }
  .header-decor::after { display: none; }
}

/* Action Buttons */
.btn-icon {
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  position: relative;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.btn-icon:hover {
  color: var(--primary);
  background: rgba(0, 242, 255, 0.1);
  transform: scale(1.1) rotate(5deg);
}

.cart-btn {
  animation: pulse-cart 2s ease-in-out infinite;
}

.account-btn {
  animation: pulse-account 2s ease-in-out infinite;
}

.badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 0.65rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 2px solid var(--bg-dark);
  animation: badge-pulse 1s ease-in-out infinite;
}

/* Animations */
@keyframes pulse-cart {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes pulse-account {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.7); }
  50% { box-shadow: 0 0 0 5px rgba(0, 242, 255, 0); }
}

@keyframes nav-slide-in {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes skeleton-loading {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes shimmer {
  0% { background-position: -1200px 0; }
  100% { background-position: 1200px 0; }
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale(0);
  }
  to {
    opacity: 0;
    transform: scale(4);
  }
}

.nav-menu ul li {
  animation: nav-slide-in 0.5s ease-out backwards;
}

.nav-menu ul li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu ul li:nth-child(2) { animation-delay: 0.15s; }
.nav-menu ul li:nth-child(3) { animation-delay: 0.2s; }
.nav-menu ul li:nth-child(4) { animation-delay: 0.25s; }
.nav-menu ul li:nth-child(5) { animation-delay: 0.3s; }
.nav-menu ul li:nth-child(6) { animation-delay: 0.35s; }
.nav-menu ul li:nth-child(7) { animation-delay: 0.4s; }
.nav-menu ul li:nth-child(8) { animation-delay: 0.45s; }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* Ripple effect element */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

.btn-primary {
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 20px var(--primary-dim);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,242,255,0.35);
  transform: translateY(-3px) scale(1.05);
  color: #000;
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before {
  opacity: 1;
}

.btn-primary:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  /* Background image from Unsplash for a professional/business feel. */
  /* prefer a local image if present (hero-local.jpg). If not, fall back to Unsplash hotlink */
  background-image: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('assets/hero-local.jpg'), url('https://source.unsplash.com/1600x900/?business,marketing');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* subtle dark overlay to improve text readability on top of photos */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.35));
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Ensure the hero content block is centered as a whole on wider screens.
   The inner text remains left-aligned but the text block is centered within
   the hero area (matches the provided screenshot). */
.hero-container {
  justify-items: center;
}
.hero-text {
  max-width: 720px;
  margin: 0;
  text-align: left;
}

.hero-quicklinks {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.hero-quicklinks .btn-sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.95rem;
}
.hero-quicklinks .btn-primary {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #000;
}
.hero-quicklinks .btn-outline {
  background: rgba(255,255,255,0.04);
  color: var(--text-main);
  border: 1px solid var(--border);
}
.hero-text h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.03;
  margin-bottom: 0.6rem;
}
.hero-text p {
  font-size: clamp(0.95rem, 2.6vw, 1.1rem);
  color: var(--text-muted);
}
.hero-visual {
  justify-self: center;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gradient-sphere {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, rgba(220,20,60,0.9), rgba(0,128,0,0.9));
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: pulse 4s infinite alternate;
  will-change: transform, opacity;
}

/* Decorative garland across the top of the page */
header::before {
  content: '';
  position: fixed;
  top: 6px;
  left: 0;
  width: 100%;
  height: 64px;
  pointer-events: none;
  z-index: 1002;
  /* hidden to avoid duplicate garland visuals when dynamic bulbs are enabled */
  display: none;
}

.garland-bulb { pointer-events: none; }
/* Garland lights container (placed behind header content so text stays readable) */
#garland-lights {
  position: fixed;
  top: 6px;
  left: 0;
  width: 100%;
  height: 64px;
  pointer-events: none;
  z-index: 900; /* below header (1000) so bulbs don't cover header text */
  display: block;
}
.garland-bulb {
  position: absolute;
  top: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  opacity: 0.95;
  transform-origin: center;
  animation-name: bulbBlink;
  animation-iteration-count: infinite;
}
@keyframes bulbBlink {
  0% { transform: scale(1); filter: brightness(0.9); opacity: 0.5; }
  50% { transform: scale(1.2); filter: brightness(1.6); opacity: 1; }
  100% { transform: scale(1); filter: brightness(0.95); opacity: 0.6; }
}

/* Snow toggle button */
.snow-toggle {
  position: fixed;
  bottom: 100px;
  left: 30px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #ffdcdc);
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.snow-toggle.active { box-shadow: 0 8px 28px rgba(0,128,0,0.25); }

/* Hero Lottie container */
.hero-lottie {
  position: absolute;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  right: 6%;
  top: 10%;
  z-index: 2;
}
.hero-lottie lottie-player {
  width: 100%;
  height: 100%;
  display: block;
}

/* Decorative SVG in hero (responsive placement) */
.hero-visual::after {
  content: '';
  position: absolute;
  left: -6%;
  bottom: -6%;
  width: 420px;
  height: 220px;
  background-image: url('assets/hero-decor.svg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

/* Social card hover: subtle pulsing for visibility */
.social-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.social-card:hover img { transform: translateY(-4px) scale(1.03); }

/* Telegram specific tweak: badge */
.social-card.telegram { border-color: #0f6f9a; }
.social-card.telegram .social-link { background: #1da1d9; color: #000; }

.floating-card {
  position: absolute;
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: float 4.5s ease-in-out infinite;
  will-change: transform, opacity;
}

.card-1 {
  top: 20%;
  left: 0;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20%;
  right: 0;
  animation-delay: 1s;
}

.floating-card .icon {
  font-size: 2rem;
  color: var(--primary);
  background: rgba(0, 242, 255, 0.1);
  padding: 0.5rem;
  border-radius: 8px;
}

.card-info {
  display: flex;
  flex-direction: column;
}

.card-info .value {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-main);
}

.card-info .label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@keyframes float {
  0% { transform: translateY(-24px); }
  50% { transform: translateY(24px); }
  100% { transform: translateY(-24px); }
}

@keyframes pulse {
  0% {
    opacity: 0.3;
    transform: scale(0.9);
  }

  100% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

/* Cards & Grids */
.packs-grid,
.services-grid,
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pack-card,
.service-card,
.job-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.pack-card::before,
.service-card::before,
.job-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,242,255,0.06), rgba(188,19,254,0.04));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.pack-card:hover,
.service-card:hover,
.job-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 16px 50px rgba(0,242,255,0.15);
}

.pack-card:hover::before,
.service-card:hover::before,
.job-card:hover::before {
  opacity: 1;
}

.pack-card.popular {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-dim);
}

.popular-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 0.3rem 0.8rem;
  border-bottom-left-radius: 12px;
}

.pack-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pack-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.pack-amount .unit {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pack-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pack-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pack-features li span.material-symbols-outlined {
  color: var(--primary);
  font-size: 1.2rem;
}

/* Split Layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 3rem;
  border-radius: 20px;
}

.benefits-list {
  list-style: none;
  margin: 2rem 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.benefits-list li span {
  color: var(--primary);
}

/* Footer */
footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  color: #555;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hidden {
  display: none !important;
}

.modal-content {
  width: 90%;
  max-width: 900px;
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 24px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

#cart-modal {
  align-items: center;
}

.cart-panel {
  border-radius: 24px;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  width: 100%;
}

#cart-modal.active .cart-panel {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.5rem;
  transition: color 0.2s;
}

.close-btn:hover {
  color: var(--text-main);
}

.cart-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  flex: 1;
  overflow: hidden;
}

.cart-sidebar {
  padding: 2rem;
  border-left: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Cart Items Area */
.cart-items-container {
  padding: 2rem;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.2);
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.2rem;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.cart-item:hover {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.cart-item-title {
  font-weight: 600;
  color: var(--text-main);
  font-size: 1.1rem;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.remove-item {
  color: #ff4d4d;
  background: rgba(255, 77, 77, 0.1);
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.remove-item:hover {
  background: #ff4d4d;
  color: white;
}

.empty-cart-msg {
  text-align: center;
  padding: 4rem 0;
  color: var(--text-muted);
  display: flex;
  border: none;
  padding: 0 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.cart-summary {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.summary-row.total {
  color: var(--text-main);
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 0.5rem;
}

.summary-row.discount {
  color: #10b981;
}

.summary-row.hidden {
  display: none;
}

.checkout-btn {
  margin-top: 1rem;
  padding: 1rem;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.payment-methods-section h3 {
  margin: 0 0 1rem;
  color: var(--text-main);
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.payment-option {
  display: block;
}

.payment-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
}

.payment-card .material-symbols-outlined {
  color: var(--primary);
}

.payment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-option input:checked + .payment-card {
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-dim);
  background: rgba(0, 242, 255, 0.06);
  color: var(--text-main);
}

/* Payment Modal Specifics */
.payment-panel {
  max-width: 500px;
}

.payment-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.payment-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.amount-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.amount-display .label {
  color: var(--text-muted);
}

.amount-display .value {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
}

.wallet-box {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.wallet-label {
  color: var(--text-muted);
  font-weight: 600;
}

.wallet-address-group {
  display: flex;
  gap: 0.6rem;
}

.wallet-address-group input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
}

.copy-btn {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.copy-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 242, 255, 0.06);
}

.qr-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 1rem;
  height: 140px;
  color: var(--text-muted);
}

.payment-warning {
  display: flex;
  gap: 1rem;
  background: rgba(255, 165, 0, 0.1);
  border: 1px solid rgba(255, 165, 0, 0.3);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #ffcc80;
  align-items: center;
}

/* Confeti animación */
.confeti {
  position: fixed;
  top: -20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  animation: caerConfeti linear forwards;
}

@keyframes caerConfeti {
  to {
    opacity: 0.2;
    transform: translateY(100vh) rotate(360deg);
  }
}

/* when input is focused on small screens, give room for keyboard
   and hide fixed bottom buttons slightly to avoid overlap */
body.input-focus .mobile-fixed-action {
  transform: translateY(45%);
  transition: transform 220ms ease;
}

/* Fondo animado único con soporte para colores por sección */
.animated-bg {
  --section-color: #0099cc;
  position: fixed;
  left: 0; top: 0; width: 100%; height: 100vh;
  z-index: -2;
  pointer-events: none;
  /* Gradientes dinámicos según sección */
  background: radial-gradient(circle at 10% 20%, var(--section-color) 0%, transparent 45%),
              radial-gradient(circle at 90% 80%, rgba(188, 19, 254, 0.08) 0, transparent 55%),
              linear-gradient(120deg, #071018 0%, #101212 100%);
  animation: bgMove 14s ease-in-out infinite alternate;
  opacity: 0.6;
}

.animated-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 242, 255, 0.05), transparent 100%);
  animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

@keyframes bgMove {
  0% { filter: blur(0px) brightness(1); }
  100% { filter: blur(2px) brightness(1.08); }
}

/* Responsive */
@media (max-width: 768px) {
    .cart-body {
      grid-template-columns: 1fr;
    }

    .cart-sidebar {
      border-left: none;
      border-top: 1px solid var(--border);
    }

    .modal-content {
      height: 100%;
      max-height: 100%;
      border-radius: 0;
    }

    .hero-container {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .hero-btns {
      justify-content: center;
    }

    .hero-visual {
      height: 300px;
    }

    .split-layout {
      grid-template-columns: 1fr;
    }

    nav ul {
      display: none;
    }
  }

/* Additional responsive improvements for tablet and mobile */
@media (max-width: 1024px) {
  .container { padding: 0 1rem; }
  header { padding: 0.8rem 0; }
  .logo { font-size: 1.25rem; margin-left: 0.5rem; }
  .header-content { gap: 0.6rem; }
  .menu-toggle { display: flex; }
  /* Make mobile nav a full-screen, scrollable overlay so long lists are fully visible */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(15,23,32,0.99), rgba(5,10,15,0.98));
    width: 100%;
    height: 100vh;
    padding: 1.2rem;
    transform: translateY(-100%);
    transition: transform 0.28s ease;
    z-index: 1200;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-menu.active { transform: translateY(0); }
  /* Overlay behind the off-canvas nav - pointer-events allowed for closing */
  .nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1100; display: none; opacity: 0; visibility: hidden; transition: opacity 0.28s ease; pointer-events: none; }
  .nav-overlay.active { display: block; opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-menu ul { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
  /* Increase tappable area for nav links on mobile */
  .nav-menu a, .nav-menu .nav-link {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(10,110,255,0.15), rgba(0,196,140,0.08)) !important;
    border: 1px solid rgba(0,242,255,0.2) !important;
    color: var(--text-main) !important;
    display: block;
    width: 100%;
    text-align: left;
  }
  .nav-menu a:hover, .nav-menu .nav-link:hover {
    background: linear-gradient(135deg, rgba(10,110,255,0.25), rgba(0,196,140,0.15)) !important;
    border-color: rgba(0,242,255,0.4) !important;
  }
  .header-actions { gap: 0.8rem; }
  .hero-container { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { height: 360px; }
  .floating-card { display: none; }
  .packs-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
  .promo-card { padding: 1.2rem; }
}

@media (max-width: 480px) {
  * { box-sizing: border-box !important; }
  html, body { width: 100%; overflow-x: hidden; }
  .container { padding: 0 1rem; max-width: 100%; }
  header { padding: 0.8rem 0; overflow-x: hidden; }
  .logo { font-size: 1.1rem; }
  h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); line-height: 1.2; }
  h2 { font-size: clamp(1.2rem, 5vw, 1.5rem); line-height: 1.3; }
  h3 { font-size: clamp(1rem, 4vw, 1.3rem); }
  p { font-size: 0.95rem; line-height: 1.5; }
  .menu-toggle { display: flex; width: 48px; height: 48px; }
  .nav-menu { width: 100vw; top: 0; height: 100vh; padding: 1rem; left: 0; overflow-y: auto; overflow-x: hidden; background: linear-gradient(180deg, rgba(15,23,32,0.99), rgba(5,10,15,0.98)); }
  .nav-menu a, .nav-menu .nav-link {
    padding: 1rem 1rem;
    font-size: 0.95rem;
    background: linear-gradient(135deg, rgba(10,110,255,0.18), rgba(0,196,140,0.1)) !important;
    border: 1px solid rgba(0,242,255,0.25) !important;
    color: var(--text-main) !important;
    display: block;
    width: 100%;
    text-align: left;
  }
  .hero-visual { height: 240px; }
  .hero-lottie { display: none; }
  .hero-quicklinks { flex-direction: column; gap: 0.8rem; }
  .hero-quicklinks .btn { width: 100%; text-align: center; }
  .grid-overlay, .animated-bg { display: none; }
  .hero { background-image: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('assets/hero-local-vertical.jpg'), url('https://source.unsplash.com/900x1600/?business,marketing'); background-position: center top; }
  .whatsapp-float { bottom: 80px; left: 1rem; width: 56px; height: 56px; }
  .chat-toggle { bottom: 80px; right: 1rem; width: 56px; height: 56px; }
  .chat-widget { right: 0.5rem; left: 0.5rem; bottom: 140px; width: auto; max-width: calc(100vw - 1rem); }
  .pack-card, .service-card, .job-card { padding: 1.2rem; }
  .social-grid { gap: 0.8rem; }
  .social-card { width: 100%; min-height: auto; padding: 1.2rem; }
  .btn { padding: 0.8rem 1.2rem; font-size: 0.95rem; touch-action: manipulation; }
  .btn-full { width: 100%; }
  .btn-primary, .btn-outline { min-height: 48px; }
  .cart-items { gap: 0.8rem; }
  .cart-item { flex-direction: column; align-items: flex-start; gap: 0.8rem; padding: 1rem; }
  .cart-item-price { align-self: flex-end; }
  .modal-content { max-width: 100%; border-radius: 12px; margin: 1rem; }
  footer .footer-content { flex-direction: column; gap: 1.5rem; text-align: center; }
  .nav-dropdown { display: none !important; }
  .nav-menu.active .nav-dropdown { display: none !important; }
}

/* Small devices tweak for touch targets and readability */
@media (pointer: coarse) {
  .nav-link, .btn, .social-link, .store-action { padding: 0.9rem 1.2rem; min-height: 48px; }
  .menu-toggle span { width: 28px; height: 3px; }
  button, a.btn, input[type="submit"], input[type="button"] { min-height: 48px; touch-action: manipulation; }
  .btn-icon { width: 48px; height: 48px; }
}

/* Tablet improvements */
@media (max-width: 1024px) and (min-width: 481px) {
  .container { padding: 0 1.5rem; }
  .packs-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .social-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
  .streaming-products { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .modal-content { max-width: 90vw; border-radius: 16px; }
  .nav-menu { width: 100vw; }
}

/* Prevent background scroll when mobile nav is open */
body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Forms: make inputs full-width and improve mobile usability */
.form-field input,
.form-field select,
.form-field textarea,
input[type="email"], input[type="text"], input[type="tel"], input[type="password"] {
  width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 10px;
}

.form-field label { display: block; margin-bottom: 6px; }

/* Ensure forms have space for fixed action buttons on small screens */
@media (max-width: 480px) {
  /* Give panels and forms extra bottom padding to avoid overlap with fixed buttons */
  .panel, .auth-forms, .checkout-grid { padding-bottom: 120px; }
  main { padding-bottom: 0; }

  /* Make primary form buttons fixed at the bottom for easy access */
  form .btn-primary, form .btn-full.btn-primary {
    position: fixed !important;
    left: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    width: calc(100% - 2rem) !important;
    max-width: none !important;
    z-index: 1999 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    font-size: 1rem;
    padding: 14px 18px;
    min-height: 48px;
  }

  /* Prevent fixed checkout button from covering content when present inside modals */
  .modal .modal-body, .modal .payment-body { padding-bottom: 140px; }

  /* Make form groups full width and comfortable spacing on mobile */
  .form-group { padding: 0.8rem 0; }
  .form-field { margin-bottom: 1.2rem; }
  .form-field input, .form-field select, .form-field textarea { min-height: 48px; padding: 12px 14px; }
  .form-field label { font-size: 1rem; margin-bottom: 8px; }
}

/* Slightly larger inputs and buttons for tablets */
@media (max-width: 1024px) {
  .form-field input, .form-field textarea { font-size: 1.02rem; padding: 12px; }
  .btn { padding: 0.9rem 1.25rem; }
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

/* Store card refinements */
.store-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
}
.store-card-img img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}
.store-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 0.4rem;
}
.store-card h3, .store-card-body h3 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--text-main);
}
.store-card p, .store-card-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.store-card .btn-outline {
  margin-top: 0.8rem;
  align-self: flex-start;
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .store-grid { gap: 1rem; }
  .store-card { padding: 1rem; }
  .store-card-img img { width: 58px; height: 58px; }
}

/* Previews grid on main page */
.store-previews { margin-top: 1.2rem; }
.previews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  align-items: start;
}
.preview-block h4 { margin: 0 0 0.6rem 0; color: var(--text-main); font-size: 1rem; font-weight: 700; }
.preview-card {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 0.8rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.preview-card:hover {
  border-color: var(--primary);
  background: rgba(0,242,255,0.05);
  transform: translateX(4px);
}
.preview-card .product-image img { width: 54px; height: 54px; border-radius: 8px; }
.preview-card .product-info { padding: 0; }
.preview-card h3 { font-size: 1rem; margin-bottom: 0.3rem; font-weight: 700; }
.preview-card .product-price { font-size: 0.95rem; color: var(--primary); margin-bottom: 0.3rem; font-weight: 600; }

/* Button badge for fraction indication (1/4 etc.) */
.btn-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.18rem 0.45rem;
  border-radius: 8px;
  margin-right: 0.6rem;
  vertical-align: middle;
}
.preview-buy { display: inline-flex; align-items: center; gap: 0.4rem; }

@media (max-width:480px){
  .previews-grid { grid-template-columns: 1fr; }
  .preview-card { gap: 0.6rem; }
}


/* Snowfall (seasonal) */
#snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 900; /* behind header/content to avoid covering text */
}
.snowflake {
  position: fixed;
  top: -10vh;
  color: #ffffff;
  opacity: 0.85;
  user-select: none;
  will-change: transform, opacity;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
  animation-name: fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes fall {
  0% { transform: translateY(-10vh) rotate(0deg); }
  100% { transform: translateY(110vh) rotate(360deg); }
}

/* Small accessibility helper: reduce motion */
@media (prefers-reduced-motion: reduce) {
  .snowflake { animation-play-state: paused !important; opacity: 0.6; }
}

/* Fade helper for snowflakes: use CSS variable to control duration from JS */
.snowflake--fading {
  opacity: 0 !important;
  transform: translateY(-10px) !important;
  transition: opacity var(--snow-fade-duration, 600ms) ease-out, transform var(--snow-fade-duration, 600ms) ease-out;
  pointer-events: none;
}

/* ============================================
   PRODUCT CARDS (Section Pages)
   ============================================ */

.product-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,242,255,0.08), rgba(188,19,254,0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-10px) scale(1.01);
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(0,242,255,0.18);
  background: linear-gradient(135deg, rgba(0,242,255,0.08), rgba(188,19,254,0.04));
}

.product-card:hover::before,
.product-card:focus-within::before {
  opacity: 1;
}

.product-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.product-image {
  flex-shrink: 0;
}

.product-image img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(0,242,255,0.08);
  border: 1px solid var(--border);
  padding: 0.4rem;
  transition: all 0.25s ease;
}

.product-card:hover .product-image img {
  background: rgba(0,242,255,0.12);
  transform: scale(1.05);
}

/* Loading and Error States */
.product-card.loading .product-image img {
  background: linear-gradient(
    90deg,
    rgba(0,242,255,0.05),
    rgba(0,242,255,0.15),
    rgba(0,242,255,0.05)
  );
  background-size: 1200px 100%;
  animation: shimmer 2s infinite;
  opacity: 0.6;
}

.product-card.loaded .product-image img {
  animation: fadeIn 0.4s ease-in;
}

.product-card.error .product-image img {
  opacity: 0.5;
  filter: grayscale(50%);
}

.product-badge {
  display: inline-block;
  background: rgba(0,242,255,0.15);
  color: var(--primary);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0,242,255,0.25);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.product-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.product-features li .material-symbols-outlined {
  flex-shrink: 0;
  color: #10b981;
  font-size: 1.3rem;
  font-weight: 700;
}

.product-guarantee {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 10px;
  color: #10b981;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.4rem;
}

.product-guarantee .material-symbols-outlined {
  flex-shrink: 0;
  font-size: 1.2rem;
}

/* Button Badge (1/4, 2/4, etc.) */
.btn-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  margin-right: 0.5rem;
  vertical-align: middle;
  letter-spacing: 0.3px;
  animation: badgePulse 2.5s ease-in-out infinite;
  line-height: 1.2;
  white-space: nowrap;
}

/* Button with badge alignment */
.btn .btn-badge {
  vertical-align: middle;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* Section specific layout */
.streaming-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .streaming-products {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-card {
    padding: 1.4rem;
  }

  .product-info h3 {
    font-size: 1.05rem;
  }

  .price-amount {
    font-size: 1.5rem;
  }
}

/* Enhanced dropdown styling (hidden by default) */
.nav-menu li { position: relative; }

.nav-menu .nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1300;
  pointer-events: none;
}

.nav-menu li:hover > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
}

.nav-dropdown a:hover {
  color: var(--primary);
  background: rgba(0, 242, 255, 0.05);
  border-left-color: var(--primary);
  padding-left: 1.2rem;
}

/* Diseño y Marca enhanced panel */
.branding-panel {
  width: 420px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.02));
  border-radius: 10px;
}
.branding-header {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.branding-symbol {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,242,255,0.08), rgba(188,19,254,0.06));
  border-radius: 12px;
  font-size: 1.4rem;
  color: var(--primary);
  box-shadow: 0 8px 20px rgba(0,242,255,0.06);
}
.branding-title h3 { margin: 0; font-size: 1.05rem; color: var(--text-main); }
.branding-desc { margin: 0.2rem 0 0; color: var(--text-muted); font-size: 0.9rem; }

.branding-items { display: flex; gap: 0.6rem; margin-top: 6px; }
.branding-item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 0.6rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-main);
  background: rgba(255,255,255,0.01);
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  flex: 1 1 50%;
}
.branding-item:hover { transform: translateY(-6px); border-color: rgba(0,242,255,0.12); box-shadow: 0 12px 30px rgba(0,242,255,0.06); }
.bi-icon { width: 44px; height: 44px; display:flex; align-items:center; justify-content:center; border-radius:8px; background: rgba(0,0,0,0.12); color: var(--primary); font-size: 1.2rem; }
.bi-content strong { display:block; color: var(--text-main); font-size: 0.98rem; }
.bi-sub { display:block; color: var(--text-muted); font-size: 0.82rem; margin-top: 2px; }

.branding-footer { display:flex; justify-content: flex-end; margin-top: 0.4rem; }
.nav-view-all { text-decoration: none; }

/* Accessibility & Micro-interactions for Branding Panel */
.branding-symbol { position: relative; cursor: default; }
.branding-symbol:focus { outline: none; }
.branding-symbol:focus-visible { box-shadow: 0 0 0 4px rgba(0,242,255,0.12), 0 6px 18px rgba(0,0,0,0.6); transform: translateY(-2px); }

.branding-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,10,10,0.98);
  color: var(--text-main);
  border: 1px solid var(--border);
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  font-size: 0.85rem;
  box-shadow: 0 8px 26px rgba(0,0,0,0.5);
  white-space: nowrap;
  z-index: 1400;
}
.branding-tooltip::after {
  content: ''; 
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: rgba(10,10,10,0.98);
}

/* Item-level tooltips */
.branding-item-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,10,10,0.98);
  color: var(--text-main);
  border: 1px solid var(--border);
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  font-size: 0.85rem;
  box-shadow: 0 8px 26px rgba(0,0,0,0.5);
  white-space: normal;
  max-width: 200px;
  z-index: 1400;
  line-height: 1.3;
}
.branding-item-tooltip::after {
  content: ''; 
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: rgba(10,10,10,0.98);
}

/* Micro-interactions for branding items */
.branding-item .bi-icon { transition: transform 180ms ease, box-shadow 180ms ease; }
.branding-item:hover .bi-icon, .branding-item:focus .bi-icon, .branding-item:focus-visible .bi-icon { transform: translateY(-6px) rotate(-6deg) scale(1.06); box-shadow: 0 10px 26px rgba(0,242,255,0.06); }

/* Make branding-item keyboard focus visible */
.branding-item { outline: none; transition: all 160ms ease; }
.branding-item:focus-visible { 
  box-shadow: 0 0 0 3px rgba(0,242,255,0.2), 0 0 0 6px rgba(0,242,255,0.1);
  transform: translateY(-4px);
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Enhance symbol focus state */
.branding-symbol { transition: all 160ms ease; }
.branding-symbol:focus-visible { 
  box-shadow: 0 0 0 4px rgba(0,242,255,0.15), 0 8px 24px rgba(0,242,255,0.08);
  transform: translateY(-3px) scale(1.08);
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* Ensure a clear focus style for interactive controls globally for keyboard users */
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }


/* Decorative separator at the top of dropdown to avoid empty feeling */
.nav-dropdown::before {
  content: '';
  display: block;
  height: 6px;
  width: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(0,242,255,0.12), rgba(188,19,254,0.08));
  margin-bottom: 8px;
}

/* Small entrance animation for the panel */
.branding-panel { transform-origin: top left; animation: panel-fade-in 300ms ease both; }
@keyframes panel-fade-in { from { opacity: 0; transform: translateY(-6px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .branding-panel { width: auto; }
  .branding-items { flex-direction: column; }
}

/* Ensure nav links have good alignment */
.nav-link {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Responsive nav adjustments */
@media (max-width: 1024px) {
  .nav-menu .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-top: 0.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    pointer-events: none;
  }

  .nav-menu li:hover > .nav-dropdown {
    max-height: 400px;
    pointer-events: auto;
  }

  .nav-dropdown a {
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
  }
}

/* Store Links Section Navigation */
.store-links-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.store-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.store-links .btn {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

@media (max-width: 768px) {
  .store-links {
    flex-direction: column;
    gap: 0.8rem;
  }
  .store-links .btn {
/* Center the hero content block so the large heading sits visually in the middle
   without changing the two-column composition. The text stays left-aligned
   inside its own block but the block is centered within the hero. */
.hero-container {
  justify-items: center;
}
.hero-text {
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}
.hero-visual {
  justify-self: center;
}

@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { order: 2; }
  .hero-text { order: 1; }
}
    width: 100%;
  }
}

.store-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, box-shadow, border-color, background;
  position: relative;
  overflow: hidden;
}

.store-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,242,255,0.08), rgba(188,19,254,0.06));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.store-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(0,242,255,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
  background: rgba(0,242,255,0.03);
}

.store-card:hover::before {
  opacity: 1;
}

/* Hover glow / lift animation (subtle, accessible-friendly) */
.store-card {
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.store-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(450px 200px at 10% 20%, rgba(0,242,255,0.06), transparent 8%),
              radial-gradient(300px 120px at 90% 80%, rgba(188,19,254,0.04), transparent 8%);
  opacity: 0;
  transition: opacity 320ms ease;
}

.store-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 40px rgba(0,242,255,0.12), 0 0 60px rgba(188,19,254,0.06);
}

.store-card:hover::after { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .store-card, .store-card:hover { transform: none !important; transition: none !important; }
  .store-card::after { display: none; }
}

.store-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 242, 255, 0.1);
  border: 1px solid var(--border);
}

.store-title { font-weight: 800; }
.store-desc { color: var(--text-muted); }
.store-action { margin-top: auto; font-weight: 700; color: var(--primary); }

.store-cta { text-align: center; margin-top: 2rem; }

.store-embed {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.store-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.store-banner {
  display: grid;
  justify-items: center;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.store-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.store-banner-actions { display: flex; gap: 1rem; }

.btn.added {
  background: #10b981;
  border-color: rgba(16,185,129,0.5);
  box-shadow: 0 0 25px rgba(16,185,129,0.35);
  color: #00110a;
}

@keyframes tickPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.store-section {
  position: relative;
}
.blocked-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 20px;
  width: 100%;
  background-color: #212121;
  border: none;
  color: #e8e8e8;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: not-allowed;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blocked-btn span { display: flex; align-items: center; z-index: 2; }
.blocked-btn::before { content: ""; position: absolute; inset: 0; translate: 0 105%; background-color: #F53844; transition: all 0.3s; }
.blocked-btn svg { width: 28px; height: 28px; fill: #F53844; transition: all 0.3s; }
.blocked-btn:hover { animation: shake 0.2s linear 1; }
.blocked-btn:hover::before { translate: 0 0; }
.blocked-btn:hover svg { fill: #e8e8e8; }

@keyframes shake { 0% { rotate: 0deg; } 33% { rotate: 10deg; } 66% { rotate: -10deg; } 100% { rotate: 10deg; } }
.loader {
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.truckWrapper {
  width: 200px;
  height: 100px;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: flex-end;
  overflow-x: hidden;
}

.truckBody {
  width: 130px;
  height: auto;
  margin-bottom: 6px;
  animation: motion 0.8s linear infinite;
}

@keyframes motion {
  0% { transform: translateY(0px); }
  50% { transform: translateY(3px); }
  100% { transform: translateY(0px); }
}

.truckTires {
  width: 130px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 15px;
  position: absolute;
  bottom: 0;
}
.truckTires svg { width: 24px; }

.road {
  width: 100%;
  height: 1.5px;
  background-color: #282828;
  position: relative;
  bottom: 0;
  align-self: flex-end;
  border-radius: 3px;
}
.road::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 100%;
  background-color: #282828;
  right: -50%;
  border-radius: 3px;
  animation: roadAnimation 0.9s linear infinite;
  border-left: 10px solid white;
}
.road::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  background-color: #282828;
  right: -65%;
  border-radius: 3px;
  animation: roadAnimation 0.9s linear infinite;
  border-left: 4px solid white;
}

.lampPost {
  position: absolute;
  bottom: 0;
  right: -90%;
  height: 90px;
  animation: roadAnimation 0.9s linear infinite;
}

@keyframes roadAnimation {
  0% { transform: translateX(0px); }
  100% { transform: translateX(-350px); }
}

/* Delivery Section */
.delivery-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.delivery-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.delivery-feature {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.delivery-feature:hover {
  border-color: var(--primary);
  background: rgba(0, 242, 255, 0.05);
  transform: translateX(5px);
}

.delivery-icon {
  font-size: 2.5rem;
  color: var(--primary);
}

.delivery-feature h3 {
  font-size: 1.3rem;
  margin: 0;
}

.delivery-feature p {
  margin: 0;
  color: var(--text-muted);
}

.delivery-map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 242, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
  min-height: 300px;
}

.delivery-cta {
  text-align: center;
}

/* Promotions / Social Section */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(188, 19, 254, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.social-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 45px rgba(0,242,255,0.15);
}

.social-card:hover::before {
  opacity: 1;
}

.social-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.social-card h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
}

.social-card p {
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.social-link {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--primary);
  color: #000;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
}

.social-card:hover .social-link {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--primary-dim);
}

/* Videos Section */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.video-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  margin: 0;
  font-size: 1.2rem;
}

.video-card p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FAQ Section */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--primary);
  background: rgba(0, 242, 255, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question::after {
  content: '›';
  font-size: 2rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  max-height: 500px;
}

/* bg-darker helper */
.bg-darker {
  background: #000 !important;
}

/* Text align helper */
.text-center {
  text-align: center !important;
}

/* Success Cases Section */
.success-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.success-case-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.success-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.success-case-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.success-header {
  margin-bottom: 1.5rem;
}

.business-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.business-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
}

.business-location {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.stars-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.08), rgba(188, 19, 254, 0.05));
  border: 1px solid var(--border);
  border-radius: 16px;
}

.stars-before,
.stars-after {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.stars-before .label,
.stars-after .label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.star {
  font-size: 2.5rem;
  color: var(--primary);
  animation: starPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.star.empty {
  color: var(--text-muted);
  opacity: 0.2;
}

.rating {
  margin-left: 1rem;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

.arrow {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  animation: slideArrow 1.5s ease-in-out infinite;
}

.reviews-showcase {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.review-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.review-item:hover {
  border-color: var(--primary);
  background: rgba(0, 242, 255, 0.05);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.reviewer-name {
  font-weight: 600;
  color: var(--text-main);
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-stars {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.review-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  font-style: italic;
}

.success-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.success-cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.05), rgba(188, 19, 254, 0.05));
  border: 1px solid var(--border);
  border-radius: 16px;
}

.success-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

@keyframes starPop {
  0% { transform: scale(0.5); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes slideArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* Testimonios */
.testimonios-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.testimonio-card {
  background: rgba(0,242,255,0.07);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  max-width: 340px;
  min-width: 220px;
  color: var(--text-main);
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
  font-size: 1.08rem;
  position: relative;
  margin-bottom: 1.5rem;
  transition: transform 0.2s;
}
.testimonio-card:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px 0 rgba(0,242,255,0.18);
}
.testimonio-nombre {
  display: block;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #20ba58);
  border-radius: 50%;
  box-shadow: 0 4px 24px 0 rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  border: 3px solid white;
  animation: pulse-whatsapp 2s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 8px 32px 0 rgba(37, 211, 102, 0.6);
  animation: none;
}

/* Chat Widget */
.chat-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  color: #000;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0, 242, 255, 0.5), 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 998;
  animation: chat-float 3s ease-in-out infinite;
}

.chat-toggle:hover {
  transform: scale(1.1) rotate(-10deg);
  box-shadow: 0 0 40px rgba(0, 242, 255, 0.8), 0 15px 50px rgba(0, 0, 0, 0.4);
}

.chat-widget {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 380px;
  max-height: 0;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 998;
  transition: all 0.3s ease;
}

.chat-widget.active {
  max-height: 550px;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(188, 19, 254, 0.1));
  border-bottom: 1px solid var(--border);
}

.chat-header h3 {
  font-size: 1rem;
  margin: 0;
  color: var(--text-main);
}

.chat-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 350px;
}

.chat-message {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  word-wrap: break-word;
  animation: chat-message-in 0.3s ease;
  font-size: 0.9rem;
}

.chat-message.user {
  background: rgba(0, 242, 255, 0.15);
  border: 1px solid rgba(0, 242, 255, 0.3);
  color: var(--text-main);
  margin-left: 2rem;
  text-align: right;
}

.chat-message.admin {
  background: rgba(188, 19, 254, 0.15);
  border: 1px solid rgba(188, 19, 254, 0.3);
  color: var(--text-main);
  margin-right: 2rem;
}

.chat-message.system {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  margin: 0;
}

.chat-input-area {
  display: flex;
  gap: 0.8rem;
  padding: 1rem;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

#chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem;
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

#chat-input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(0, 242, 255, 0.05);
}

.btn-send {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  color: #000;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  font-family: var(--font-main);
}

.btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

.btn-send:active {
  transform: translateY(0);
}

/* Animations Chat */
@keyframes chat-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes chat-slide-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes chat-message-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Chat Responsive */
@media screen and (max-width: 480px) {
  .chat-widget {
    width: calc(100vw - 60px);
    right: 0;
    left: 0;
    margin: 0 auto;
  }

  .chat-toggle {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Iconos en tarjetas de redes sociales */
.icon-red-social {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 1rem;
  background: #fff;
  box-shadow: 0 2px 8px #0002;
}

/* Botón de red social */
.btn-red-social {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background: #00f2ff;
  color: #000;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px #00f2ff55;
  transition: background 0.18s, color 0.18s;
}
.btn-red-social:hover {
  background: #00c2cc;
  color: #fff;
}

/* Animación de pulso para WhatsApp flotante */
@keyframes pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 4px 24px 0 rgba(37, 211, 102, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 32px 0 rgba(37, 211, 102, 0.7);
    transform: scale(1.05);
  }
}

/* ============================================
   STREAMING PRODUCTS - Nuevos Estilos
   ============================================ */

.streaming-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
  margin: 3rem 0;
}

.product-card {
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.08) 0%, rgba(188, 19, 254, 0.05) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0, 242, 255, 0.2);
  border-color: rgba(0, 242, 255, 0.4);
}

.product-header {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #1a1a2e;
}

.product-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

/* Category-specific micro-animations */
.product-card[data-category="streaming"] .product-image {
  box-shadow: inset 0 -40px 80px rgba(0,242,255,0.03);
  transition: box-shadow 420ms ease, transform 420ms ease;
}
.product-card[data-category="streaming"]:hover {
  transform: translateY(-10px) scale(1.03);
}
@keyframes streamingPulse {
  0% { filter: saturate(0.95) hue-rotate(0deg); }
  50% { filter: saturate(1.05) hue-rotate(6deg); }
  100% { filter: saturate(0.95) hue-rotate(0deg); }
}
.product-card[data-category="streaming"]:hover .product-image img {
  animation: streamingPulse 2.6s ease-in-out both;
}

.product-card[data-category="gaming"] {
  border-color: rgba(255,190,0,0.06);
}
.product-card[data-category="gaming"] .product-badge {
  background: linear-gradient(135deg, #ffb347 0%, #ffcc33 100%);
  color: #111;
}
.product-card[data-category="gaming"]:hover {
  transform: translateY(-12px) rotate(-1deg) scale(1.035);
  box-shadow: 0 18px 48px rgba(255,150,0,0.08);
}
@keyframes gamingGlow {
  0% { box-shadow: 0 0 0 rgba(255,150,0,0); }
  50% { box-shadow: 0 0 28px rgba(255,150,0,0.08); }
  100% { box-shadow: 0 0 0 rgba(255,150,0,0); }
}
.product-card[data-category="gaming"]:hover .product-image img {
  animation: gamingGlow 1.8s linear;
}

.product-card[data-category="design"] {
  transform-origin: center;
}
.product-card[data-category="design"] .product-image {
  background: linear-gradient(135deg, #16121a 0%, #1e1930 100%);
}
.product-card[data-category="design"]:hover {
  transform: translateY(-8px) scale(1.02) rotate(0.2deg);
  box-shadow: 0 14px 36px rgba(120,80,200,0.06);
}

.product-card[data-category="ai"] .product-image img {
  transition: transform 420ms ease, filter 420ms ease;
  filter: drop-shadow(0 6px 18px rgba(54,144,255,0.06));
}
.product-card[data-category="ai"]:hover .product-image img {
  transform: scale(1.12) translateY(-6px);
  filter: drop-shadow(0 10px 30px rgba(54,144,255,0.12));
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #00f2ff 0%, #bc13fe 100%);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 242, 255, 0.3);
}

.product-info {
  padding: 1.6rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #fff;
  line-height: 1.3;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0, 242, 255, 0.2);
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: #00f2ff;
  line-height: 1;
}

.price-period {
  font-size: 0.85rem;
  color: #a0a0a0;
  text-transform: lowercase;
  font-weight: 600;
}

.product-features {
  list-style: none;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: #c0c0c0;
  line-height: 1.4;
}

.product-features .material-symbols-outlined {
  font-size: 1.2rem;
  color: #00f2ff;
  flex-shrink: 0;
  margin-top: 0.2rem;
  line-height: 1.2;
}

.product-guarantee {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  padding: 0.8rem 1rem;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #25d366;
}

.product-guarantee .material-symbols-outlined {
  font-size: 1.1rem;
}

/* Responsive para tablets y mobile */
@media (max-width: 768px) {
  .streaming-products {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.6rem;
  }

  .product-header {
    height: 150px;
  }

  .product-info {
    padding: 1.2rem;
  }

  .product-info h3 {
    font-size: 1.1rem;
  }

  .price-amount {
    font-size: 1.6rem;
  }

  .product-features li {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }
}

@media (max-width: 480px) {
  .streaming-products {
    grid-template-columns: 1fr;
  }

  .product-card {
    border-radius: 12px;
  }

  .product-header {
    height: 140px;
  }

  .product-info {
    padding: 1rem;
  }

  .product-info h3 {
    font-size: 1rem;
  }

  .price-amount {
    font-size: 1.4rem;
  }

  .product-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }
}

/* ============================================
   AI BOT PLANS - Estilos para Planes de IA
   ============================================ */

.bot-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.4rem;
  margin: 3rem 0;
}

.bot-plan-card {
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.08) 0%, rgba(188, 19, 254, 0.05) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, scale 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.bot-plan-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 40px rgba(0, 242, 255, 0.25);
  border-color: rgba(0, 242, 255, 0.4);
}

.bot-plan-card.popular {
  scale: 1.06;
  border: 2px solid #00f2ff;
  box-shadow: 0 8px 32px rgba(0, 242, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bot-plan-card.popular:hover {
  box-shadow: 0 16px 48px rgba(0, 242, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.plan-badge-premium {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00f2ff 0%, #bc13fe 100%);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 242, 255, 0.3);
}

.plan-header {
  text-align: center;
  margin-bottom: 1.8rem;
  margin-top: 0.5rem;
}

.plan-badge {
  display: inline-block;
  background: rgba(0, 242, 255, 0.2);
  color: #00f2ff;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(0, 242, 255, 0.3);
}

.plan-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
}

.price-currency {
  font-size: 1.2rem;
  color: #00f2ff;
  font-weight: 700;
}

.price-large {
  font-size: 3.2rem;
  font-weight: 800;
  color: #00f2ff;
  line-height: 1;
}

.plan-price .price-period {
  font-size: 0.85rem;
  color: #a0a0a0;
  align-self: flex-end;
  margin-bottom: 0.8rem;
  text-transform: lowercase;
}

.plan-features {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 242, 255, 0.1);
  font-size: 0.95rem;
  color: #c0c0c0;
  line-height: 1.4;
}

.feature-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.feature-item .material-symbols-outlined {
  font-size: 1.3rem;
  color: #25d366;
  flex-shrink: 0;
  font-weight: 800;
}

.btn-secondary {
  background: linear-gradient(135deg, #bc13fe 0%, #7d00ff 100%);
  border: 1px solid rgba(188, 19, 254, 0.5);
  color: #fff;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #9600cc 0%, #6200dd 100%);
  box-shadow: 0 8px 20px rgba(188, 19, 254, 0.3);
}

/* Responsive para tablets y mobile */
@media (max-width: 768px) {
  .bot-plans-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .bot-plan-card.popular {
    scale: 1;
  }

  .plan-header h3 {
    font-size: 1.3rem;
  }

  .price-large {
    font-size: 2.4rem;
  }

  .feature-item {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .plan-badge-premium {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .bot-plan-card {
    padding: 1.5rem;
  }

  .plan-header {
    margin-bottom: 1.4rem;
  }

  .plan-header h3 {
    font-size: 1.1rem;
  }

  .price-large {
    font-size: 2rem;
  }

  .feature-item {
    font-size: 0.85rem;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    padding-bottom: 0.6rem;
  }

  .feature-item .material-symbols-outlined {
    font-size: 1.1rem;
  }
}

/* ============================================
   PRODUCT DETAIL MODAL + ANIMATIONS
   ============================================ */

.product-modal {
  max-width: 920px;
  width: calc(100% - 2rem);
  background: linear-gradient(180deg, rgba(10,12,20,0.98), rgba(8,10,16,0.98));
  border-radius: 12px;
  padding: 0.6rem;
  overflow: hidden;
  animation: modalPop 320ms ease forwards;
}

.product-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1rem;
}

.product-modal-image img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  transition: transform 0.45s cubic-bezier(.2,.9,.2,1);
}

.product-modal-info { padding: 0.4rem 0.6rem; }
.product-modal-price { font-size: 2.2rem; font-weight:800; color: var(--primary); margin-bottom: 0.6rem; }
.product-modal-features { list-style: none; padding-left: 0; margin-bottom: 0.8rem; }
.product-modal-features li { margin-bottom: 0.5rem; color: #cfd8e3; }
.product-modal-desc { color: #a8b4c6; margin-bottom: 1rem; }
.product-modal .close-btn { position: absolute; right: 12px; top: 10px; z-index: 60; background: transparent; border: none; color: #fff; }

.modal.hidden { display: none; }
.modal.active { display: block; position: fixed; inset: 0; z-index: 2000; background: rgba(2,6,12,0.6); display: flex; align-items: center; justify-content: center; padding: 1.2rem; }

@keyframes modalPop {
  0% { transform: translateY(12px) scale(0.98); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* Hover micro-animations for product cards */
.product-card { transform-origin: center; transition: transform 260ms cubic-bezier(.2,.9,.2,1), box-shadow 260ms; }
.product-card:hover { transform: translateY(-8px) rotate(-0.5deg) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.55); }
.product-card .product-badge { transition: transform 260ms, box-shadow 260ms; }
.product-card:hover .product-badge { transform: translateY(-6px); box-shadow: 0 6px 18px rgba(0,242,255,0.12); }

/* small bounce on image hover */
.product-card .product-image img { transition: transform 420ms cubic-bezier(.22,.9,.3,1); }
.product-card:hover .product-image img { transform: scale(1.08) translateY(-6px); }

/* Responsive modal grid */
@media (max-width: 768px) {
  .product-modal-body { grid-template-columns: 1fr; }
  .product-modal-image img { max-height: 260px; }
}

@media (max-width: 480px) {
  .product-modal-body { grid-template-columns: 1fr; padding: 1rem; }
  .product-modal-image { min-height: 200px; }
  .product-modal-image img { max-height: 200px; }
  .product-modal-price { font-size: 1.8rem; }
  .product-modal .close-btn { right: 8px; top: 8px; font-size: 1.5rem; }
}

/* ============================================
   REORGANIZED STORE SECTION
   ============================================ */

/* Store Introduction Section */
.store-intro {
  background: linear-gradient(135deg, rgba(0,242,255,0.05), rgba(188,19,254,0.03));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.store-intro-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.store-intro-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Category Introduction Cards */
.store-categories-intro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.category-intro-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.category-intro-card:hover {
  border-color: var(--primary);
  background: rgba(0,242,255,0.06);
  transform: translateY(-4px);
}

.category-intro-card .category-number {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  margin-bottom: 0.8rem;
}

.category-intro-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.category-intro-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Store Products Section */
.store-products-section {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 3rem;
}

/* Individual Category */
.store-category {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  overflow: hidden;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--primary);
}

.category-header .category-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 12px;
  flex-shrink: 0;
}

.category-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
  color: var(--text-main);
  flex-grow: 1;
}

.category-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  white-space: nowrap;
}

/* Category Products Grid */
.category-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Store Links Section */
.store-links-section {
  background: rgba(0,242,255,0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
}

.store-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  justify-items: center;
}

.store-links .btn {
  min-width: 220px;
}

/* Responsive Store Section */
@media (max-width: 1024px) {
  .store-intro {
    padding: 2rem 1.5rem;
  }

  .store-intro-content h3 {
    font-size: 1.5rem;
  }

  .category-header {
    gap: 1rem;
  }

  .category-header h3 {
    font-size: 1.4rem;
  }

  .category-header p {
    display: none;
  }

  .category-products {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .store-intro {
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
  }

  .store-intro-content h3 {
    font-size: 1.3rem;
  }

  .store-intro-content p {
    font-size: 1rem;
  }

  .store-categories-intro {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .store-products-section {
    gap: 2.5rem;
  }

  .store-category {
    padding: 1.5rem;
  }

  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .category-header .category-badge {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .category-header h3 {
    font-size: 1.3rem;
  }

  .category-products {
    gap: 1.5rem;
  }

  .store-links {
    grid-template-columns: 1fr;
  }

  .store-links .btn {
    width: 100%;
  }

  .store-links-section {
    padding: 1.5rem;
  }
}

/* ===========================
   CAROUSEL STYLES - Tienda Digital
   =========================== */

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem 0;
}

.carousel-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 2rem;
}

.carousel-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
}

.carousel-card {
  background: rgba(20, 20, 30, 0.8);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  max-width: 380px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.carousel-card:hover {
  background: rgba(20, 20, 30, 0.95);
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 242, 255, 0.15);
}

.carousel-card .card-number {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.carousel-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.carousel-card .card-category {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.carousel-card .card-features-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.carousel-card .card-features-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.carousel-card .card-features-list .material-symbols-outlined {
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.carousel-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Carousel Buttons */
.carousel-btn {
  background: rgba(0, 242, 255, 0.1);
  border: 1px solid var(--primary);
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.carousel-btn:hover {
  background: var(--primary);
  color: #000;
  box-shadow: 0 4px 16px rgba(0, 242, 255, 0.3);
  transform: scale(1.1);
}

.carousel-btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
}

.indicator:hover {
  transform: scale(1.2);
}

.indicator:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Responsive Carousel */
@media (max-width: 1024px) {
  .carousel-container {
    gap: 1rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-card {
    max-width: 100%;
    padding: 1.5rem;
  }

  .carousel-card h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .carousel-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
  }

  .carousel-card {
    max-width: 100%;
    min-height: auto;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-track {
    gap: 1rem;
  }

  .carousel-card .card-features-list li {
    font-size: 0.9rem;
  }
}

/* Menu Toggle - Desktop Support */
@media (min-width: 768px) {
  .menu-toggle {
    display: flex !important;
  }

  .nav-menu {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    height: auto !important;
    width: auto !important;
    background: rgba(10, 10, 15, 0.98);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.5rem;
    min-width: 350px;
    max-width: 500px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
    display: none !important;
    z-index: 1200;
    backdrop-filter: blur(10px);
    transform: none !important;
    overflow: visible !important;
  }

  .nav-menu.active {
    display: block !important;
    animation: slideDown 0.3s ease-out;
    transform: none !important;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0 !important;
  }

  .nav-menu ul li {
    animation: none;
  }

  .nav-menu a, .nav-menu .nav-link {
    padding: 0.7rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: transparent !important;
    border: none !important;
    display: block !important;
    width: auto !important;
  }

  .nav-menu a:hover, .nav-menu .nav-link:hover {
    background: rgba(0, 242, 255, 0.1) !important;
  }

  .nav-menu .dropdown {
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 0.5rem;
    margin-left: 1rem;
    border-left: 2px solid rgba(0, 242, 255, 0.3);
    display: none;
  }

  .nav-menu li:hover > .dropdown {
    display: block;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  /* Hide overlay on desktop */
  .nav-overlay {
    display: none !important;
  }
}

/* Keyboard Navigation Support */
@media (prefers-reduced-motion: reduce) {
  .carousel-track,
  .carousel-card,
  .carousel-btn,
  .indicator {
    transition: none;
  }
}

/* ===========================
   SECTION COLOR PALETTE
   Diferenciación por sección (1/4, 2/4, 3/4, 4/4)
   =========================== */

/* 1/4 - STREAMING (Azul/Tecnología) */
body:has(.animated-bg[style*="0099cc"]) {
  --section-primary: #0099cc;
}

.section[style*="0099cc"] .section-header .subtitle {
  color: #0099cc;
}

.section[style*="0099cc"] .subtitle::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #0099cc;
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* 2/4 - DISEÑO Y MARCA (Naranja/Creatividad) */
body:has(.animated-bg[style*="ff9900"]) {
  --section-primary: #ff9900;
}

.section[style*="ff9900"] .section-header .subtitle {
  color: #ff9900;
}

/* 3/4 - PROGRAMACIÓN (Verde/Tecnología) */
body:has(.animated-bg[style*="00cc66"]) {
  --section-primary: #00cc66;
}

.section[style*="00cc66"] .section-header .subtitle {
  color: #00cc66;
}

/* 4/4 - PREMIUM (Dorado/Exclusividad) */
body:has(.animated-bg[style*="ffcc00"]) {
  --section-primary: #ffcc00;
}

.section[style*="ffcc00"] .section-header .subtitle {
  color: #ffcc00;
}

/* Section color accent line */
.section-header::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* Product cards with section-specific glow */
.streaming-products .product-card {
  position: relative;
}

.streaming-products .product-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 153, 204, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.streaming-products .product-card:hover::after {
  opacity: 1;
}

/* ===========================
   TIENDA HERO - Nueva Sección Principal
   =========================== */

.tienda-hero {
  position: relative;
  min-height: 500px;
  background: linear-gradient(135deg, rgba(7, 16, 24, 0.95), rgba(20, 25, 45, 0.95));
  padding: 4rem 0;
  overflow: hidden;
  margin: 0;
}

.tienda-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.tienda-glow-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 242, 255, 0.08), transparent);
  top: -100px;
  left: -100px;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.tienda-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(188, 19, 254, 0.06), transparent);
  bottom: -150px;
  right: -150px;
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(20px); }
}

.tienda-hero .container {
  position: relative;
  z-index: 1;
}

/* Tienda Header */
.tienda-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tienda-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 242, 255, 0.1);
  border: 1px solid rgba(0, 242, 255, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #00f2ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.tienda-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

.tienda-title .gradient-text {
  background: linear-gradient(135deg, #00f2ff, #bc13fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tienda-subtitle {
  font-size: 1.2rem;
  color: #a0a0a0;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Garland Lights for Tienda */
.garland-lights-tienda {
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg,
    transparent 0%,
    #00f2ff 10%,
    transparent 20%,
    #bc13fe 30%,
    transparent 40%,
    #00f2ff 50%,
    transparent 60%,
    #bc13fe 70%,
    transparent 80%,
    #00f2ff 90%,
    transparent 100%);
  border-radius: 4px;
  margin: 1.5rem 0;
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.4), 0 0 40px rgba(188, 19, 254, 0.2);
  animation: lightPulse 3s ease-in-out infinite;
}

@keyframes lightPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Tienda Carousel */
.tienda-carousel {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.tienda-carousel-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(20, 25, 45, 0.8);
  border: 1px solid rgba(0, 242, 255, 0.15);
  backdrop-filter: blur(10px);
}

.tienda-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tienda-slide {
  flex: 0 0 100%;
  padding: 3rem;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tienda-slide-content {
  text-align: center;
  animation: fadeInSlide 0.5s ease-out;
  width: 100%;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: bounceIcon 0.8s ease-out;
}

@keyframes bounceIcon {
  0% { transform: scale(0) rotate(-45deg); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1) rotate(0deg); }
}

.tienda-slide-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tienda-slide-content p {
  font-size: 1.1rem;
  color: #c0c0c0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.slide-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.slide-benefits span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #a0a0a0;
}

.slide-benefits .material-symbols-outlined {
  color: #00f2ff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Carousel Buttons */
.tienda-carousel-btn {
  background: rgba(0, 242, 255, 0.1);
  border: 1px solid rgba(0, 242, 255, 0.3);
  color: #00f2ff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.tienda-carousel-btn:hover {
  background: #00f2ff;
  color: #000;
  box-shadow: 0 6px 24px rgba(0, 242, 255, 0.4);
  transform: scale(1.1);
}

.tienda-carousel-btn:focus {
  outline: 2px solid #00f2ff;
  outline-offset: 4px;
}

.tienda-carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Carousel Indicators */
.tienda-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.tienda-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #00f2ff;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tienda-indicator.active {
  background: #00f2ff;
  box-shadow: 0 0 16px rgba(0, 242, 255, 0.6);
  transform: scale(1.2);
}

.tienda-indicator:hover {
  transform: scale(1.3);
}

/* Responsive Tienda */
@media (max-width: 1024px) {
  .tienda-hero {
    min-height: 450px;
    padding: 3rem 0;
  }

  .tienda-title {
    font-size: 2.2rem;
  }

  .tienda-carousel {
    gap: 1rem;
  }

  .tienda-slide {
    padding: 2rem;
    min-height: 280px;
  }

  .slide-icon {
    font-size: 2.5rem;
  }

  .tienda-slide-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .tienda-hero {
    min-height: auto;
    padding: 2rem 0;
  }
  .store-links .btn {
    width: 100%;
  }

  /* Small screens: stack hero into single column and center its blocks */
  .hero-container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2rem;
  }
  .hero-text {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
    order: 1;
  }
  .hero-visual {
    justify-self: center;
    order: 2;
    height: 360px;
  }
    order: 3;
 

  .tienda-slide {
    padding: 1.5rem;
    min-height: 250px;
  }

  .slide-icon {
    font-size: 2rem;
  }

  .tienda-slide-content h2 {
    font-size: 1.3rem;
  }

  .tienda-slide-content p {
    font-size: 0.95rem;
  }

  .slide-benefits {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .tienda-carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}

/* =================================
   NUEVAS SECCIONES - PRODUCTOS
   ================================= */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 1.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(102, 126, 234, 0.5);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

.product-header {
  margin-bottom: 1.5rem;
}

.product-image {
  width: 84px;
  height: 84px;
  border-radius: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.product-badge {
  display: inline-block;
  background: rgba(71, 193, 123, 0.1);
  color: #47c17b;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex: 1;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.product-features .material-symbols-outlined {
  font-size: 1.2rem;
  color: #47c17b;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.currency-symbol {
  font-size: 1rem;
}

.btn-add-to-cart {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* TESTIMONIOS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(102, 126, 234, 0.5);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  font-size: 2.5rem;
}

.testimonial-info h4 {
  margin: 0;
  font-size: 1rem;
}

.testimonial-info p {
  margin: 0.25rem 0 0 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.testimonial-rating {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* EQUIPO */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.team-member:hover {
  border-color: rgba(102, 126, 234, 0.5);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
  transform: translateY(-6px);
}

.member-avatar {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.team-member h3 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.member-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.member-bio {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 1rem;
  padding: 0;
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(102, 126, 234, 0.5);
  background: rgba(102, 126, 234, 0.05);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::before {
  content: '▶';
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  width: 1rem;
  color: var(--primary);
}

.faq-item[open] .faq-question::before {
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  border-top: 1px solid rgba(102, 126, 234, 0.1);
}

/* POLÍTICA DE GARANTÍA */
.guarantee-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 800px;
  margin: 3rem auto 0;
}

.guarantee-card h3 {
  color: var(--primary);
  margin-top: 0;
}

.guarantee-card h4 {
  color: var(--text-main);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.guarantee-card ul,
.guarantee-card ol {
  color: var(--text-secondary);
  line-height: 1.8;
}

.guarantee-card li {
  margin-bottom: 0.75rem;
}

.guarantee-card ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.guarantee-card .material-symbols-outlined {
  color: #47c17b;
  font-size: 1.2rem;
}

/* GALERÍA DE VIDEOS - Store Videos */
.store-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.video-item {
  background: var(--bg-dark);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #000;
}

.video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-item:hover .video-overlay {
  opacity: 1;
}

.play-icon {
  font-size: 4rem;
  color: #00f2ff;
  text-shadow: 0 0 12px #00f2ff;
}

.video-info {
  padding: 1.5rem;
}

.video-info h4 {
  margin: 0 0 1rem 0;
  color: var(--text-main);
  font-size: 1.1rem;
}

.video-info .btn {
  width: 100%;
  text-align: center;
}

/* TABLA DE OFERTAS ROBUX */
.robux-table { /* removed - Robux offers no longer provided */ }
.robux-row { /* removed - Robux offers no longer provided */ }
.robux-row:hover { /* removed - Robux offers no longer provided */ }
.robux-amount { /* removed - Robux offers no longer provided */ }
.robux-prices { /* removed - Robux offers no longer provided */ }
.robux-prices .old-price { /* removed - Robux offers no longer provided */ }
.robux-prices .offer-price { /* removed - Robux offers no longer provided */ }
.robux-row .btn { /* removed - Robux offers no longer provided */ }

@media (max-width: 768px) {
  .robux-row { /* removed */ }
  .robux-prices { /* removed */ }
  .robux-row .btn { /* removed */ }
}

/* Responsive Products */
@media (max-width: 768px) {
  .products-grid,
  .testimonials-grid,
  .team-grid,
  .store-videos {
    grid-template-columns: 1fr;
  }
  
  .product-footer {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-add-to-cart {
    width: 100%;
    justify-content: center;
  }
}

/* --- Small UI animations --- */
@keyframes floaty {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 6px 18px rgba(0,0,0,0.2); }
  50% { transform: scale(1.02); box-shadow: 0 10px 30px rgba(0,0,0,0.28); }
  100% { transform: scale(1); box-shadow: 0 6px 18px rgba(0,0,0,0.2); }
}

@keyframes slideUp {
  0% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.floaty { animation: floaty 4s ease-in-out infinite; }
.pulse { animation: pulse 2.2s ease-in-out infinite; }
.slide-up { animation: slideUp 550ms cubic-bezier(.2,.9,.2,1) both; }
.shimmer { background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.06), rgba(255,255,255,0.02)); background-size: 200% 100%; animation: shimmer 2.5s linear infinite; }

/* apply subtle entrance to cards */
.pack-card, .social-card, .promo-card, .floating-card { will-change: transform, opacity; }
.pack-card { transform-origin: center; }

/* Apply a subtle entrance to all pack cards across the site */
.pack-card { animation: slideUp 420ms cubic-bezier(.2,.9,.2,1) both; }

/* ENHANCED: Pack Cards & Reseñas — Premium styling */
.pack-card {
  background: linear-gradient(135deg, var(--bg-panel), rgba(0,242,255,0.02));
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: all 400ms cubic-bezier(0.2, 0.9, 0.3, 1);
}
.pack-card:hover {
  border-color: rgba(0,242,255,0.5);
  box-shadow: 0 20px 60px rgba(0,242,255,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
  transform: translateY(-12px) scale(1.02);
}

/* Product Card enhancements */
.product-card {
  background: linear-gradient(135deg, var(--bg-panel), rgba(102,51,153,0.03));
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: all 400ms cubic-bezier(0.2, 0.9, 0.3, 1);
}
.product-card:hover {
  border-color: rgba(102,51,153,0.4);
  box-shadow: 0 20px 60px rgba(102,51,153,0.15), inset 0 1px 0 rgba(255,255,255,0.08);
  transform: translateY(-12px) scale(1.02);
}

/* Review cards in premium.html and other pages */
[style*="background: linear-gradient(135deg, rgba(0,242,255,0.1)"] {
  transition: all 380ms cubic-bezier(0.2, 0.9, 0.3, 1);
  border-color: rgba(0,242,255,0.15);
}
[style*="background: linear-gradient(135deg, rgba(0,242,255,0.1)"] :hover {
  border-color: rgba(0,242,255,0.4);
  box-shadow: 0 16px 50px rgba(0,242,255,0.15);
  transform: translateY(-8px);
}

/* Badge and price highlights */
.product-badge, .popular-tag {
  animation: slideUp 420ms cubic-bezier(0.2, 0.9, 0.2, 1) 100ms both;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.product-price, .price-amount {
  background: linear-gradient(135deg, var(--primary), #00f2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  transition: all 300ms ease;
}

/* Buttons in pack cards */
.pack-card .btn, .product-card .btn {
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.pack-card .btn:hover, .product-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* Smooth reveal for in-view cards (from IntersectionObserver) */
.in-view {
  animation: slideUp 500ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

/* Tooltip styles for micro interactions */
.lc-tooltip {
  position: fixed;
  z-index: 9999;
  background: rgba(14,20,28,0.96);
  color: var(--text-main);
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
  max-width: 260px;
}
.lc-tooltip.show { opacity: 1; transform: translateY(0) scale(1); }

/* ripple element used by micro-interactions (already used) */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transform: scale(0);
  animation: rippleAnim 700ms cubic-bezier(.2,.9,.2,1);
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(2.5); opacity: 0; }
}

/* Page centering adjustments: keep header/nav intact;
   center primary content horizontally (container) and
   vertically center the hero section for nicer presentation. */
:root {
  --header-height: 96px; /* approximate header height used for vertical centering */
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Ensure container is centered horizontally (already present, reinforce) */
.container {
  margin-left: auto;
  margin-right: auto;
}

/* Vertically center the hero area without affecting other sections */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height));
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

@media (max-width: 768px) {
  /* On small screens keep normal flow to avoid layout issues */
  .hero { min-height: auto; align-items: stretch; }
}
/* Animación de pulso para los números del countdown */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  text-align: center; /* centra todo el contenido */
}

.countdown-item {
  background: rgba(0, 242, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;   /* centra horizontal */
  justify-content: center; /* centra vertical */
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  animation: pulse 1.5s infinite;
  text-align: center;
}

.countdown-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.3rem;
  text-align: center;
}

/* ===== PREMIUM ANIMATIONS & EFFECTS ===== */

/* Gradient animation for borders */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px rgba(0, 242, 255, 0.5); }
  50% { box-shadow: 0 0 20px rgba(0, 242, 255, 0.8); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes rotating {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes textGlitch {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff;
  }
  20%, 24%, 55% {
    text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff;
  }
}

/* Enhanced button effects */
.btn, button[type="submit"], .social-link, a.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn::before, button[type="submit"]::before, .social-link::before, a.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::before, button[type="submit"]:active::before, .social-link:active::before, a.btn:active::before {
  width: 300px;
  height: 300px;
}

/* Card hover effects */
.card, .product-card, .social-card, [class*="card"] {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
}

.card::before, .product-card::before, .social-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 242, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.card:hover::before, .product-card:hover::before, .social-card:hover::before {
  opacity: 1;
}

/* Text selection with brand color */
::selection {
  background: var(--primary);
  color: #fff;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(15, 23, 32, 0.5);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
  transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  background: #00c2cc;
}

/* Input focus effects */
input:focus, textarea:focus, select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 242, 255, 0.2), inset 0 0 0 1px var(--primary);
  transform: scale(1.01);
  transition: all 0.2s;
}

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 242, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary);
  animation: rotating 0.8s linear infinite;
}

/* Tooltip enhancement */
[data-tooltip] {
  position: relative;
  cursor: help;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 1000;
}

[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Smooth transitions for color changes */
a, button, input, textarea, select {
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}

/* Parallax effect on hero */
.hero {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* Glass morphism effect */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

/* Enhanced form styling */
form {
  animation: slideInUp 0.5s ease-out;
}

input, textarea, select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-main);
  padding: 12px;
  font-family: inherit;
}

input::placeholder, textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .countdown-number {
    font-size: 1.8rem;
  }
  
  input, textarea, select {
    font-size: 16px; /* Prevent mobile zoom on input focus */
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible for keyboard navigation */
button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Active link indicator */
a.active {
  color: var(--primary);
  text-decoration: underline;
}

/* Section animations on scroll */
.section {
  animation: slideInUp 0.6s ease-out both;
}

.section:nth-child(1) { animation-delay: 0s; }
.section:nth-child(2) { animation-delay: 0.1s; }
.section:nth-child(3) { animation-delay: 0.2s; }
.section:nth-child(4) { animation-delay: 0.3s; }
.section:nth-child(5) { animation-delay: 0.4s; }

/* Product card premium effects */
.product-card {
  background: linear-gradient(135deg, rgba(15, 23, 32, 0.8), rgba(10, 110, 255, 0.05));
  border: 1px solid rgba(0, 242, 255, 0.2);
}

.product-card:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(15, 23, 32, 0.95), rgba(10, 110, 255, 0.15));
}

/* Text gradient effect */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Badge styling */
.badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 242, 255, 0.15);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--primary);
  animation: fadeInScale 0.4s ease-out;
}

/* Divider enhancement */
hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 2rem 0;
}

/* List improvements */
ul, ol {
  padding-left: 2rem;
}

li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

/* Blockquote styling */
blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-style: italic;
}

/* Code block styling */
code {
  background: rgba(0, 242, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  color: #00f2ff;
}

pre {
  background: rgba(15, 23, 32, 0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  overflow-x: auto;
  margin: 1rem 0;
}

/* Table styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

table thead {
  background: rgba(0, 242, 255, 0.1);
}

table th, table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

table tbody tr:hover {
  background: rgba(0, 242, 255, 0.05);
}

/* Success, warning, error messages */
.success {
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
  color: #10b981;
  padding: 1rem;
  border-radius: 6px;
  margin: 1rem 0;
}

.warning {
  background: rgba(251, 191, 36, 0.1);
  border-left: 4px solid #fbbf24;
  color: #fbbf24;
  padding: 1rem;
  border-radius: 6px;
  margin: 1rem 0;
}

.error {
  background: rgba(239, 68, 68, 0.1);
  border-left: 4px solid #ef4444;
  color: #ef4444;
  padding: 1rem;
  border-radius: 6px;
  margin: 1rem 0;
}

.info {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #3b82f6;
  color: #3b82f6;
  padding: 1rem;
  border-radius: 6px;
  margin: 1rem 0;
}

/* ============================================
   NUEVA SECCIONES: IMPACTO, ABOUT, PROTECCIÓN, FAQ, FOOTER
   ============================================ */

/* Impact Section */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.impact-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.impact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.impact-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.impact-card:hover::before {
  opacity: 0.05;
}

.impact-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.impact-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.impact-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-text h3 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.values-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  align-items: center;
  color: var(--text);
  font-weight: 500;
  padding: 0.75rem 0;
}

.value-item::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 1rem;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
  border: 2px dashed rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.image-placeholder:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(99, 102, 241, 0.1) 100%);
  border-color: var(--primary);
  transform: scale(1.02);
}

.placeholder-content {
  text-align: center;
  color: var(--text-secondary);
}

.placeholder-content p {
  margin-top: 1rem;
  font-weight: 500;
}

/* Protection Section */
.protection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.protection-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.protection-card:hover {
  transform: translateY(-8px);
  border-color: #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(34, 197, 94, 0.1) 100%);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.protection-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.protection-card h3 {
  color: var(--text);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.protection-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.faq-question {
  width: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
  border: none;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
}

.faq-question.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
}

.faq-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  transition: transform 0.3s ease;
  font-weight: bold;
  color: var(--primary);
}

.faq-question.active .faq-icon {
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.02);
  color: var(--text-secondary);
  line-height: 1.8;
  animation: slideDown 0.3s ease-out;
}

.faq-answer p {
  margin: 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer Premium */
.footer-premium {
  background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(59, 130, 246, 0.05) 100%);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-premium .container {
  max-width: 1200px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.footer-section h3,
.footer-section h4 {
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section h3 {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section > p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  color: var(--text-secondary);
}

.footer-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-4px);
}

.footer-socials .material-symbols-outlined {
  font-size: 20px;
}

.footer-bottom {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .protection-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-container {
    margin: 2rem auto 0;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 1rem 1.25rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .impact-number {
    font-size: 2.2rem;
  }

  .protection-card {
    padding: 1.5rem;
  }

  .protection-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .impact-number {
    font-size: 1.8rem;
  }

  .impact-label {
    font-size: 1rem;
  }

  .about-text h3 {
    font-size: 1.5rem;
  }

  .footer-section h3 {
    font-size: 1.3rem;
  }

  .footer-section h4 {
    font-size: 1rem;
  }

  .footer-socials {
    gap: 0.75rem;
  }

  .footer-socials a {
    width: 36px;
    height: 36px;
  }

  .faq-container {
    margin: 1.5rem auto 0;
  }

  .protection-grid {
    gap: 1rem;
  }

  .protection-card {
    padding: 1.25rem;
  }

  .protection-icon {
    font-size: 2rem;
  }
}

