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

:root {
  --bg-dark: #0B0F19;
  --bg-card: rgba(17, 24, 39, 0.75);
  --bg-card-hover: rgba(26, 36, 56, 0.9);
  --bg-navy-light: #161F33;
  --accent-red: #E50914;
  --accent-red-hover: #FF2A54;
  --accent-gradient: linear-gradient(135deg, #FF2A54 0%, #E50914 50%, #B80710 100%);
  --accent-glow: rgba(255, 42, 84, 0.35);
  --text-main: #FFFFFF;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 42, 84, 0.3);
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- HEADER & NAVIGATION --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
  background: rgba(11, 15, 25, 0.6);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled {
  padding: 14px 0;
  background: rgba(11, 15, 25, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-main);
  flex-shrink: 0;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--accent-glow);
}

.logo-icon svg {
  width: 18px;
  height: 18px;
  fill: #FFF;
}

.logo span {
  color: var(--accent-red-hover);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin-left: 44px;
  margin-right: auto;
}

.nav-links > li {
  position: relative;
}

.nav-links > li.has-dropdown {
  position: static;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

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

/* --- MEGA DROPDOWN MENU --- */
.has-dropdown {
  padding: 10px 0;
}

.dropdown-trigger .chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-trigger .chevron {
  transform: rotate(180deg);
  color: var(--accent-red-hover);
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 600px;
  background: rgba(11, 15, 25, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 42, 84, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
}

.mega-dropdown.playlistpush-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: min(840px, 92vw);
  background: #0C1222;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 40px rgba(255, 42, 84, 0.12);
}

.has-dropdown:hover .mega-dropdown.playlistpush-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-body {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 24px;
}

.mega-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #64748B;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.browse-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.browse-item {
  display: flex !important;
  flex-direction: column;
  padding: 6px 0;
  transition: var(--transition) !important;
}

.browse-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  transition: var(--transition);
}

.browse-desc {
  font-size: 12px;
  color: #94A3B8;
  margin-top: 2px;
  font-weight: 400;
}

.browse-item:hover .browse-title,
.browse-item.active .browse-title {
  color: var(--accent-red-hover);
}

.mega-help-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-red-hover);
  margin-top: 20px;
  transition: var(--transition);
}

.mega-help-link:hover {
  transform: translateX(4px);
}

.program-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  height: calc(100% - 32px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.program-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 42, 84, 0.3);
  transform: translateY(-3px);
}

.program-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.program-desc {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.5;
  margin-bottom: 20px;
}

.program-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.program-stat {
  font-size: 13px;
  font-weight: 700;
  color: #E2E8F0;
}

.program-apply-btn {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-red-hover);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.program-apply-btn:hover {
  transform: translateX(3px);
}

.mega-menu-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-proof-text {
  font-size: 14px;
  color: #94A3B8;
  font-weight: 500;
}

.mega-cta-btn {
  padding: 10px 24px !important;
  font-size: 14px !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-login {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
}

.btn-login:hover {
  color: var(--accent-red-hover);
}

.btn-primary {
  background: var(--accent-gradient);
  color: #FFF;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 42, 84, 0.5);
  background: linear-gradient(135deg, #FF3B62 0%, #EE0A16 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
}

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

.feature-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.feature-link:hover {
  color: var(--accent-red-hover);
  transform: translateX(4px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, rgba(255, 42, 84, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 80% 60%, rgba(14, 165, 233, 0.08) 0%, transparent 40%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 42, 84, 0.1);
  border: 1px solid rgba(255, 42, 84, 0.25);
  border-radius: var(--radius-full);
  color: var(--accent-red-hover);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #FFFFFF 0%, #D1D5DB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  background: linear-gradient(135deg, #FF2A54 0%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.avatar-group {
  display: flex;
}

.avatar-group img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  margin-left: -10px;
}

.avatar-group img:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: 14px;
  color: var(--text-muted);
}

.proof-text strong {
  color: var(--text-main);
}

.stars {
  color: #F59E0B;
  display: inline-flex;
  gap: 2px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 42, 84, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.hero-img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease;
}

.hero-img:hover {
  transform: translateY(-8px) scale(1.02);
}

/* --- AS SEEN ON BAR --- */
.press-bar {
  padding: 40px 0;
  background: rgba(17, 24, 39, 0.4);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.press-title {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.press-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: var(--transition);
}

.press-logos:hover {
  opacity: 0.9;
  filter: grayscale(0%);
}

.press-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-family: serif;
}

.press-logo.tech { font-family: sans-serif; font-weight: 900; letter-spacing: -1px; }
.press-logo.vice { font-style: italic; font-weight: 900; }

/* --- SECTION STYLES --- */
.section {
  padding: 110px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-tag {
  color: var(--accent-red-hover);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
}

/* --- CURATOR & CREATOR SECTIONS --- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-media {
  position: relative;
}

.feature-media img {
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-light);
}

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

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 24px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FF2A54 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- REACH & ROI CALCULATOR --- */
.calculator-box {
  background: linear-gradient(180deg, rgba(22, 31, 51, 0.8) 0%, rgba(11, 15, 25, 0.95) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  max-width: 900px;
  margin: 0 auto;
}

.calc-type-selector {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}

.calc-type-btn {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.calc-type-btn.active {
  background: var(--accent-gradient);
  color: #FFF;
  border-color: transparent;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.slider-group {
  margin-bottom: 36px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.slider-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
}

.slider-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-red-hover);
}

input[type=range] {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-red-hover);
  cursor: pointer;
  box-shadow: 0 0 10px var(--accent-glow);
}

.calc-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: rgba(0, 0, 0, 0.3);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.result-item {
  text-align: center;
}

.result-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-main);
}

.result-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* --- FEATURES GRID --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  display: flex;
  gap: 20px;
}

.feature-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 42, 84, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red-hover);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.feature-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-info p {
  font-size: 15px;
  color: var(--text-muted);
}

/* --- REVIEWS SECTION --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
}

.review-stars {
  color: #F59E0B;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.review-text {
  font-size: 16px;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-glow);
}

.author-name {
  font-size: 15px;
  font-weight: 700;
}

.author-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* --- TEAM & TRUST --- */
.support-box {
  background: rgba(22, 31, 51, 0.5);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(12px);
}

.team-avatars {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.team-avatars img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--accent-red-hover);
  box-shadow: 0 0 15px var(--accent-glow);
}

/* --- FAQ ACCORDION --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-glow);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-red-hover);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

/* --- BOTTOM CTA --- */
.bottom-cta {
  padding: 120px 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 42, 84, 0.2) 0%, transparent 70%);
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, rgba(22, 31, 51, 0.9) 0%, rgba(11, 15, 25, 0.95) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 70px 40px;
  box-shadow: 0 20px 60px rgba(255, 42, 84, 0.2);
}

.cta-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* --- FOOTER --- */
.footer {
  background: #070A12;
  border-top: 1px solid var(--border-light);
  padding: 80px 0 40px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 16px;
  max-width: 300px;
  color: var(--text-dim);
}

.footer-col h5 {
  color: var(--text-main);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
  font-size: 13px;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
  .hero-grid, .feature-row, .feature-row.reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-row.reverse {
    direction: ltr;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-social-proof {
    justify-content: center;
  }

  .features-grid, .reviews-grid, .footer-grid {
    grid-template-columns: 1fr;
  }

  .calc-results-grid {
    grid-template-columns: 1fr;
  }

  .nav-links, .nav-actions {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    background: rgba(11, 15, 25, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--border-light);
    gap: 16px;
    align-items: stretch;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    max-height: 80vh;
    overflow-y: auto;
  }

  .has-dropdown {
    width: 100%;
    text-align: center;
  }

  .mega-dropdown,
  .mega-dropdown.playlistpush-menu {
    position: static;
    transform: none !important;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.03);
    margin-top: 10px;
    padding: 16px;
  }

  .mega-menu-body {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mega-menu-footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

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

  .nav-actions.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 220px);
    left: 0;
    right: 0;
    background: rgba(11, 15, 25, 0.98);
    padding: 16px 24px 24px;
    align-items: center;
    gap: 16px;
  }

  .mobile-toggle {
    display: block;
  }
}
