/* ===== DESIGN SYSTEM - BestHeadphones Premium ===== */

:root {
  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-surface: #ffffff;
  --bg-surface-hover: #f1f5f9;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --accent-purple: #8b5cf6;
  --accent-indigo: #4f46e5;
  --accent-cyan: #0ea5e9;
  --accent-pink: #f43f5e;
  --accent-amber: #f59e0b;
  --accent-emerald: #10b981;
  --gradient-primary: linear-gradient(135deg, #8b5cf6, #3b82f6);
  --gradient-cyan: linear-gradient(135deg, #0ea5e9, #38bdf8);
  --gradient-pink: linear-gradient(135deg, #f43f5e, #fb7185);
  --gradient-amber: linear-gradient(135deg, #f59e0b, #fbbf24);
  --gradient-emerald: linear-gradient(135deg, #10b981, #34d399);
  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-glow: rgba(139, 92, 246, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  --shadow-glow-purple: 0 10px 40px -10px rgba(139, 92, 246, 0.2);
  --shadow-glow-cyan: 0 10px 40px -10px rgba(14, 165, 233, 0.2);
  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-align: center;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-mesh .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 20s ease-in-out infinite;
}

.bg-mesh .orb:nth-child(1) {
  width: 500px;
  height: 500px;
  top: -10%;
  left: -5%;
  background: var(--accent-purple);
  animation-delay: 0s;
}

.bg-mesh .orb:nth-child(2) {
  width: 400px;
  height: 400px;
  top: 50%;
  right: -10%;
  background: var(--accent-cyan);
  animation-delay: -7s;
}

.bg-mesh .orb:nth-child(3) {
  width: 350px;
  height: 350px;
  bottom: -5%;
  left: 30%;
  background: var(--accent-pink);
  animation-delay: -14s;
  opacity: 0.2;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(40px, -30px) scale(1.05);
  }

  50% {
    transform: translate(-20px, 50px) scale(0.95);
  }

  75% {
    transform: translate(30px, 20px) scale(1.02);
  }
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 0.6rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
  border-radius: 1px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: var(--font-body);
  transition: var(--transition-fast);
  text-decoration: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero h1 .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.btn-primary {
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  padding: 0.85rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition-fast);
  text-decoration: none;
  border: 1px solid var(--border-subtle);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: var(--bg-surface-hover);
  border-color: var(--accent-purple);
  transform: translateY(-3px);
}

.hero-image {
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 60%, var(--bg-primary));
  pointer-events: none;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 6rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .overline {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-purple);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===== CATEGORY CARDS ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow-purple);
}

.category-card .card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.category-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.category-card:hover .card-image img {
  transform: scale(1.08);
}

.category-card .card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, var(--bg-surface));
}

.category-card .card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.card-icon.purple {
  background: var(--gradient-primary);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.card-icon.cyan {
  background: var(--gradient-cyan);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.card-icon.pink {
  background: var(--gradient-pink);
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.card-icon.amber {
  background: var(--gradient-amber);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.card-icon.emerald {
  background: var(--gradient-emerald);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.category-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.category-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  flex: 1;
}

.category-card .card-arrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-purple);
  transition: var(--transition-fast);
}

.category-card:hover .card-arrow {
  gap: 0.75rem;
}

/* ===== FEATURE CARDS (no image) ===== */
.feature-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  color: inherit;
  padding: 2rem;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow-purple);
  background: var(--bg-surface-hover);
}

.feature-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.feature-card .card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-purple);
  transition: var(--transition-fast);
}

.feature-card:hover .card-arrow {
  gap: 0.75rem;
}

/* ===== PAGE HERO (for sub-pages) ===== */
.page-hero {
  padding: 10rem 2rem 4rem;
  text-align: center;
  position: relative;
  background: linear-gradient(
    180deg,
    var(--bg-secondary) 0%,
    var(--bg-primary) 100%
  );
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
}

.page-hero .breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.page-hero .breadcrumb a:hover {
  color: var(--accent-purple);
}

.page-hero .breadcrumb .sep {
  color: var(--text-muted);
}

.page-hero .breadcrumb .current {
  color: var(--text-secondary);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.page-hero .page-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-purple);
  text-decoration: none;
  font-weight: 500;
  margin-top: 2rem;
  transition: var(--transition-fast);
  position: relative;
  z-index: 2;
}

.page-hero .back-link:hover {
  gap: 0.75rem;
}

/* ===== COMING SOON (leaf pages) ===== */
.coming-soon {
  text-align: center;
  padding: 4rem 2rem 6rem;
  max-width: 700px;
  margin: 0 auto;
}

.coming-soon .cs-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.coming-soon h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.coming-soon p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.coming-soon .notify-form {
  display: flex;
  gap: 0.75rem;
  max-width: 420px;
  margin: 0 auto;
}

.coming-soon .notify-form input {
  flex: 1;
  padding: 0.8rem 1.25rem;
  border-radius: 50px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.coming-soon .notify-form input:focus {
  border-color: var(--accent-purple);
}

.coming-soon .notify-form input::placeholder {
  color: var(--text-muted);
}

.related-section {
  padding: 0 2rem 6rem;
  max-width: 1300px;
  margin: 0 auto;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  max-width: 1300px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.newsletter-inner {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 50% 120%,
    rgba(99, 102, 241, 0.08) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.newsletter h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.newsletter p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  position: relative;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.newsletter-form input:focus {
  border-color: var(--accent-purple);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 2rem 2rem;
  background: var(--bg-secondary);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}

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

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand .footer-logo .logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--text-primary);
}

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

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  color: var(--text-primary);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

/* ===== SOUND WAVE DECORATION ===== */
.sound-wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 30px;
  justify-content: center;
  margin: 2rem auto 0;
}

.sound-wave .bar {
  width: 3px;
  border-radius: 2px;
  background: var(--gradient-primary);
  animation: soundBar 1.2s ease-in-out infinite;
}

.sound-wave .bar:nth-child(1) {
  height: 40%;
  animation-delay: 0s;
}

.sound-wave .bar:nth-child(2) {
  height: 70%;
  animation-delay: 0.15s;
}

.sound-wave .bar:nth-child(3) {
  height: 100%;
  animation-delay: 0.3s;
}

.sound-wave .bar:nth-child(4) {
  height: 60%;
  animation-delay: 0.45s;
}

.sound-wave .bar:nth-child(5) {
  height: 80%;
  animation-delay: 0.6s;
}

.sound-wave .bar:nth-child(6) {
  height: 50%;
  animation-delay: 0.75s;
}

.sound-wave .bar:nth-child(7) {
  height: 90%;
  animation-delay: 0.9s;
}

@keyframes soundBar {
  0%,
  100% {
    transform: scaleY(0.5);
  }

  50% {
    transform: scaleY(1);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-links.show {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.5rem 1.25rem;
    background: rgba(6, 6, 14, 0.98);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
  }

  .nav-links.show a {
    font-size: 1rem;
  }

  .nav-menu-btn {
    display: block;
  }

  .hero {
    padding: 7rem 1.5rem 3rem;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .newsletter-inner {
    padding: 2.5rem 1.5rem;
  }

  .newsletter-form,
  .coming-soon .notify-form {
    flex-direction: column;
  }

  .page-hero {
    padding: 8rem 1.5rem 3rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== BENTO GRID HOMEPAGE ===== */
.bento-section {
  padding: 6rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bento-header {
  text-align: center;
  margin-bottom: 4rem;
}
.bento-header .overline {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-purple);
  margin-bottom: 1rem;
}
.bento-header h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1.5rem;
}

.bento-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
}

.bento-item:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow-purple);
}

.bento-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-fast);
}
.bento-item:hover::before {
  opacity: 1;
}

/* Spans */
.bento-reviews { grid-column: span 2; grid-row: span 2; background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(139, 92, 246, 0.05) 100%); }
.bento-guides { grid-column: span 2; grid-row: span 1; }
.bento-news { grid-column: span 1; grid-row: span 1; }
.bento-compare { grid-column: span 1; grid-row: span 1; }
.bento-tech { grid-column: span 2; grid-row: span 1; }
.bento-toplist { grid-column: span 2; grid-row: span 1; background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, var(--bg-surface) 100%); }

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .bento-reviews, .bento-guides, .bento-news, .bento-compare, .bento-tech, .bento-toplist {
    grid-column: span 2;
    grid-row: auto;
    min-height: 250px;
  }
}

@media (max-width: 600px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-reviews, .bento-guides, .bento-news, .bento-compare, .bento-tech, .bento-toplist {
    grid-column: span 1;
  }
}

.bento-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: auto;
  background: var(--bg-surface-hover);
}
.bento-icon.purple { color: var(--accent-purple); background: rgba(139, 92, 246, 0.1); }
.bento-icon.cyan { color: var(--accent-cyan); background: rgba(14, 165, 233, 0.1); }
.bento-icon.pink { color: var(--accent-pink); background: rgba(244, 63, 94, 0.1); }
.bento-icon.amber { color: var(--accent-amber); background: rgba(245, 158, 11, 0.1); }
.bento-icon.emerald { color: var(--accent-emerald); background: rgba(16, 185, 129, 0.1); }
.bento-icon.indigo { color: var(--accent-indigo); background: rgba(79, 70, 229, 0.1); }

.bento-content {
  margin-top: 2rem;
}
.bento-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.bento-content p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.bento-reviews .bento-content p { font-size: 1.15rem; }

/* ===== DATA TABLE STYLES ===== */
.table-container {
  overflow-x: auto;
  margin: 3rem 0;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.data-table th, 
.data-table td {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.data-table th {
  background: var(--bg-secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: var(--bg-surface-hover);
}

.data-table a {
  color: var(--accent-purple);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}

.data-table a:hover {
  text-decoration: underline;
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-emerald);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
  list-style: none;
  padding: 0;
}

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

.footer-links a:hover {
  color: var(--accent-purple);
}

/* ===== RESPONSIVENESS ===== */
@media (max-width: 1024px) {
  .hero-stats {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.8rem 1.5rem;
  }
  
  .nav-links {
    display: none; /* Hide standard links on mobile */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
    align-items: center;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.5rem;
    font-size: 1.1rem;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-menu-btn {
    display: block;
  }

  .hero {
    padding: 7rem 1.5rem 3rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .data-table th, .data-table td {
    padding: 1rem 1rem;
    font-size: 0.85rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  /* Table Stacking for Mobile */
  .data-table, .data-table thead, .data-table tbody, .data-table th, .data-table td, .data-table tr {
    display: block;
  }
  
  .data-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  
  .data-table tr {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    padding: 1rem;
    box-shadow: var(--shadow-card);
  }
  
  .data-table td {
    border: none;
    padding: 0.75rem 0.5rem;
    position: relative;
    text-align: center;
    border-bottom: 1px solid var(--bg-secondary);
  }
  
  .data-table td:last-child {
    border-bottom: none;
  }

  /* Add labels before data */
  .data-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }
  
  .nav-logo {
    font-size: 1.25rem;
  }
}

