@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg-dark: #000000;
  --bg-body: #030406;
  --bg-surface: #0a0d12;
  --bg-surface-elevated: #10141c;
  --bg-card: rgba(10, 13, 18, 0.85);
  --bg-card-hover: rgba(16, 22, 30, 0.95);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-strong: rgba(255, 255, 255, 0.07);

  /* Authentic Cyan / Teal Palette */
  --cyan-100: #e0fcff;
  --cyan-200: #a7f3d0;
  --cyan-300: #00f0ff;
  --cyan-400: #00c2cb;
  --cyan-500: #00adb5;
  --cyan-600: #008b8b;
  --cyan-gradient: linear-gradient(135deg, #00f0ff 0%, #00c2cb 50%, #00a896 100%);
  --cyan-gradient-hover: linear-gradient(135deg, #33f3ff 0%, #00d2d3 50%, #00c4b4 100%);
  --cyan-glow: 0 0 25px rgba(0, 194, 203, 0.45);
  --cyan-glow-subtle: 0 0 15px rgba(0, 194, 203, 0.25);

  --accent-red: #ff334b;
  --accent-red-glow: 0 0 15px rgba(255, 51, 75, 0.35);

  --text-primary: #ffffff;
  --text-secondary: #c0c6d0;
  --text-muted: #808896;
  --text-cyan: #00dfc4;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-cyan: rgba(0, 194, 203, 0.35);
  --border-cyan-bright: rgba(0, 240, 255, 0.75);

  --success: #10b981;
  --success-glow: 0 0 15px rgba(16, 185, 129, 0.4);
  --whatsapp: #25d366;
  --whatsapp-hover: #20ba5a;

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --font-main: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --transition-fast: 0.18s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1240px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #000000;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.08) 0%, rgba(0, 0, 0, 0) 60%),
    radial-gradient(circle at 100% 35%, rgba(0, 194, 203, 0.05) 0%, rgba(0, 0, 0, 0) 50%),
    radial-gradient(circle at 0% 70%, rgba(0, 194, 203, 0.05) 0%, rgba(0, 0, 0, 0) 50%),
    url('/images/0.png');
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100% auto;
  background-attachment: fixed;
  color: var(--text-primary);
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* Typography Helpers */
.text-cyan {
  color: var(--text-cyan);
}
.text-gold {
  color: var(--text-cyan);
}
.text-red {
  color: var(--accent-red);
}
.text-muted {
  color: var(--text-muted);
}
.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-cyan,
.btn-gold {
  background: var(--cyan-gradient);
  color: #000000;
  box-shadow: 0 4px 20px rgba(0, 194, 203, 0.4);
  font-weight: 800;
  text-transform: uppercase;
}

.btn-cyan:hover,
.btn-gold:hover {
  background: var(--cyan-gradient-hover);
  box-shadow: 0 6px 28px rgba(0, 240, 255, 0.65);
  transform: translateY(-2px);
}

.btn-cyan-outline,
.btn-gold-outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid var(--cyan-400);
  box-shadow: inset 0 0 10px rgba(0, 194, 203, 0.15);
}

.btn-cyan-outline:hover,
.btn-gold-outline:hover {
  background: rgba(0, 194, 203, 0.15);
  border-color: var(--cyan-300);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 194, 203, 0.35);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* Badges */
.badge-cyan,
.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(0, 194, 203, 0.12);
  color: var(--text-cyan);
  border: 1px solid var(--border-cyan);
}

.badge-subtle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

/* Glass Panels */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  transition: all var(--transition-normal);
}

.glass-panel:hover {
  border-color: var(--cyan-400);
  box-shadow: 0 12px 40px rgba(0, 194, 203, 0.15);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-cyan);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo img {
  height: 44px;
  width: auto;
}

.site-navigation .nav-desktop {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.site-navigation .nav-desktop a {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 6px 0;
  position: relative;
}

.site-navigation .nav-desktop a:hover,
.site-navigation .nav-desktop a.active {
  color: #ffffff;
}

.site-navigation .nav-desktop a.active::after,
.site-navigation .nav-desktop a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--cyan-400);
  box-shadow: var(--cyan-glow-subtle);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  background: rgba(0, 194, 203, 0.15);
  border-color: var(--cyan-400);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 150px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 110;
}

.lang-selector:hover .lang-dropdown,
.lang-selector:focus-within .lang-dropdown {
  display: flex;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.lang-option:hover,
.lang-option.active {
  background: rgba(0, 194, 203, 0.18);
  color: var(--text-cyan);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: #07080c;
  border-left: 1px solid var(--border-cyan);
  z-index: 200;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right var(--transition-normal);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.8);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 190;
  display: none;
}

.drawer-backdrop.active {
  display: block;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer-close {
  font-size: 1.8rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: block;
  padding: 6px 0;
}

.mobile-nav-links a.active,
.mobile-nav-links a:hover {
  color: var(--text-cyan);
}

/* Hero Section */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 90px) 0 clamp(40px, 6vw, 70px);
  background: transparent;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-tag {
  align-self: flex-start;
}

.hero-title {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.hero-title .text-cyan,
.hero-title .text-gold {
  color: var(--text-cyan);
  text-shadow: 0 0 20px rgba(0, 229, 204, 0.4);
}

.hero-sub-promo {
  color: var(--accent-red);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 700;
  line-height: 1.5;
}

.hero-desc {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 6px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.highlight-icon {
  width: 20px;
  height: 20px;
  color: var(--cyan-400);
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Device Badges Row */
.device-icons-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.device-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.device-badge-item svg {
  width: 26px;
  height: 26px;
  color: var(--cyan-400);
}

/* Hero Media & Floating Badges */
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 194, 203, 0.2);
  border: 1.5px solid var(--border-cyan);
  width: 100%;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(8, 10, 14, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--border-cyan);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 194, 203, 0.25);
  z-index: 2;
  white-space: nowrap;
  transition: all var(--transition-normal);
}

.floating-card-1 {
  top: 10%;
  right: -15px;
}

.floating-card-2 {
  bottom: 8%;
  left: -15px;
}

@media (max-width: 992px) {
  .floating-card-1, .floating-card-2 {
    position: static;
    margin-top: 10px;
    display: inline-flex;
  }
}

/* Stats Bar */
.stats-bar {
  padding: 40px 0;
  background: rgba(0, 0, 0, 0.85);
  border-top: 1px solid var(--border-cyan);
  border-bottom: 1px solid var(--border-cyan);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  background: var(--bg-card);
  border: 1.5px solid var(--border-cyan);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.stat-item:hover {
  border-color: var(--cyan-300);
  box-shadow: 0 0 25px rgba(0, 194, 203, 0.3);
  transform: translateY(-3px);
}

.stat-num {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-cyan);
  letter-spacing: 0.3px;
}

/* Section Header */
.section {
  padding: clamp(50px, 8vw, 90px) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 900;
  line-height: 1.2;
  color: #ffffff;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* Sports Section */
.sports-showcase {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid var(--border-cyan);
  border-bottom: 1px solid var(--border-cyan);
}

.sports-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

.sports-media {
  display: flex;
  justify-content: center;
}

.sports-media img {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-cyan);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 194, 203, 0.2);
}

.sports-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sports-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.sport-feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sport-feature-icon {
  width: 24px;
  height: 24px;
  color: var(--cyan-400);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Infinite Brand Carousel Ribbon */
.brand-carousel-wrapper {
  margin-top: 50px;
  overflow: hidden;
  position: relative;
  padding: 24px 0;
  border-top: 1px solid var(--border-cyan);
  border-bottom: 1px solid var(--border-cyan);
  background: rgba(5, 6, 8, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.brand-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: brandScroll 32s linear infinite;
}

.brand-track:hover {
  animation-play-state: paused;
}

.brand-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 8px;
  opacity: 0.85;
  filter: brightness(0.95);
  transition: all var(--transition-fast);
}

.brand-item:hover {
  opacity: 1;
  filter: brightness(1.2);
  transform: scale(1.08);
}

.brand-item img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

@keyframes brandScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pricing Section - 3 Devices Toggle */
.pricing-controls {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.pricing-toggle-box {
  display: inline-flex;
  background: var(--bg-surface-elevated);
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-cyan);
  gap: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.toggle-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.toggle-btn:hover {
  color: #ffffff;
}

.toggle-btn.active {
  background: var(--cyan-gradient);
  color: #000000;
  box-shadow: 0 2px 14px rgba(0, 194, 203, 0.5);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
}

.pricing-card:hover {
  border-color: var(--cyan-300);
  box-shadow: 0 12px 36px rgba(0, 194, 203, 0.25);
  transform: translateY(-4px);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(0, 194, 203, 0.12) 0%, rgba(10, 13, 18, 0.95) 100%);
  border: 2px solid var(--cyan-400);
  box-shadow: 0 8px 36px rgba(0, 194, 203, 0.3);
}

.pricing-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 10;
  background: #06090e;
  border: 1.5px solid var(--cyan-400);
  box-shadow: 0 4px 16px rgba(0, 194, 203, 0.45);
  color: #ffffff;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pricing-header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.plan-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.plan-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-cyan);
}

.plan-price {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.plan-regular-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-top: 4px;
}

.plan-savings {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-cyan);
  background: rgba(0, 194, 203, 0.12);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.feature-check {
  width: 18px;
  height: 18px;
  color: var(--cyan-400);
  flex-shrink: 0;
}

.feature-highlight {
  color: #ffffff;
  font-weight: 700;
}

.pricing-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.pricing-guarantee {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Compatibility Grid */
.compat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.compat-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: all var(--transition-normal);
}

.compat-card:hover {
  border-color: var(--cyan-300);
  box-shadow: 0 8px 30px rgba(0, 194, 203, 0.25);
  transform: translateY(-3px);
}

.compat-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: rgba(0, 194, 203, 0.12);
  border: 1px solid var(--border-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
}

.compat-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
}

.compat-app-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* FAQ Accordion */
.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1.5px solid var(--border-cyan);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--cyan-300);
  box-shadow: 0 4px 20px rgba(0, 194, 203, 0.2);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  cursor: pointer;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--cyan-400);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  background: var(--bg-card);
  border: 1.5px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
  background: var(--bg-surface-elevated);
  font-weight: 800;
  color: #ffffff;
  border-bottom: 2px solid var(--border-cyan);
}

.comparison-table tr:hover td {
  background: rgba(0, 194, 203, 0.04);
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-surface-elevated);
  border: 1.5px solid var(--border-cyan);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--cyan-300);
  box-shadow: 0 0 15px rgba(0, 194, 203, 0.35);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Modal Popup */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.open {
  display: flex;
}

.modal-box {
  background: #090c10;
  border: 2px solid var(--cyan-400);
  box-shadow: 0 0 40px rgba(0, 194, 203, 0.35);
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 30px;
  position: relative;
  animation: modalPop 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.6rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1;
}

.modal-header {
  margin-bottom: 24px;
  text-align: center;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.order-summary-box {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-plan-name {
  font-weight: 800;
  color: #ffffff;
}

.order-plan-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-cyan);
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 62px;
  height: 62px;
  border-radius: var(--radius-full);
  background: var(--whatsapp);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.whatsapp-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65);
}

.whatsapp-pulse {
  position: absolute;
  inset: -6px;
  border-radius: var(--radius-full);
  border: 2px solid var(--whatsapp);
  animation: waPulse 2s infinite;
  opacity: 0.8;
}

@keyframes waPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  background: #0c0e12;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--border-cyan);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: #000000;
  border-top: 1px solid var(--border-cyan);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .site-logo img {
  height: 42px;
  margin-bottom: 14px;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

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

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-cyan);
}

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

/* Breadcrumbs & Product Detail */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumbs a:hover {
  color: var(--text-cyan);
}

.breadcrumbs-separator {
  color: var(--border-glass);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

.product-gallery img {
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-cyan);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid,
  .sports-grid,
  .product-detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .site-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .pricing-toggle-box {
    width: 100%;
    justify-content: center;
  }
  .toggle-btn {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
}
