/* ==========================================================================
   BoostMyTracks.com - Master Spotify Cyber Neon Theme & Design System
   Targeting "Buy Spotify Plays" with High-Speed Clean UI & Glassmorphism
   ========================================================================== */

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

:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', Consolas, monospace;

  /* Color Palette - Spotify Cyber Emerald & Dark Obsidian */
  --bg-main: #08080a;
  --bg-surface: #0e0e12;
  --bg-card: rgba(20, 20, 26, 0.75);
  --bg-card-hover: rgba(28, 28, 38, 0.85);
  --bg-glass: rgba(14, 14, 18, 0.7);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(30, 215, 96, 0.35);
  --border-brand: #1ed760;

  --color-spotify: #1ed760;
  --color-spotify-dark: #1db954;
  --color-spotify-glow: rgba(30, 215, 96, 0.4);
  --color-cyan: #06b6d4;
  --color-purple: #a855f7;
  --color-amber: #f59e0b;
  --color-pink: #ec4899;

  --text-white: #ffffff;
  --text-main: #f3f2f8;
  --text-body: #a4a1b8;
  --text-muted: #6e6b84;
  --text-dim: rgba(255, 255, 255, 0.45);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-glow: 0 0 35px rgba(30, 215, 96, 0.22);
  --shadow-glow-lg: 0 0 60px rgba(30, 215, 96, 0.35);
  --shadow-card: 0 20px 60px -20px rgba(0, 0, 0, 0.8);
  --shadow-btn: 0 10px 25px -5px rgba(30, 215, 96, 0.45);
}

[data-theme="light"] {
  --bg-main: #f7f9f8;
  --bg-surface: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --border-subtle: rgba(29, 185, 84, 0.12);
  --border-card: rgba(29, 185, 84, 0.18);
  --border-glow: rgba(30, 215, 96, 0.3);
  --text-white: #0f0f0f;
  --text-main: #0c140e;
  --text-body: #3c483f;
  --text-muted: #6e7a71;
  --text-dim: rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(90% 55% at 50% 0, rgba(30, 215, 96, 0.15), transparent 60%),
    radial-gradient(circle at 10% 15%, rgba(6, 182, 212, 0.12), transparent 30rem),
    radial-gradient(circle at 90% 20%, rgba(168, 85, 247, 0.12), transparent 30rem);
  color: var(--text-main);
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

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

/* ==========================================================================
   Background Ambient Elements
   ========================================================================== */
.bg-ambient-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: 
    radial-gradient(circle at 20% 15%, rgba(30, 215, 96, 0.12), transparent 35%),
    radial-gradient(circle at 80% 25%, rgba(6, 182, 212, 0.1), transparent 30%),
    radial-gradient(circle at 50% 70%, rgba(168, 85, 247, 0.08), transparent 45%);
  z-index: -10;
}

.hero-stars {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 14% 28%, rgba(30, 215, 96, 0.75) 0, 1.5px, transparent 2.5px),
    radial-gradient(circle at 36% 22%, rgba(6, 182, 212, 0.7) 0, 1.5px, transparent 2.5px),
    radial-gradient(circle at 63% 39%, rgba(30, 215, 96, 0.8) 0, 2px, transparent 3px),
    radial-gradient(circle at 82% 36%, rgba(168, 85, 247, 0.7) 0, 1.5px, transparent 2.5px),
    radial-gradient(circle at 90% 78%, rgba(30, 215, 96, 0.8) 0, 2px, transparent 3px);
  background-size: 280px 280px;
  pointer-events: none;
  opacity: 0.5;
}

/* ==========================================================================
   Containers & Spacing
   ========================================================================== */
.page-shell {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.section-pad {
  padding-block: clamp(4rem, 8vw, 7rem);
}

/* ==========================================================================
   Typography & Gradients
   ========================================================================== */
.text-gradient {
  background: linear-gradient(135deg, #a7f3d0, #1ed760 36%, #10b981 68%, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.brand-gradient {
  background: linear-gradient(135deg, #1ed760, #10b981);
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(30, 215, 96, 0.12);
  border: 1px solid rgba(30, 215, 96, 0.28);
  color: #1ed760;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-body);
  line-height: 1.65;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(8, 8, 10, 0.85);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.25s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.logo-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1ed760, #10b981);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #08080a;
  box-shadow: 0 0 20px rgba(30, 215, 96, 0.45);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-body);
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #1ed760, #10b981);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #1ed760, #10b981);
  color: #08080a;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -5px rgba(30, 215, 96, 0.65);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all 0.2s ease;
}

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

.mobile-toggle, .mobile-menu-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-toggle:hover, .mobile-menu-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-toggle, .mobile-menu-btn {
  display: none;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 10, 14, 0.96);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.mobile-menu.active, .mobile-menu.open {
  display: block;
}

.mobile-menu-grid {
  display: grid;
  gap: 0.75rem;
}

.mobile-menu-item {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-body);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.mobile-menu-item:hover, .mobile-menu-item.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   Hero Section & Visual Mockup
   ========================================================================== */
.hero-section {
  padding-top: clamp(3rem, 6vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(30, 215, 96, 0.14);
  border: 1px solid rgba(30, 215, 96, 0.3);
  color: #1ed760;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(30, 215, 96, 0.2);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1ed760;
  box-shadow: 0 0 10px #1ed760;
  animation: pulse-dot-anim 2s infinite;
}

@keyframes pulse-dot-anim {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-body);
}

.trust-strip-item svg {
  color: #1ed760;
}

/* Hero Mockup & Orbit Badges */
.mockup-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-card {
  width: 100%;
  max-width: 440px;
  background: rgba(18, 18, 24, 0.85);
  border: 1px solid rgba(30, 215, 96, 0.35);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glow-lg);
  position: relative;
  z-index: 2;
}

.orbit-badge {
  position: absolute;
  z-index: 5;
  background: rgba(9, 9, 14, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  animation: float-badge 4s ease-in-out infinite;
}

.orbit-badge.top-left {
  top: -20px;
  left: -20px;
  animation-delay: 0s;
}

.orbit-badge.top-right {
  top: -20px;
  right: -20px;
  animation-delay: -1s;
}

.orbit-badge.bottom-left {
  bottom: -20px;
  left: -20px;
  animation-delay: -2s;
}

.orbit-badge.bottom-right {
  bottom: -20px;
  right: -20px;
  animation-delay: -3s;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Equalizer Animation */
.equalizer-bar-group {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

.eq-bar {
  width: 3px;
  background: #1ed760;
  border-radius: 2px;
  animation: eq-bounce 1.2s ease-in-out infinite alternate;
}

.eq-bar:nth-child(2) { animation-delay: -0.4s; }
.eq-bar:nth-child(3) { animation-delay: -0.8s; }
.eq-bar:nth-child(4) { animation-delay: -0.2s; }

@keyframes eq-bounce {
  0% { height: 4px; }
  100% { height: 18px; }
}

/* ==========================================================================
   Marquee Ribbon
   ========================================================================== */
.marquee-ribbon {
  overflow: hidden;
  position: relative;
  padding-block: 1.1rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.marquee-content {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-body);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-item svg {
  color: #1ed760;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Category Filter Tabs
   ========================================================================== */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.tab-btn {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.tab-btn.active {
  background: linear-gradient(135deg, #1ed760, #10b981);
  border-color: transparent;
  color: #08080a;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(30, 215, 96, 0.4);
}

/* ==========================================================================
   Product Cards & Grid
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 4.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 215, 96, 0.45);
  box-shadow: 0 24px 60px -15px rgba(30, 215, 96, 0.25);
}

.product-thumb {
  width: 100%;
  height: 140px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 30%, rgba(30, 215, 96, 0.2), rgba(12, 12, 16, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.product-thumb-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(9, 9, 11, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  color: #1ed760;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
}

.product-thumb-icon {
  width: 52px;
  height: 52px;
  color: #1ed760;
  filter: drop-shadow(0 0 15px rgba(30, 215, 96, 0.5));
  transition: transform 0.3s ease;
}

.product-card:hover .product-thumb-icon {
  transform: scale(1.12) rotate(4deg);
}

.product-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #1ed760;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.product-features-list {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-body);
}

.product-feature-item svg {
  color: #1ed760;
  flex-shrink: 0;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

.price-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
}

/* ==========================================================================
   Spotify Stream & Royalty Calculator Widget
   ========================================================================== */
.calc-card {
  background: radial-gradient(circle at 80% 20%, rgba(30, 215, 96, 0.14), transparent 45%), var(--bg-surface);
  border: 1px solid rgba(30, 215, 96, 0.28);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--shadow-glow);
  margin-bottom: 4.5rem;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.calc-slider-box {
  margin-bottom: 1.75rem;
}

.calc-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.calc-slider-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

.calc-slider-val {
  font-size: 1.15rem;
  font-weight: 900;
  color: #1ed760;
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  accent-color: #1ed760;
  cursor: pointer;
}

.calc-ratio-bar {
  display: flex;
  height: 14px;
  border-radius: 7px;
  overflow: hidden;
  margin-top: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
}

.calc-ratio-listeners {
  background: #1ed760;
  width: 40%;
  transition: width 0.3s ease;
}

.calc-ratio-saves {
  background: #06b6d4;
  width: 25%;
  transition: width 0.3s ease;
}

.calc-ratio-streams {
  background: #a855f7;
  width: 35%;
  transition: width 0.3s ease;
}

.calc-summary-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4.5rem;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature-box:hover {
  border-color: rgba(30, 215, 96, 0.35);
  transform: translateY(-3px);
}

.feature-box-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(30, 215, 96, 0.15);
  border: 1px solid rgba(30, 215, 96, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1ed760;
  margin-bottom: 1rem;
}

.feature-box-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.feature-box-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================================================
   Customer Reviews
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4.5rem;
}

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

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

.review-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1ed760, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #08080a;
  font-size: 0.85rem;
}

.review-user-name {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.9rem;
}

.review-user-server {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-container {
  max-width: 860px;
  margin: 0 auto 4.5rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(30, 215, 96, 0.35);
  background: rgba(255, 255, 255, 0.045);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.02rem;
  color: #ffffff;
  cursor: pointer;
  user-select: none;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: #1ed760;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ==========================================================================
   Configurator Page Layout
   ========================================================================== */
.configurator-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.configurator-panel {
  position: sticky;
  top: 100px;
  background: var(--bg-surface);
  border: 1px solid rgba(30, 215, 96, 0.3);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-glow);
}

.quantity-stepper {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stepper-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1ed760;
  cursor: pointer;
  transition: background 0.2s ease;
}

.stepper-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.stepper-input {
  flex-grow: 1;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  border-color: var(--color-brand);
  background: rgba(255, 255, 255, 0.07);
}

/* ==========================================================================
   Article & Blog Layout
   ========================================================================== */
.article-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3rem;
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
}

.article-body h2 {
  font-size: 1.75rem;
  font-weight: 900;
  color: #ffffff;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.02em;
}

.article-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin: 1.75rem 0 0.75rem;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul, .article-body ol {
  margin: 0 0 1.5rem 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-callout {
  background: rgba(30, 215, 96, 0.1);
  border-left: 4px solid #1ed760;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

/* ==========================================================================
   Modal Dialog
   ========================================================================== */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

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

.modal-content {
  background: var(--bg-surface);
  border: 1px solid rgba(30, 215, 96, 0.4);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 480px;
  padding: 2rem;
  box-shadow: var(--shadow-glow-lg);
  animation: modal-pop 0.25s ease-out;
}

@keyframes modal-pop {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #08080a;
  border-top: 1px solid var(--border-subtle);
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #1ed760;
}

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

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .trust-strip {
    justify-content: center;
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .configurator-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn, .mobile-toggle {
    display: flex;
  }
  .orbit-badge {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
