/* Custom Design Tokens & Variables */
:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --bg-main: hsl(224, 32%, 4%);
  --bg-card: hsla(222, 25%, 8%, 0.7);
  --bg-card-hover: hsla(222, 25%, 12%, 0.85);
  --border-color: rgba(255, 255, 255, 0.04);
  --border-hover: rgba(56, 189, 248, 0.25);
  --color-primary: hsl(199, 95%, 48%);
  --color-primary-glow: hsla(199, 95%, 48%, 0.3);
  --color-secondary: hsl(182, 96%, 45%);
  --color-accent: hsl(200, 100%, 75%);
  --color-purple: hsl(270, 95%, 60%);
  --color-text-main: hsl(210, 40%, 98%);
  --color-text-muted: hsl(215, 20%, 70%);
  --color-text-dark: hsl(215, 15%, 45%);
  --sidebar-bg: rgba(10, 15, 30, 0.55);
  --sidebar-active-bg: hsl(199, 95%, 48%);
  --sidebar-active-glow: 0 0 20px hsla(199, 95%, 48%, 0.6);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --glass-filter: blur(24px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  border: 2px solid var(--bg-main);
  transition: var(--transition-smooth);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

body {
  background-color: var(--bg-main);
  color: var(--color-text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -9;
  pointer-events: none;
}

.blur-bg {
  position: fixed;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  z-index: -10;
  filter: blur(140px);
  opacity: 0.16;
  pointer-events: none;
}

.bg-blur-1 {
  top: -15vw;
  left: -15vw;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 80%);
}

.bg-blur-2 {
  bottom: -15vw;
  right: -15vw;
  background: radial-gradient(circle, var(--color-purple) 0%, transparent 80%);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  backdrop-filter: var(--glass-filter);
  background: rgba(6, 11, 25, 0.55);
  border-bottom: 1px solid var(--border-color);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1;
}

.logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition-smooth);
  flex-shrink: 0;
  display: block;
  margin: 0;
}

.logo-container:hover .logo {
  transform: rotate(360deg);
  box-shadow: 0 0 25px var(--color-primary);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 30%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-toggle {
  background: rgba(15, 23, 42, 0.75);
  padding: 4px;
  border-radius: 20px;
  display: flex;
  gap: 2px;
  border: 1px solid var(--border-color);
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.3);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.3);
}

.lang-btn:hover:not(.active) {
  color: #fff;
}

.floating-sidebar {
  position: fixed;
  right: 1.7rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}

.sidebar-inner {
  background: rgba(6, 10, 22, 0.88);
  backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  padding: 0.85rem 0.65rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sidebar-item {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
}

.sidebar-icon {
  width: 22px;
  height: 22px;
}

.sidebar-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

.sidebar-item.active {
  color: #fff;
  background: linear-gradient(135deg, #3dd1ff 0%, #54d3ff 100%);
  box-shadow: 0 0 35px rgba(56, 189, 248, 0.55);
  border: none;
}

.sidebar-icon {
  width: 22px;
  height: 22px;
  transition: var(--transition-smooth);
}

.sidebar-item.active .sidebar-icon {
  transform: scale(1.1) rotate(5deg);
}

.sidebar-separator {
  width: 24px;
  height: 1px;
  background: var(--border-color);
}

.discord-item {
  color: #fff !important;
  background: #5865F2 !important;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
  border: none;
}

.discord-item:hover {
  background: #4752c4 !important;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
}

.discord-svg {
  width: 22px;
  height: 22px;
}

.sidebar-discord-img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 8px;
}

.sidebar-item::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 65px;
  background: rgba(10, 15, 30, 0.95);
  border: 1px solid var(--border-color);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px);
  transition: var(--transition-smooth);
  pointer-events: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.sidebar-item:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hero-section {
  min-height: 100vh;
  padding: 8rem 6% 4rem 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 900px;
  margin-bottom: 5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 6.5rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.75rem;
  letter-spacing: -3px;
}

.animate-glow {
  background: linear-gradient(135deg, #fff 15%, var(--color-primary) 50%, var(--color-secondary) 85%, var(--color-purple) 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 12s linear infinite;
  text-shadow: 0 0 80px rgba(14, 165, 233, 0.2);
}

@keyframes shine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-subtitle {
  font-size: 1.35rem;
  color: var(--color-text-muted);
  max-width: 650px;
  margin: 0 auto;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.stats-row {
  display: flex;
  gap: 4rem;
  width: 100%;
  max-width: 1100px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.stat-card {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  position: relative;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(56, 189, 248, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  background: linear-gradient(180deg, #fff 30%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 5px 25px rgba(56, 189, 248, 0.2);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.arrow-down {
  width: 18px;
  height: 18px;
  animation: bounce 2s infinite;
  color: var(--color-primary);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.section {
  padding: 8rem 8%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #fff 20%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
}

.billing-selector-container {
  display: flex;
  justify-content: center;
  margin-bottom: 4.5rem;
}

.billing-selector {
  display: flex;
  background: rgba(10, 15, 30, 0.75);
  border: 1px solid var(--border-color);
  padding: 6px;
  border-radius: 30px;
  backdrop-filter: var(--glass-filter);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
}

.billing-btn {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 24px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.billing-btn.active {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(14, 165, 233, 0.45);
}

.billing-btn:hover:not(.active) {
  color: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
  justify-items: center;
}

.products-grid .product-card:only-child {
  grid-column: 2;
  justify-self: center;
}

.discord-block {
  margin: 1rem 0 2rem 0;
  text-align: left;
}
.discord-link {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  background: rgba(0, 140, 255, 0.06);
  color: var(--color-primary);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.product-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-filter);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 3rem 2.25rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;

/* Visual slot for package preview images */
.visual-slot {
  width: 100%;
  position: relative;
  margin: 1.25rem 0 2rem;
  display: block;
}

.visual-slot::before {
  content: '';
  display: block;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}

.visual-slot-img {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 0px);
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 18px 50px rgba(0,0,0,0.55), 0 0 30px var(--color-primary-glow);
}

.visual-slot-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  background: rgba(6, 11, 25, 0.6);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--color-text-muted);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.03);
}
  transition: var(--transition-smooth);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: transparent;
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-10px) scale(1.01);
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: 0 30px 60px rgba(14, 165, 233, 0.15);
}

.product-card:hover::before {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-purple));
}

.product-card.premium-card {
  border-color: rgba(56, 189, 248, 0.25);
  box-shadow: 0 20px 45px rgba(14, 165, 233, 0.1);
  background: rgba(14, 165, 233, 0.02);
}

.product-card.premium-card::before {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-purple));
}

.card-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 2.25rem;
  min-height: 45px;
}

.price-container {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  min-height: 80px;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 1.5rem;
}

.original-price {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  text-decoration: line-through;
  margin-bottom: 4px;
  font-weight: 700;
  display: block;
  min-height: 1.25rem;
}

.current-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -1.5px;
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-accent);
}

.price-period {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-left: 6px;
  font-weight: 600;
}

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

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--color-text-main);
}

.check-icon {
  width: 20px;
  height: 20px;
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-buy {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1.1rem;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-buy:hover {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.5);
  transform: translateY(-3px);
}

.premium-card .btn-buy {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%, var(--color-purple) 100%);
  border: none;
  color: #fff;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}

.premium-card .btn-buy:hover {
  box-shadow: 0 12px 35px rgba(14, 165, 233, 0.6);
  filter: brightness(1.15);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  justify-content: center;
}

.team-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-filter);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.1);
  background: var(--bg-card-hover);
}

.team-avatar-container {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  margin-bottom: 1.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.team-card:hover .team-avatar-container {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.3);
}

.team-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-main);
  background-color: var(--bg-main);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.team-rank-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.01);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.team-skeleton {
  background: rgba(10, 15, 30, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: pulse 1.5s infinite ease-in-out;
}

.skeleton-avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 1.75rem;
}

.skeleton-line {
  height: 1.35rem;
  width: 70%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  margin-bottom: 0.85rem;
}

.skeleton-line.short {
  width: 45%;
  height: 1rem;
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 0.9; }
  100% { opacity: 0.6; }
}

.footer {
  background: rgba(4, 8, 20, 0.95);
  backdrop-filter: var(--glass-filter);
  border-top: 1px solid var(--border-color);
  padding: 5rem 8% 3rem 8%;
  color: var(--color-text-muted);
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo .logo {
  width: 48px;
  height: 48px;
}

.footer-logo .brand-name {
  font-size: 1.6rem;
}

.footer-slogan {
  font-size: 1rem;
  max-width: 500px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--border-color);
  margin-bottom: 2.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.footer-discord-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  background: #5865F2;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 12px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.35);
}

.footer-discord-link:hover {
  background: #4752c4;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
}

.footer-discord-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 1024px) {
  .floating-sidebar {
    right: auto;
    left: 50%;
    bottom: 1.5rem;
    top: auto;
    transform: translateX(-50%);
  }

  .sidebar-inner {
    flex-direction: row;
    padding: 0.7rem 1.5rem;
    gap: 1.5rem;
    border-radius: 28px;
  }

  .sidebar-separator {
    width: 1px;
    height: 24px;
  }

  .sidebar-item::after {
    display: none;
  }

  .hero-title {
    font-size: 4.8rem;
  }

  .section {
    padding: 6rem 5%;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3.6rem;
    letter-spacing: -2px;
  }

  .stats-row {
    gap: 2rem;
  }

  .stat-card {
    min-width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 2rem 1.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

body::after {
  content: 'BEAST';
  position: fixed;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.015);
  z-index: -8;
  pointer-events: none;
  white-space: nowrap;
  font-family: var(--font-heading);
  letter-spacing: -3px;
  text-transform: uppercase;
}

.ai-chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10000;
  font-family: var(--font-body);
}

.ai-chat-toggle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f67cc 0%, #2b9bff 100%);
  backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 14px 40px rgba(11, 123, 212, 0.35), 0 0 18px rgba(56, 189, 248, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
  padding: 0;
  outline: none;
}

.ai-chat-toggle:hover {
  transform: scale(1.08);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 16px 48px rgba(11, 123, 212, 0.45), 0 0 28px rgba(56, 189, 248, 0.4);
}

.ai-toggle-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #fff;
  border-radius: 50%;
}

.ai-toggle-pulse {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  opacity: 0;
  animation: togglePulse 2.5s infinite;
  pointer-events: none;
}

@keyframes togglePulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1.15); opacity: 0; }
}

.ai-chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 380px;
  height: 520px;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: var(--glass-filter);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom right;
}

.ai-chat-window.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.85) translate(20px, 20px);
  pointer-events: none;
}

.ai-chat-header {
  padding: 1.25rem;
  background: rgba(4, 8, 20, 0.8);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai-header-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ai-header-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
  background-color: #fff;
  border: 1.5px solid var(--color-primary);
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.3);
}

.ai-header-info {
  display: flex;
  flex-direction: column;
}

.ai-header-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.ai-status {
  font-size: 0.7rem;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.ai-status::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  box-shadow: 0 0 8px var(--color-secondary);
}

.ai-close-btn {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.ai-close-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.ai-chat-body {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ai-chat-body::-webkit-scrollbar {
  width: 6px;
}

.ai-chat-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}

.ai-message {
  display: flex;
  flex-direction: column;
  max-width: 85%;
  animation: msgSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes msgSlideUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.ai-message.system {
  align-self: flex-start;
}

.ai-message.user {
  align-self: flex-end;
}

.ai-message-content {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.4;
  word-wrap: break-word;
}

.ai-message.system .ai-message-content {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-main);
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.ai-message.user .ai-message-content {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}

.ai-typing-indicator {
  display: flex;
  gap: 4px;
  padding: 8px 12px;
  align-items: center;
}

.ai-typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-text-muted);
  animation: typingPulse 1.4s infinite ease-in-out;
}

.ai-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.ai-typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingPulse {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-4px); opacity: 1; }
}

.ai-chat-chips {
  padding: 0 1.25rem 0.75rem 1.25rem;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  white-space: nowrap;
  flex-shrink: 0;
}

.ai-chat-chips::-webkit-scrollbar {
  display: none;
}

.ai-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.ai-chip:hover {
  background: rgba(14, 165, 233, 0.1);
  color: #fff;
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-1px);
}

.ai-chat-input-container {
  padding: 1rem 1.25rem 1.25rem 1.25rem;
  background: rgba(4, 8, 20, 0.8);
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

#ai-chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: #fff;
  font-size: 0.88rem;
  padding: 10px 14px;
  border-radius: 12px;
  outline: none;
  transition: var(--transition-smooth);
}

#ai-chat-input:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.1);
}

.ai-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border: none;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.ai-send-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
  transform: translateY(-1px);
}

.send-icon {
  width: 16px;
  height: 16px;
  transition: var(--transition-smooth);
}

.ai-send-btn:hover .send-icon {
  transform: scale(1.05) translate(1px, -1px);
}

@media (max-width: 480px) {
  .ai-chat-window {
    width: calc(100vw - 2rem);
    height: 450px;
    bottom: 70px;
    right: -1rem;
  }
  .ai-chat-widget {
    bottom: 5rem;
    right: 1.5rem;
  }
}
