/* ==========================================================================
   AUDIOICONIC - REDESIGNED HIGH-CONTRAST PALETTE & RESPONSIVE DESIGN SYSTEM
   Colors: Pitch Black (#060709), Pure White (#ffffff), Dark Orange (#ff5500), Cyber Yellow (#ffc700), Neon Blue (#0066ff)
   ========================================================================== */

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

:root {
  /* AUDIOICONIC European Music Industry Professional Palette */
  /* LIGHT SURFACES (60-70% visual balance) */
  --bg-light-white: #FFFFFF;     /* Primary clean background */
  --bg-light-offwhite: #F8FAFC;  /* Alternative section background */
  --bg-light-surface: #F1F5F9;   /* Secondary section / panel background */
  --border-light: #E2E8F0;       /* Primary light border */
  --border-light-subtle: #CBD5E1;/* Secondary light border */
  
  /* DARK SURFACES (20-25% visual balance) */
  --bg-dark-main: #0B0B12;      /* Dark hero, stats, footer background */
  --bg-dark-surface: #111827;   /* Dark cards, dark UI */
  --border-dark: #27272A;       /* Dark section borders */
  
  /* BRAND ACCENT ORANGE (5-8% visual balance) */
  --orange-heat: #F97316;       /* Primary brand accent & Primary CTA */
  --orange-heat-dark: #EA580C;  /* Primary CTA hover */
  --orange-glow: rgba(249, 115, 22, 0.25);
  
  /* TEXT COLOURS (Light Backgrounds) */
  --text-dark-primary: #111827;  /* Main headings, card titles, prices */
  --text-dark-secondary: #475569;/* Paragraphs, descriptions */
  --text-dark-muted: #64748B;    /* Metadata, small text */
  
  /* TEXT COLOURS (Dark Backgrounds) */
  --text-pure-white: #FFFFFF;    /* Dark section primary text */
  --text-silver: #CBD5E1;        /* Dark section secondary text */
  --text-muted: #94A3B8;         /* Dark section muted text */
  
  /* SPECIAL ACCENTS (3-5% visual balance) */
  --yellow-cyber: #FBBF24;       /* Stars, ratings, small badges ONLY */
  --blue-electric: #3B82F6;     /* Secondary tech info accent ONLY */
  
  /* PLATFORM ACCENTS */
  --spotify-green: #1DB954;
  --youtube-red: #FF0000;
  --soundcloud-orange: #FF5500;
  
  /* Fonts */
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout Radius & Shadows */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-orange: 0 8px 25px rgba(249, 115, 22, 0.35);
}

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

html {
  scroll-behavior: smooth;
  background-color: #FFFFFF;
  color: #475569;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background: #FFFFFF;
  color: #475569;
  min-height: 100vh;
}

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

button, input, select {
  font-family: inherit;
  font-size: 16px;
}

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

/* Typography Utilities */
.heading-primary {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.heading-secondary {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #111827;
}

.text-orange-glow {
  color: var(--orange-heat);
}

.text-yellow-bright {
  color: var(--yellow-cyber);
}

.text-blue-electric {
  color: var(--blue-neon);
}

.subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: #475569;
  max-width: 720px;
  margin: 12px auto 0 auto;
  line-height: 1.6;
}

.hero-section .heading-primary,
.hero-section .heading-secondary {
  color: #FFFFFF;
}

.hero-section .subtitle {
  color: #CBD5E1;
}

/* Flame & Neon Badges */
.badge-flame-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(249, 115, 22, 0.12);
  color: #F97316;
  font-size: clamp(0.72rem, 1.5vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--orange-heat);
  margin-bottom: 24px;
}

/* 9. BUTTONS (Consistent Primary CTA System: #F97316 Background, #FFFFFF Text, #EA580C Hover) */
.btn-heat-orange,
.btn-cyber-yellow,
.btn-yt-red,
.btn-spotify-green,
.btn-electric-blue {
  background: #F97316;
  color: #FFFFFF;
  padding: clamp(10px, 1.8vw, 14px) clamp(20px, 3vw, 28px);
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-orange);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 40px;
}

.btn-heat-orange::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-30deg);
  animation: lightning-swipe 2.8s infinite linear;
}

.btn-heat-orange:hover,
.btn-cyber-yellow:hover,
.btn-yt-red:hover,
.btn-spotify-green:hover,
.btn-electric-blue:hover {
  background: #EA580C;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.45);
  transform: translateY(-2px);
}

.btn-spotify-green {
  background: linear-gradient(135deg, #1db954 0%, #15883e 100%);
  color: #ffffff;
  padding: clamp(10px, 1.8vw, 14px) clamp(20px, 3vw, 28px);
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(29, 185, 84, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 40px;
}

.btn-spotify-green:hover {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-electric-blue {
  background: linear-gradient(135deg, var(--blue-electric), #0044cc);
  color: #ffffff;
  padding: clamp(10px, 1.8vw, 14px) clamp(20px, 3vw, 28px);
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-blue);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 40px;
}

.btn-electric-blue:hover {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* ==========================================================================
   ADMIN DASHBOARD PERFECT LIGHT MODE (HIGH CONTRAST & CRYSTAL CLEAR TEXT)
   ========================================================================== */
body.dashboard-body.theme-light {
  background: #F1F5F9 !important;
  color: #0F172A !important;
}

/* Force dark text for headings, titles, labels, paragraphs, table cells, and spans */
body.dashboard-body.theme-light h1,
body.dashboard-body.theme-light h2,
body.dashboard-body.theme-light h3,
body.dashboard-body.theme-light h4,
body.dashboard-body.theme-light p,
body.dashboard-body.theme-light label,
body.dashboard-body.theme-light th,
body.dashboard-body.theme-light td,
body.dashboard-body.theme-light .dash-user-name,
body.dashboard-body.theme-light .dash-group-title,
body.dashboard-body.theme-light .dash-stat-label,
body.dashboard-body.theme-light .dash-table-header h3,
body.dashboard-body.theme-light table td div,
body.dashboard-body.theme-light table td span {
  color: #0F172A !important;
}

/* Secondary muted text */
body.dashboard-body.theme-light .dash-user-role,
body.dashboard-body.theme-light .dash-welcome-text p,
body.dashboard-body.theme-light .dash-table-header p,
body.dashboard-body.theme-light table td div[style*="font-size: 0.78rem"] {
  color: #475569 !important;
}

body.dashboard-body.theme-light .dash-sidebar {
  background: #FFFFFF !important;
  border-right: 1.5px solid #E2E8F0 !important;
}

body.dashboard-body.theme-light .dash-brand {
  border-bottom: 1.5px solid #E2E8F0 !important;
}

body.dashboard-body.theme-light .dash-brand span {
  color: #0F172A !important;
}

body.dashboard-body.theme-light .dash-header {
  background: #FFFFFF !important;
  border-bottom: 1.5px solid #E2E8F0 !important;
}

body.dashboard-body.theme-light .dash-header-search input {
  background: #F8FAFC !important;
  color: #0F172A !important;
  border: 1.5px solid #CBD5E1 !important;
}

body.dashboard-body.theme-light .dash-menu-item a {
  color: #334155 !important;
  font-weight: 700 !important;
}

body.dashboard-body.theme-light .dash-menu-item.active a {
  background: #DCFCE7 !important;
  color: #15803D !important;
  font-weight: 900 !important;
}

body.dashboard-body.theme-light .dash-welcome-card {
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  color: #0F172A !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04) !important;
}

body.dashboard-body.theme-light .dash-stat-card {
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  color: #0F172A !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03) !important;
}

body.dashboard-body.theme-light .dash-stat-number {
  color: #0F172A !important;
  font-weight: 900 !important;
}

body.dashboard-body.theme-light .dash-table-card {
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  color: #0F172A !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04) !important;
}

body.dashboard-body.theme-light .dash-table {
  background: #FFFFFF !important;
}

body.dashboard-body.theme-light .dash-table th {
  background: #F8FAFC !important;
  color: #334155 !important;
  font-weight: 900 !important;
  border-bottom: 2px solid #E2E8F0 !important;
}

body.dashboard-body.theme-light .dash-table td {
  border-bottom: 1px solid #E2E8F0 !important;
  color: #0F172A !important;
  font-weight: 600 !important;
}

body.dashboard-body.theme-light .dash-form-input,
body.dashboard-body.theme-light .dash-form-textarea,
body.dashboard-body.theme-light select.dash-form-input {
  background: #F8FAFC !important;
  color: #0F172A !important;
  border: 1.5px solid #CBD5E1 !important;
  font-weight: 700 !important;
}

body.dashboard-body.theme-light .admin-theme-toggle-btn {
  background: #FFFFFF !important;
  color: #0F172A !important;
  border: 1.5px solid #CBD5E1 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
}

/* Dark Working Mode (Midnight 🌙) */
body.dashboard-body.theme-dark {
  background: #0B0F17 !important;
  color: #F8FAFC !important;
}

body.dashboard-body.theme-dark .dash-sidebar {
  background: #111827 !important;
  border-right: 1px solid #1E293B !important;
}

body.dashboard-body.theme-dark .dash-header {
  background: #111827 !important;
  border-bottom: 1px solid #1E293B !important;
}

body.dashboard-body.theme-dark .dash-header-search input {
  background: #1E293B !important;
  color: #F8FAFC !important;
  border: 1px solid #334155 !important;
}

body.dashboard-body.theme-dark .dash-menu-item a {
  color: #94A3B8 !important;
}

body.dashboard-body.theme-dark .dash-menu-item.active a {
  background: rgba(22, 163, 74, 0.2) !important;
  color: #4ADE80 !important;
  font-weight: 800 !important;
}

body.dashboard-body.theme-dark .dash-welcome-card {
  background: #1E293B !important;
  border: 1px solid #334155 !important;
  color: #F8FAFC !important;
}

body.dashboard-body.theme-dark .dash-stat-card {
  background: #1E293B !important;
  border: 1px solid #334155 !important;
  color: #F8FAFC !important;
}

body.dashboard-body.theme-dark .dash-stat-number {
  color: #F8FAFC !important;
}

body.dashboard-body.theme-dark .dash-table-card {
  background: #1E293B !important;
  border: 1px solid #334155 !important;
  color: #F8FAFC !important;
}

body.dashboard-body.theme-dark .dash-table th {
  background: #0F172A !important;
  color: #94A3B8 !important;
  border-bottom: 1px solid #334155 !important;
}

body.dashboard-body.theme-dark .dash-table td {
  border-bottom: 1px solid #334155 !important;
  color: #E2E8F0 !important;
}

body.dashboard-body.theme-dark .admin-theme-toggle-btn {
  background: #1E293B !important;
  color: #F8FAFC !important;
  border: 1px solid #334155 !important;
}

/* Direct Order Modal Styling */
/* Compact Header Nav Button */
.btn-nav-launch {
  padding: 8px 18px !important;
  font-size: 0.86rem !important;
  font-weight: 800 !important;
  min-height: auto !important;
  box-shadow: 0 4px 15px rgba(255, 85, 0, 0.35) !important;
  white-space: nowrap;
}

.nav-link-free-promo {
  color: var(--yellow-cyber) !important;
  font-weight: 800 !important;
  background: rgba(255, 199, 0, 0.14);
  border: 1px solid rgba(255, 199, 0, 0.4);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 14px rgba(255, 199, 0, 0.25);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-link-free-promo:hover {
  background: var(--yellow-cyber);
  color: #000000 !important;
  box-shadow: 0 0 25px var(--yellow-cyber);
}

@keyframes lightning-swipe {
  0% { left: -120%; }
  20% { left: 120%; }
  100% { left: 120%; }
}

/* ==========================================================================
   HEADER / NAVIGATION LAYOUT FIX
   ========================================================================== */
.main-header,
.soh-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: clamp(10px, 1.5vw, 16px) 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.main-header.scrolled,
.soh-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 10px 0;
}

.header-container,
.nav-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #111827;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: #F97316;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
  flex-shrink: 0;
}

.logo-icon svg {
  width: 23px; height: 23px;
  fill: #FFFFFF;
}

.nav-links {
  display: flex !important;
  align-items: center !important;
  gap: clamp(16px, 2.2vw, 32px) !important;
  list-style: none !important;
  margin: 0 0 0 clamp(20px, 3vw, 45px) !important;
  padding: 0 !important;
}

.nav-link {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  transition: color 0.25s ease, transform 0.25s ease !important;
  white-space: nowrap;
  letter-spacing: 0.2px;
  padding: 6px 2px;
  position: relative;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: #F97316 !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: #F97316;
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-shrink: 0 !important;
  margin-left: auto;
}

.btn-free-promo-nav {
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  color: #111827 !important;
  font-weight: 800 !important;
  padding: 7px 16px !important;
  border-radius: var(--radius-full);
  box-shadow: none;
  font-size: 0.86rem !important;
  transition: all 0.25s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-free-promo-nav:hover {
  background: #F8FAFC;
  border-color: #94A3B8;
  color: #111827 !important;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #27272A;
  color: #FFFFFF;
  font-size: 1.6rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 65px; left: 0; right: 0;
  background: #0B0B12;
  backdrop-filter: blur(20px);
  border-bottom: 1.5px solid #27272A;
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateY(-150%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.mobile-nav-drawer.active {
  transform: translateY(0);
}

/* ==========================================================================
   12. HERO SECTION WITH CONCERT BACKGROUND IMAGE
   ========================================================================== */
.hero-section {
  position: relative;
  padding: clamp(130px, 16vw, 180px) 0 clamp(70px, 10vw, 110px) 0;
  overflow: hidden;
  background-image: 
    linear-gradient(180deg, rgba(11, 11, 18, 0.85) 0%, #0B0B12 100%),
    url('hero_bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-backdrop {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 650px;
  background: 
    radial-gradient(circle at 25% 30%, rgba(255, 85, 0, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 75% 30%, rgba(0, 102, 255, 0.25) 0%, transparent 50%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

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

.hero-text-col {
  text-align: left;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: clamp(24px, 4vw, 36px);
  flex-wrap: wrap;
}

.hero-live-strip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(14, 16, 23, 0.85);
  border: 1px solid var(--border-dark);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  margin-top: 36px;
  backdrop-filter: blur(12px);
  max-width: 100%;
}

.live-indicator {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--orange-heat);
  box-shadow: 0 0 12px var(--orange-heat);
  animation: pulseHeat 1.8s infinite;
  flex-shrink: 0;
}

@keyframes pulseHeat {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* Continuous Light Shimmer Reflection Sweep over Hero Live Promotion Card (Blending Dark Specular Sheen) */
.hero-banner-card-shimmer {
  position: relative !important;
  overflow: hidden !important;
}

.hero-banner-card-shimmer::before {
  content: '';
  position: absolute;
  top: -65%;
  left: -150%;
  width: 75%;
  height: 230%;
  background: linear-gradient(
    75deg,
    transparent 0%,
    rgba(255, 255, 255, 0.01) 20%,
    rgba(255, 255, 255, 0.14) 45%,
    rgba(249, 115, 22, 0.18) 50%,
    rgba(255, 255, 255, 0.14) 55%,
    rgba(255, 255, 255, 0.01) 80%,
    transparent 100%
  );
  transform: rotate(25deg);
  animation: heroCardShimmerSweep 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: soft-light;
}

@keyframes heroCardShimmerSweep {
  0% {
    left: -150%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  45%, 100% {
    left: 220%;
    opacity: 0;
  }
}

/* Smaller Transparent Electric Cyan Pill Badge for Hero Card */
.hero-electric-pill-badge {
  background: rgba(56, 189, 248, 0.14) !important;
  color: #38BDF8 !important;
  border: 1px solid rgba(56, 189, 248, 0.45) !important;
  font-weight: 900 !important;
  font-size: 0.68rem !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  letter-spacing: 0.5px !important;
  white-space: nowrap !important;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.25) !important;
  display: inline-flex !important;
  align-items: center !important;
  transition: all 0.3s ease !important;
}

.hero-electric-pill-badge:hover {
  background: rgba(56, 189, 248, 0.25) !important;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.45) !important;
  border-color: #38BDF8 !important;
}

/* HERO BANNER GRAPHIC CARD & STACKED DUAL CARDS DISPLAY */
.hero-stacked-cards-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

/* Background Stacked Card (Positioned at the top behind front card) */
.hero-card-background-stacked {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%) scale(0.91);
  z-index: 1;
  opacity: 0.75;
  filter: blur(0.3px) brightness(0.88);
  width: 330px !important;
  background: #0D111A !important;
  border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 24px !important;
  padding: 18px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Front Main Card (Exact replica of user screenshot design) */
.hero-card-front-main {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  width: 350px !important;
  background: #0D111A !important;
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 26px !important;
  padding: 24px !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 45px rgba(249, 115, 22, 0.18) !important;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

/* Hover Interaction: Smooth Floating Lift Effect */
.hero-stacked-cards-wrapper:hover .hero-card-background-stacked {
  transform: translateX(-50%) translateY(-10px) scale(0.93) !important;
  opacity: 0.9 !important;
}

.hero-stacked-cards-wrapper:hover .hero-card-front-main {
  transform: translateY(-5px) !important;
  box-shadow: 0 32px 75px rgba(0, 0, 0, 0.85), 0 0 55px rgba(249, 115, 22, 0.28) !important;
}

.hero-banner-card {
  background: rgba(14, 16, 23, 0.82);
  border: 1.5px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 32px);
  box-shadow: var(--shadow-deep);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.vinyl-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.spinning-vinyl {
  width: clamp(140px, 22vw, 180px);
  height: clamp(140px, 22vw, 180px);
  border-radius: 50%;
  background: radial-gradient(circle, #222 20%, #000 60%, #111 100%);
  border: 4px solid #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  position: relative;
  animation: spinVinyl 14s linear infinite;
}

.vinyl-center-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(50px, 8vw, 65px);
  height: clamp(50px, 8vw, 65px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-heat), var(--yellow-cyber));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #000;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.vinyl-center-label svg {
  width: 26px; height: 26px;
  fill: #000;
}

@keyframes spinVinyl {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-banner-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(6, 7, 9, 0.8);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
  flex-wrap: wrap;
  gap: 12px;
}

.floating-hero-pill {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--blue-electric);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-blue);
}

/* ==========================================================================
   HIGH-IMPACT STATS SECTION WITH 3D TILT & GLOW MOVEMENTS
   ========================================================================== */
.stats-section {
  padding: clamp(75px, 10vw, 120px) 0;
  position: relative;
  background: transparent;
  overflow: hidden;
}

/* Staggered Ambient Floating Keyframes for Stat Cards */
@keyframes cardFloatSlow1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes cardFloatSlow2 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes cardFloatSlow3 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.stats-section {
  padding: clamp(75px, 10vw, 120px) 0;
  background: radial-gradient(circle at 50% 100%, rgba(249, 115, 22, 0.03) 0%, #FFFFFF 70%);
  position: relative;
}

.stats-hero-matching-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3.5vw, 32px);
  margin-top: 52px;
  perspective: 1000px;
}

.stat-hero-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: clamp(32px, 4vw, 44px) clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

/* Bright Front-Layer Light Shimmer Sweep Effect */
.stat-hero-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg, 
    transparent 25%, 
    rgba(255, 255, 255, 0.8) 45%, 
    rgba(249, 115, 22, 0.4) 50%, 
    rgba(255, 255, 255, 0.8) 55%, 
    transparent 75%
  );
  transform: translateX(-120%) rotate(25deg);
  pointer-events: none;
  z-index: 10;
  mix-blend-mode: overlay;
}

@keyframes statCardShimmerSweep {
  0% {
    transform: translateX(-120%) rotate(25deg);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  60% {
    transform: translateX(120%) rotate(25deg);
    opacity: 1;
  }
  100% {
    transform: translateX(120%) rotate(25deg);
    opacity: 0;
  }
}

.stat-hero-card.card-orange::after { animation: statCardShimmerSweep 5s ease-in-out infinite 0.5s; }
.stat-hero-card.card-yellow::after { animation: statCardShimmerSweep 5s ease-in-out infinite 2.0s; }
.stat-hero-card.card-blue::after { animation: statCardShimmerSweep 5s ease-in-out infinite 3.5s; }

.stat-hero-card:hover::after {
  animation: statCardShimmerSweep 0.9s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.stat-hero-card.card-orange { animation: cardFloatSlow1 6s ease-in-out infinite; }
.stat-hero-card.card-yellow { animation: cardFloatSlow2 7s ease-in-out infinite 0.5s; }
.stat-hero-card.card-blue { animation: cardFloatSlow3 6.5s ease-in-out infinite 1s; }

.stat-hero-card:hover {
  animation-play-state: paused !important;
  border-color: #F97316;
  background: #FFFFFF;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08), 0 0 25px rgba(249, 115, 22, 0.18);
}

.stat-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 4px auto !important;
  position: relative;
  background: rgba(255, 255, 255, 0.95) !important;
  color: #F97316 !important;
  border: 1.5px solid rgba(226, 232, 240, 0.9) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  z-index: 2;
}

.stat-hero-card:hover .stat-card-icon {
  transform: scale(1.1);
  border-color: rgba(249, 115, 22, 0.4) !important;
}

.stat-card-big-number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.5px;
  position: relative;
  z-index: 2;
  color: #F97316;
  text-align: center !important;
  margin: 0 auto !important;
}

.stat-card-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
  text-align: center !important;
  margin: 0 auto !important;
}

.stat-card-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  text-align: center !important;
  margin: 0 auto !important;
}

/* Smooth Slow Horizontal Ticker Sliding Organic Channel Bar */
.hero-matching-channel-bar {
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  border-radius: 50px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.hero-matching-channel-bar:hover {
  border-color: #F97316;
  box-shadow: 0 6px 25px rgba(249, 115, 22, 0.14);
}

.channel-bar-static-label {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 900;
  color: #111827;
  flex-shrink: 0;
  padding-right: 18px;
  border-right: 1.5px solid #E2E8F0;
  z-index: 2;
  background: #FFFFFF;
}

.channel-bar-ticker-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.channel-bar-ticker-track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  width: max-content;
  animation: slowTickerSlide 24s linear infinite;
}

.hero-matching-channel-bar:hover .channel-bar-ticker-track {
  animation-play-state: paused;
}

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

.platform-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
}
  font-size: 0.88rem;
  font-weight: 800;
  color: #475569;
  transition: transform 0.25s ease, color 0.25s ease;
}

.platform-mini-badge:hover {
  transform: translateY(-2px);
  color: #111827;
}

.platform-mini-badge svg {
  width: 20px; height: 20px;
  fill: currentColor;
}

/* ==========================================================================
   ULTRA-COMPACT SLIM INLINE BUILDER SECTION
   ========================================================================== */
.packages-section {
  padding: clamp(50px, 6vw, 80px) 0;
  position: relative;
  background: transparent;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(24px, 3.5vw, 36px);
}

.compact-builder-top-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  align-items: center;
}

.compact-builder-bottom-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.est-results-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.compact-metric-pill {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.compact-metric-pill strong {
  color: #111827;
  font-weight: 800;
}

.platform-selector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.builder-platform-card {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-weight: 800;
  font-size: 0.82rem;
  color: #475569;
}

.builder-platform-card svg {
  width: 15px; height: 15px;
  fill: currentColor;
}

.builder-platform-card:hover {
  background: #FFFFFF;
  border-color: #CBD5E1;
  color: #111827;
}

.builder-platform-card.active {
  border: 2px solid #F97316;
  background: #FFF7ED;
  color: #F97316;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.15);
}

.budget-presets-row {
  display: flex;
  gap: 6px;
}

.preset-pill {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  color: #475569;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.preset-pill:hover {
  background: #FFFFFF;
  border-color: #CBD5E1;
  color: #111827;
}

.preset-pill.active {
  background: #F97316;
  color: #FFFFFF;
  border-color: #F97316;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.range-slider-wrapper {
  position: relative;
  padding: 2px 0;
}

.custom-range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, #F97316 0%, #EA580C 100%);
  outline: none;
  cursor: pointer;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.custom-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #F97316;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.custom-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  border-color: #EA580C;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.tab-btn {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  color: #475569;
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tab-btn:hover {
  background: #FFFFFF;
  color: #111827;
  border-color: #CBD5E1;
}

.tab-btn.active {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
  box-shadow: 0 4px 15px rgba(17, 24, 39, 0.2);
}

.packages-grid,
.youtube-grid-wrapper {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: clamp(18px, 2.8vw, 24px) !important;
  align-items: stretch !important;
  width: 100% !important;
}

@media (max-width: 1080px) {
  .packages-grid,
  .youtube-grid-wrapper {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .packages-grid,
  .youtube-grid-wrapper {
    grid-template-columns: 1fr !important;
  }
}

.packages-section {
  padding: clamp(80px, 11vw, 130px) 0;
  background-color: #FFFFFF;
  background-image: 
    linear-gradient(180deg, #F8FAFC 0%, rgba(249, 115, 22, 0.03) 30%, #FFFFFF 70%, #F8FAFC 100%),
    radial-gradient(circle 700px at var(--spotlight-x, 50%) var(--spotlight-y, 40%), rgba(249, 115, 22, 0.09) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
  transition: background-position 0.2s ease-out;
}

/* Subtle Ambient Section Blend Transition Borders */
.packages-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.3) 50%, transparent);
}

.packages-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 232, 240, 0.8) 50%, transparent);
}

.package-card {
  background: #FFFFFF !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 32px 24px;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.035) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.package-card.card-sc-track,
.package-card.card-yt-ads,
.package-card.card-sc-playlist,
.package-card.card-spotify-placement { 
  border: none !important; 
  background: #FFFFFF !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.035) !important; 
}

.package-card:hover {
  transform: translateY(-6px) !important;
  background: #FFFFFF !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.package-card.popular { 
  border: 2px solid #D97706 !important; 
  background: #FFFFFF !important;
  box-shadow: 0 15px 35px rgba(217, 119, 6, 0.15) !important; 
  position: relative !important;
  overflow: hidden !important;
}

/* Elegant Light Shimmer Sweep Animation on Popular Pricing Cards */
.package-card.popular::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: linear-gradient(
    75deg,
    transparent 35%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 230, 180, 0.3) 55%,
    transparent 65%
  );
  transform: rotate(25deg) translateX(-100%);
  animation: cardLightShimmer 3.8s infinite ease-in-out;
  pointer-events: none;
  z-index: 5;
}

@keyframes cardLightShimmer {
  0% {
    transform: rotate(25deg) translateX(-130%);
  }
  35%, 100% {
    transform: rotate(25deg) translateX(130%);
  }
}

.package-card.popular:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 45px rgba(217, 119, 6, 0.22) !important;
}

.popular-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  left: auto;
  transform: none;
  background: #D97706 !important;
  color: #FFFFFF !important;
  font-weight: 900 !important;
  font-size: 0.72rem !important;
  letter-spacing: 1px !important;
  padding: 4px 12px !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3) !important;
  overflow: hidden !important;
}

.popular-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: badgeLightShimmer 3.8s infinite ease-in-out;
}

@keyframes badgeLightShimmer {
  0%, 15% { left: -100%; }
  45%, 100% { left: 100%; }
}
  font-weight: 900;
  font-size: 0.7rem;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 1.2px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
  z-index: 10;
}

.card-icon-box {
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: inline-block !important;
  margin-bottom: 14px !important;
  flex-shrink: 0 !important;
}

.package-card.card-yt-ads .card-icon-box,
.package-card.card-sc-playlist .card-icon-box,
.package-card.card-spotify-placement .card-icon-box {
  background: transparent !important;
  border: none !important;
}

.package-badge-tag-sc {
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  margin-bottom: 8px !important;
  min-height: 1.2rem !important;
  display: flex !important;
  align-items: center !important;
  color: #F97316 !important;
}

.package-title {
  font-size: 1.25rem !important;
  font-weight: 900 !important;
  color: #111827 !important;
  line-height: 1.25 !important;
  min-height: 3.2rem !important;
  display: flex !important;
  align-items: center !important;
  margin-bottom: 6px !important;
}

.package-timing {
  font-size: 0.75rem !important;
  color: #64748B !important;
  font-weight: 800 !important;
  letter-spacing: 0.8px !important;
  margin-bottom: 18px !important;
  text-transform: uppercase;
  min-height: 1.4rem !important;
  display: flex !important;
  align-items: center !important;
}

.card-price-header {
  display: flex !important;
  align-items: baseline !important;
  gap: 6px !important;
  margin-bottom: 20px !important;
  padding-bottom: 18px !important;
  border-bottom: 1px solid #E2E8F0 !important;
  min-height: 3.6rem !important;
}

.card-price-amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: #F97316;
}

.package-card .card-price-amount,
.package-card.card-yt-ads .card-price-amount,
.package-card.card-sc-playlist .card-price-amount,
.package-card.card-spotify-placement .card-price-amount { 
  color: #D97706 !important; 
  font-size: 2.5rem !important;
  font-weight: 900 !important;
}

.card-price-period {
  font-size: 0.84rem;
  font-weight: 700;
  color: #64748B !important;
}

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

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155 !important;
  line-height: 1.45;
}

.features-list li svg,
.package-card.card-yt-ads .features-list li svg,
.package-card.card-sc-playlist .features-list li svg,
.package-card.card-spotify-placement .features-list li svg { 
  width: 18px; 
  height: 18px;
  stroke: #D97706 !important;
  stroke-width: 2.8;
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-select-package {
  width: 100%;
  box-shadow: none;
}

/* UNIFORM PRICING TABLE BUY BUTTONS SIZE & HIERARCHY */
.package-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

/* Sleek Dark Charcoal Pill Button Style for Standard Package Cards */
.package-card a.btn-yt-red,
.package-card a.btn-cyber-yellow,
.package-card a.btn-electric-blue,
.package-card a.btn-heat-orange,
.package-card a.btn-spotify-green,
.package-card a.btn-select-package {
  height: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  white-space: nowrap !important;
  padding: 0 20px !important;
  font-size: 0.95rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.5px !important;
  box-sizing: border-box !important;
  margin-top: auto !important;
  border-radius: 30px !important;
  background: #0F172A !important;
  color: #FFFFFF !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15) !important;
  transition: all 0.25s ease !important;
}

.package-card a.btn-yt-red:hover,
.package-card a.btn-cyber-yellow:hover,
.package-card a.btn-electric-blue:hover,
.package-card a.btn-heat-orange:hover,
.package-card a.btn-spotify-green:hover,
.package-card a.btn-select-package:hover {
  background: #1E293B !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.25) !important;
}

/* Primary Warm Amber CTA ONLY for Featured Package Cards */
.package-card.popular a.btn-select-package,
.package-card.popular a.btn-heat-orange,
.package-card.popular a.btn-cyber-yellow,
.package-card.popular a.btn-yt-red,
.package-card.popular a.btn-spotify-green {
  background: #D97706 !important;
  color: #FFFFFF !important;
  border: none !important;
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.35) !important;
}

.package-card.popular a.btn-select-package:hover,
.package-card.popular a.btn-heat-orange:hover,
.package-card.popular a.btn-cyber-yellow:hover,
.package-card.popular a.btn-yt-red:hover,
.package-card.popular a.btn-spotify-green:hover {
  background: #B45309 !important;
  color: #FFFFFF !important;
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.45) !important;
}

/* Spotify-Specific Signature Green Accents on Spotify Pricing Grid */
.spotify-grid-wrapper .package-card.popular {
  border: 2px solid #16A34A !important;
  box-shadow: 0 15px 35px rgba(22, 163, 74, 0.15) !important;
}

.spotify-grid-wrapper .package-card.popular:hover {
  box-shadow: 0 20px 45px rgba(22, 163, 74, 0.22) !important;
}

.spotify-grid-wrapper .package-card.popular .popular-badge {
  background: #16A34A !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3) !important;
}

.spotify-grid-wrapper .package-card.popular a.btn-cyber-yellow,
.spotify-grid-wrapper .package-card.popular a.btn-spotify-green,
.spotify-grid-wrapper .package-card.popular a.btn-heat-orange,
.spotify-grid-wrapper .package-card.popular a.btn-select-package {
  background: #16A34A !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35) !important;
}

.spotify-grid-wrapper .package-card.popular a.btn-cyber-yellow:hover,
.spotify-grid-wrapper .package-card.popular a.btn-spotify-green:hover,
.spotify-grid-wrapper .package-card.popular a.btn-heat-orange:hover,
.spotify-grid-wrapper .package-card.popular a.btn-select-package:hover {
  background: #15803D !important;
  color: #FFFFFF !important;
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.45) !important;
}

@media (max-width: 992px) {
  .spotify-hero-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   SUBTLE HOME PAGE MUSIC ARTIST WATERMARK BACKGROUND (CENTERED & LARGE)
   ========================================================================== */
.home-artist-watermark-overlay {
  position: fixed;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1150px, 92vw);
  height: min(980px, 88vh);
  background: url('artist_bg.jpg') no-repeat center center / contain;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
  filter: contrast(1.15) opacity(0.95);
}

@media (max-width: 992px) {
  .home-artist-watermark-overlay {
    width: 95vw;
    height: 75vh;
    opacity: 0.05;
  }
}

/* Continuous Light Reflection Shimmer Sweep over Spotify Hero Artist */
.spotify-hero-artist-wrapper {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 24px !important;
}

.spotify-hero-artist-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 25%,
    rgba(255, 255, 255, 0.38) 50%,
    rgba(255, 255, 255, 0.05) 75%,
    transparent 100%
  );
  transform: rotate(25deg);
  animation: heroArtistShimmer 3.8s infinite ease-in-out;
  pointer-events: none;
  z-index: 5;
}

@keyframes heroArtistShimmer {
  0% {
    left: -150%;
  }
  35%, 100% {
    left: 220%;
  }
}

/* ==========================================================================
   DIRECT ORDER CHECKOUT MODAL STYLING (ZERO DASHBOARD REQUIRED)
   ========================================================================== */
.direct-order-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.direct-order-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.direct-order-modal-card {
  background: #FFFFFF !important;
  border-radius: 24px !important;
  padding: clamp(24px, 5vw, 36px) !important;
  max-width: 580px !important;
  width: 100% !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25) !important;
  position: relative !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  border: none !important;
}

.direct-order-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: #F1F5F9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 800;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.direct-order-close:hover {
  background: #E2E8F0;
  color: #111827;
}

/* ==========================================================================
   ULTRA-MODERN FRAMELESS HORIZONTAL TIMELINE & SECURITY STRIP
   ========================================================================== */
.trust-guarantee-section {
  padding: clamp(70px, 10vw, 110px) 0;
  position: relative;
  background: transparent;
}

.frameless-timeline-wrapper {
  position: relative;
  margin-top: 60px;
}

.timeline-connector-line {
  position: absolute;
  top: 36px; left: 60px; right: 60px;
  height: 4px;
  background: #E2E8F0;
  z-index: 1;
  overflow: hidden;
  border-radius: 2px;
}

.timeline-connector-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #F97316 50%, transparent);
  animation: timelineShimmerTransit 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes timelineShimmerTransit {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.frameless-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 36px);
  position: relative;
  z-index: 2;
}

.timeline-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.timeline-node-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #F97316;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: #F97316;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.2);
  margin-bottom: 24px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

/* Step 03 Direct Curator Pitching Subtle Transparent Light Glowing Aura Effect */
@keyframes subtleTransparentGlow {
  0% {
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.25), 0 0 24px rgba(251, 191, 36, 0.2);
    border-color: #F97316 !important;
    transform: scale(1.03);
  }
  50% {
    box-shadow: 0 0 22px rgba(249, 115, 22, 0.45), 0 0 40px rgba(251, 191, 36, 0.35);
    border-color: #FB923C !important;
    transform: scale(1.08);
  }
  100% {
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.25), 0 0 24px rgba(251, 191, 36, 0.2);
    border-color: #F97316 !important;
    transform: scale(1.03);
  }
}

.timeline-node-circle.electric-glow-pulse-yellow {
  background: #FFFFFF !important;
  color: #F97316 !important;
  border: 3px solid #F97316 !important;
  animation: subtleTransparentGlow 2.5s ease-in-out infinite !important;
  z-index: 10 !important;
}

.timeline-node-circle::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent 30%, rgba(249, 115, 22, 0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  pointer-events: none;
}

.timeline-step-item:hover .timeline-node-circle::after {
  animation: shimmerLightSweep 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step-item:hover .timeline-node-circle {
  transform: scale(1.12) translateY(-4px);
  background: #FFF7ED;
  border-color: #EA580C;
  color: #EA580C;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.35);
}

.timeline-node-circle.node-yellow,
.timeline-node-circle.node-blue,
.timeline-node-circle.node-green { 
  border-color: #F97316; 
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.2); 
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

.frameless-security-wrapper {
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px dashed #E2E8F0;
}

.frameless-security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3vw, 28px);
}

.frameless-security-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  transition: transform 0.25s ease;
}

.frameless-security-item:hover {
  transform: translateY(-4px);
}

.frameless-sec-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.12);
  color: #F97316;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(249, 115, 22, 0.3);
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.15);
}

.frameless-security-item.sec-yellow .frameless-sec-icon,
.frameless-security-item.sec-blue .frameless-sec-icon,
.frameless-security-item.sec-green .frameless-sec-icon { 
  background: rgba(249, 115, 22, 0.12); 
  color: #F97316; 
  border-color: rgba(249, 115, 22, 0.3); 
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.15); 
}

.frameless-sec-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #111827;
}

.frameless-sec-subtitle {
  font-size: 0.8rem;
  color: #64748B;
  margin-top: 2px;
}

/* ==========================================================================
   RESTORED: 6-CARD AUTOMATIC SIDE-SLIDING TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  padding: clamp(75px, 10vw, 120px) 0;
  background: radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.03) 0%, #FFFFFF 70%);
  position: relative;
  overflow: hidden;
}

.testimonials-3card-viewport {
  margin-top: 48px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonials-3card-track {
  display: flex;
  gap: clamp(24px, 3.5vw, 36px);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 24px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 38px);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  overflow: hidden;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: -10px; right: 20px;
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(17, 24, 39, 0.05);
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: #CBD5E1;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.testimonial-card.card-orange:hover,
.testimonial-card.card-yellow:hover,
.testimonial-card.card-blue:hover {
  border-color: #CBD5E1;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.testimonial-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.stars-row {
  color: #FBBF24; /* 6. GOLD ratings stars */
  display: flex;
  gap: 4px;
  font-size: 1.15rem;
}

.verified-tag-pill {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.verified-tag-pill.spotify-tag {
  background: rgba(29, 185, 84, 0.12);
  color: var(--spotify-green);
  border: 1px solid rgba(29, 185, 84, 0.3);
}

.verified-tag-pill.sc-tag {
  background: rgba(249, 115, 22, 0.12);
  color: #F97316;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.verified-tag-pill.yt-tag {
  background: rgba(255, 0, 0, 0.12);
  color: var(--youtube-red);
  border: 1px solid rgba(255, 0, 0, 0.3);
}

.testimonial-quote {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: #475569;
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-artist-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid #E2E8F0;
}

.artist-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #FFFFFF;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.artist-info-name {
  font-size: 1.02rem;
  font-weight: 800;
  color: #111827;
}

.artist-info-sub {
  font-size: 0.8rem;
  color: #64748B;
  margin-top: 2px;
}

.artist-stat-highlight {
  font-size: 0.78rem;
  font-weight: 800;
  color: #FBBF24;
  margin-top: 4px;
}

/* ==========================================================================
   FAQ ACCORDION (UNIFORM ACROSS ALL PAGES)
   ========================================================================== */
.faq-section {
  padding: clamp(70px, 10vw, 110px) 0 40px 0;
  background: radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.02) 0%, #F8FAFC 70%);
}

.faq-accordion,
.faq-accordion-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-accordion-item,
.faq-item {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(226, 232, 240, 0.85);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.faq-accordion-item:hover,
.faq-item:hover {
  border-color: #CBD5E1;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.faq-accordion-item.active,
.faq-item.active {
  border-color: #F97316;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15);
  background: rgba(255, 255, 255, 0.96);
}

.faq-question-btn,
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #111827;
  font-size: 1.05rem;
  font-weight: 800;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
  transition: color 0.3s ease;
}

.faq-question-btn:hover,
.faq-question:hover {
  color: #F97316;
}

.faq-question-btn .faq-icon,
.faq-question-btn span:last-child {
  font-size: 1.3rem;
  font-weight: 900;
  color: #F97316;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-accordion-item.active .faq-question-btn .faq-icon,
.faq-accordion-item.active .faq-question-btn span:last-child {
  transform: rotate(45deg);
  color: #F97316;
}

.faq-answer-content,
.faq-answer {
  padding: 0 24px 22px 24px;
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.75;
  display: none;
  border-top: 1px dashed #E2E8F0;
  margin-top: 4px;
  padding-top: 16px;
}

.faq-answer-content p {
  margin: 0;
}

.faq-accordion-item.active .faq-answer-content,
.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   GET WEEKEND COUPON CODES BANNER (CLEAN LIGHT CARD)
   ========================================================================== */
.coupon-banner-section {
  padding: 24px 0 50px 0;
  background: #F1F5F9;
}

.coupon-banner-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 32px) clamp(28px, 5vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 40px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.coupon-banner-card:hover {
  border-color: #F97316;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15);
}

.coupon-banner-card:hover {
  border-color: #F97316;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15);
}

.coupon-text-side {
  max-width: 540px;
}

.coupon-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 900;
  color: #111827;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.coupon-card-subtitle {
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  color: #475569;
  line-height: 1.5;
}

.coupon-form-side {
  flex-shrink: 0;
}

.coupon-input-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.coupon-email-input {
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  border-radius: 12px;
  padding: 12px 20px;
  color: #111827;
  font-size: 0.92rem;
  width: clamp(220px, 28vw, 300px);
  outline: none;
  transition: border-color 0.25s ease;
}

.coupon-email-input:focus {
  border-color: #F97316;
}

.coupon-email-input::placeholder {
  color: #64748B;
}

.btn-coupon-subscribe {
  background: #F97316;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.35);
}

.btn-coupon-subscribe:hover {
  background: #EA580C;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
  transform: translateY(-2px);
}

.coupon-success-badge {
  color: var(--yellow-cyber);
  font-size: 0.88rem;
  font-weight: 800;
  margin-top: 10px;
  text-align: right;
}

/* ==========================================================================
   REAL-TIME RECENT PURCHASE / SALES PROOF POPUP NOTIFICATION (FOMO PILL WITH PACKAGE ICON)
   ========================================================================== */
.fomo-purchase-popup {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 10000;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 14px 20px 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 0 15px rgba(249, 115, 22, 0.1);
  backdrop-filter: blur(16px);
  max-width: 390px;
  
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fomo-purchase-popup.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.fomo-close-btn {
  position: absolute;
  top: 6px; right: 10px;
  background: transparent;
  border: none;
  color: #64748B;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 2px 4px;
  line-height: 1;
}

.fomo-close-btn:hover {
  color: #111827;
}

.fomo-icon-container {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.fomo-icon-container svg {
  width: 22px; height: 22px;
  fill: currentColor;
}

/* Package-Specific Icon Styles */
.fomo-icon-container.fomo-spotify {
  background: rgba(29, 185, 84, 0.12);
  color: #1DB954;
  border: 1px solid rgba(29, 185, 84, 0.25);
  box-shadow: 0 2px 8px rgba(29, 185, 84, 0.15);
}

.fomo-icon-container.fomo-youtube {
  background: rgba(255, 0, 0, 0.12);
  color: #FF0000;
  border: 1px solid rgba(255, 0, 0, 0.25);
  box-shadow: 0 2px 8px rgba(255, 0, 0, 0.15);
}

.fomo-icon-container.fomo-soundcloud {
  background: rgba(249, 115, 22, 0.12);
  color: #F97316;
  border: 1px solid rgba(249, 115, 22, 0.25);
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.15);
}

.fomo-icon-container.fomo-audiomack {
  background: rgba(245, 158, 11, 0.12);
  color: #F59E0B;
  border: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
}

.fomo-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.85rem;
  line-height: 1.35;
}

.fomo-user-location {
  color: #111827;
  font-weight: 600;
}

.fomo-location-highlight {
  color: #111827;
  font-weight: 800;
}

.fomo-product-title {
  color: #475569;
}

.fomo-product-highlight {
  color: #F97316;
  font-weight: 800;
}

.fomo-timestamp {
  font-size: 0.75rem;
  color: #64748B;
  font-weight: 600;
  margin-top: 2px;
}

/* ==========================================================================
   ORDER MODAL & FREE PROMO MODAL
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6, 7, 9, 0.92);
  backdrop-filter: blur(14px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--bg-dark-card);
  border: 1.5px solid var(--border-orange);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(24px, 5vw, 40px);
  position: relative;
  box-shadow: var(--shadow-orange);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: transparent;
  border: none;
  color: var(--text-silver);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

.modal-close:hover {
  color: var(--text-pure-white);
}

/* ==========================================================================
   WORDPRESS-STYLE ADMIN & ARTIST DASHBOARD STYLES
   ========================================================================== */
.dashboard-body {
  background: #080a10;
  color: var(--text-pure-white);
  min-height: 100vh;
}

.dash-wrapper {
  display: flex;
  min-height: 100vh;
}

.dash-sidebar {
  width: 270px;
  background: #0b0e17;
  border-right: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  padding: 24px 18px;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.dash-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 24px;
}

.dash-badge-admin {
  font-size: 0.68rem;
  font-weight: 900;
  color: var(--yellow-cyber);
  background: rgba(255, 199, 0, 0.12);
  border: 1px solid rgba(255, 199, 0, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
  letter-spacing: 1px;
}

.dash-nav-group {
  margin-bottom: 24px;
}

.dash-group-title {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  margin-bottom: 12px;
  padding-left: 10px;
}

.dash-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-menu-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--text-silver);
  font-size: 0.92rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.dash-menu-item a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-pure-white);
}

.dash-menu-item.active a {
  background: linear-gradient(135deg, var(--orange-heat), var(--orange-heat-dark));
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 85, 0, 0.35);
}

.dash-pill-count {
  margin-left: auto;
  font-size: 0.72rem;
  background: rgba(0, 102, 255, 0.2);
  color: var(--blue-neon);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.dash-pill-count.yellow {
  background: rgba(255, 199, 0, 0.2);
  color: var(--yellow-cyber);
}

.dash-pill-count.green {
  background: rgba(29, 185, 84, 0.2);
  color: var(--spotify-green);
}

.dash-link-website {
  background: rgba(255, 85, 0, 0.12) !important;
  color: var(--orange-heat) !important;
  border: 1px solid rgba(255, 85, 0, 0.3);
}

.dash-sidebar-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border-dark);
  margin-top: 18px;
}

.dash-user-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-heat), var(--yellow-cyber));
  color: #000;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.dash-user-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-pure-white);
}

.dash-user-role {
  font-size: 0.72rem;
  color: var(--text-silver);
}

/* MAIN CONTENT */
.dash-main-content {
  flex-grow: 1;
  padding: 30px clamp(20px, 4vw, 40px);
  background: #060709;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.dash-header-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(14, 16, 23, 0.9);
  border: 1px solid var(--border-dark);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  width: 380px;
}

.dash-header-search input {
  background: transparent;
  border: none;
  color: var(--text-pure-white);
  font-size: 0.9rem;
  outline: none;
  width: 100%;
}

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

.dash-btn-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  color: var(--text-pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.dash-notif-badge {
  position: absolute;
  top: 8px; right: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange-heat);
}

.dash-tab-content {
  display: none;
}

.dash-tab-content.active {
  display: block;
}

.dash-welcome-card {
  background: rgba(14, 16, 23, 0.9);
  border: 1.5px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 28px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  backdrop-filter: blur(16px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

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

.dash-stat-card {
  background: #0e1017;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.dash-stat-card:hover {
  transform: translateY(-4px);
}

.dash-stat-card.card-orange:hover { border-color: var(--orange-heat); }
.dash-stat-card.card-yellow:hover { border-color: var(--yellow-cyber); }
.dash-stat-card.card-blue:hover { border-color: var(--blue-neon); }
.dash-stat-card.card-green:hover { border-color: var(--spotify-green); }

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

.dash-stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-silver);
  text-transform: uppercase;
}

.dash-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
}

.dash-stat-trend {
  font-size: 0.78rem;
  font-weight: 700;
}

.dash-stat-trend.positive { color: var(--spotify-green); }

.dash-table-card {
  background: #0e1017;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.dash-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dash-table-wrapper {
  overflow-x: auto;
}

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

.dash-table th, .dash-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-dark);
}

.dash-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--text-silver);
  font-weight: 800;
}

.badge-platform {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.badge-platform.yt { background: rgba(255, 34, 0, 0.15); color: var(--youtube-red); }
.badge-platform.spotify { background: rgba(0, 210, 255, 0.15); color: var(--blue-neon); }
.badge-platform.sc { background: rgba(255, 85, 0, 0.15); color: var(--orange-heat); }
.badge-platform.audiomack { background: rgba(255, 199, 0, 0.15); color: var(--yellow-cyber); }

.badge-status {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.badge-status.active { background: rgba(255, 199, 0, 0.15); color: var(--yellow-cyber); }
.badge-status.completed { background: rgba(29, 185, 84, 0.15); color: var(--spotify-green); }

.badge-role {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.badge-role.admin { background: rgba(255, 85, 0, 0.18); color: var(--orange-heat); border: 1px solid rgba(255, 85, 0, 0.3); }
.badge-role.manager { background: rgba(0, 210, 255, 0.18); color: var(--blue-neon); border: 1px solid rgba(0, 210, 255, 0.3); }
.badge-role.artist { background: rgba(255, 199, 0, 0.18); color: var(--yellow-cyber); border: 1px solid rgba(255, 199, 0, 0.3); }

.btn-dash-action {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-dark);
  color: var(--text-pure-white);
  padding: 5px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
}

.btn-dash-action:hover {
  background: var(--orange-heat);
}

/* ADMIN FORMS & INPUT CONTROLS */
.dash-admin-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dash-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.dash-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-form-group label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-silver);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dash-form-input, .dash-form-textarea {
  background: rgba(6, 7, 9, 0.85);
  border: 1.5px solid var(--border-dark);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-pure-white);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.dash-form-input:focus, .dash-form-textarea:focus {
  border-color: var(--orange-heat);
  box-shadow: 0 0 12px var(--orange-glow);
}

.dash-color-picker {
  width: 44px; height: 44px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
}

.dash-saved-badge {
  color: var(--spotify-green);
  font-weight: 800;
  font-size: 0.88rem;
  margin-left: 14px;
}

/* PLUGINS GRID & TOGGLE SWITCHES */
.dash-plugins-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.dash-plugin-item {
  background: rgba(6, 7, 9, 0.7);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: border-color 0.25s ease;
}

.dash-plugin-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.dash-plugin-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.dash-plugin-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-pure-white);
  margin-bottom: 2px;
}

.dash-plugin-desc {
  font-size: 0.85rem;
  color: var(--text-silver);
  line-height: 1.4;
}

/* iOS Style Toggle Switch */
.dash-toggle-switch {
  position: relative;
  display: inline-block;
  width: 52px; height: 28px;
  flex-shrink: 0;
}

.dash-toggle-switch input {
  opacity: 0; width: 0; height: 0;
}

.dash-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.15);
  transition: .3s;
  border-radius: 34px;
}

.dash-toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px; width: 20px;
  left: 4px; bottom: 4px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

input:checked + .dash-toggle-slider {
  background-color: var(--spotify-green);
  box-shadow: 0 0 12px rgba(29, 185, 84, 0.4);
}

input:checked + .dash-toggle-slider:before {
  transform: translateX(24px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.soh-footer {
  background: #0B0B12;
  border-top: 1px solid #27272A;
  padding: clamp(60px, 8vw, 90px) 0 40px 0;
  color: #94A3B8;
  font-size: 0.9rem;
}

.soh-footer .brand-logo,
.soh-footer .brand-logo span {
  color: #FFFFFF !important;
}

.soh-footer .brand-logo .text-orange-glow {
  color: #F97316 !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(24px, 4vw, 44px);
  margin-bottom: 60px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

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

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

.footer-bottom {
  border-top: 1px solid #27272A;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE BREAKPOINTS (DESKTOP, TABLET, MOBILE)
   ========================================================================== */
@media (max-width: 1200px) {
  .frameless-timeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .timeline-connector-line { display: none; }
  .frameless-security-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-hero-matching-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .package-card.popular { transform: none; }
  .package-card.popular:hover { transform: translateY(-10px); }
  .testimonial-card { flex: 0 0 calc(50% - 18px); }
  .compact-builder-top-grid { grid-template-columns: 1fr; gap: 16px; }
  .coupon-banner-card { flex-direction: column; text-align: center; }
  .coupon-text-side { max-width: 100%; }
  .dash-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-text-col { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-live-strip { margin: 30px auto 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dash-sidebar { width: 220px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-toggle { display: block; }

  .stats-hero-matching-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 100%; }
  
  /* Modern Mobile Vertical Timeline */
  .frameless-timeline-wrapper {
    padding-left: 20px !important;
    margin-top: 36px !important;
  }
  .frameless-timeline-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .timeline-step-item {
    align-items: flex-start !important;
    text-align: left !important;
    padding-left: 28px !important;
    border-left: 2px dashed #F97316 !important;
    position: relative !important;
    margin-left: 20px !important;
  }
  .timeline-node-circle {
    position: absolute !important;
    top: -2px !important;
    left: -24px !important;
    width: 46px !important;
    height: 46px !important;
    font-size: 1.05rem !important;
    margin-bottom: 0 !important;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25) !important;
  }
  .timeline-title {
    font-size: 1.15rem !important;
    margin-top: 2px !important;
    margin-bottom: 6px !important;
    line-height: 1.25 !important;
  }
  .timeline-desc {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
  }

  .frameless-security-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-matching-channel-bar { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .platform-selector-grid { grid-template-columns: 1fr 1fr; }
  .compact-builder-bottom-grid { flex-direction: column; text-align: center; justify-content: center; }
  .coupon-input-form { flex-direction: column; width: 100%; }
  .coupon-email-input { width: 100%; }
  .btn-coupon-subscribe { width: 100%; }
  .coupon-success-badge { text-align: center; }

  /* Mobile Position for FOMO Popup */
  .fomo-purchase-popup {
    bottom: 16px; left: 16px; right: 16px;
    max-width: calc(100% - 32px);
  }

  .dash-wrapper { flex-direction: column; }
  .dash-sidebar { width: 100%; height: auto; position: relative; }
  .dash-stats-grid { grid-template-columns: 1fr; }
  .dash-header-search { width: 100%; }
}

/* ==========================================================================
   DUAL COLUMN INTERACTIVE PRICING WIDGET
   ========================================================================== */
.soh-dual-pricing-widget {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto;
}

@media (max-width: 868px) {
  .soh-dual-pricing-widget {
    grid-template-columns: 1fr;
  }
}

.widget-left-card, .widget-right-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 34px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Front-Layer Moving Light Shimmer Sheen for Dual Pricing Cards */
.widget-left-card::after,
.widget-right-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 80%;
  height: 200%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(249, 115, 22, 0.3) 55%,
    rgba(255, 255, 255, 0) 70%,
    transparent 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 10;
  mix-blend-mode: overlay;
  animation: widgetCardShimmerSweep 5s ease-in-out infinite;
}

.widget-right-card::after {
  animation-delay: 2.5s;
}

@keyframes widgetCardShimmerSweep {
  0% {
    left: -150%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  55% {
    left: 180%;
    opacity: 0;
  }
  100% {
    left: 180%;
    opacity: 0;
  }
}

.widget-left-card:hover, .widget-right-card:hover {
  border-color: #CBD5E1;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.08);
}

.widget-header-pill {
  background: #111827;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(17, 24, 39, 0.15);
  margin-bottom: 24px;
}

.widget-package-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.widget-pkg-btn {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 20px 14px 14px 14px;
  color: #111827;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: all 0.25s ease;
}

.widget-pkg-btn.full-width {
  grid-column: span 2;
}

.widget-pkg-btn:hover {
  border-color: #F97316;
  background: #FFFFFF;
}

.widget-pkg-btn.active {
  border-color: #F97316;
  background: #FFF7ED;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.18);
}

.widget-pkg-btn.active::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(249, 115, 22, 0.35) 55%,
    transparent 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: overlay;
  animation: widgetBtnShimmerSweep 4s ease-in-out infinite;
}

@keyframes widgetBtnShimmerSweep {
  0% { left: -150%; opacity: 0; }
  20% { opacity: 1; }
  60% { left: 180%; opacity: 0; }
  100% { left: 180%; opacity: 0; }
}

.widget-pkg-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  font-size: 0.62rem;
  font-weight: 900;
  padding: 3px 7px;
  border-radius: 6px;
  z-index: 12;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  letter-spacing: 0.5px;
  line-height: 1;
  text-transform: uppercase;
}

.widget-pkg-badge.hot { background: #F97316; color: #FFFFFF; }
.widget-pkg-badge.pro { background: #111827; color: #FFFFFF; }
.widget-pkg-badge.bronze { background: #D97706; color: #FFFFFF; }
.widget-pkg-badge.gold { background: #D97706; color: #FFFFFF; }
.widget-pkg-badge.platinum { background: #1E293B; color: #FFFFFF; }

.widget-pkg-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #475569;
  letter-spacing: 0.5px;
}

.widget-pkg-streams {
  font-size: 0.98rem;
  font-weight: 900;
  color: #111827;
  margin-top: 4px;
}

.widget-price-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.widget-price-val {
  font-size: 2.8rem;
  font-weight: 900;
  color: #111827;
}

.widget-tier-badge {
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid #F97316;
  color: #F97316;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 12px;
}

.widget-buy-btn {
  width: 100%;
  padding: 14px;
  font-size: 1.05rem;
  text-align: center;
}

/* Checklist in Right Card */
.widget-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.widget-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 0.94rem;
  color: #111827;
}

.widget-checklist svg {
  width: 18px;
  height: 18px;
  stroke: #F97316;
  flex-shrink: 0;
}

/* Chart in Right Card */
.widget-chart-box {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 20px;
}

.chart-header-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #475569;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.widget-svg-chart {
  width: 100%;
  height: auto;
}

.chart-x-axis {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  color: #64748B;
  font-weight: 700;
  margin-top: 8px;
}

.widget-delivery-foot {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 800;
  color: #111827;
}
  font-weight: 800;
  color: var(--yellow-cyber);
}

/* ==========================================================================
   SCROLL-TRIGGERED ROLL-OUT CONTENT READER & EXPANDABLE KNOWLEDGE HUB
   ========================================================================== */
.roll-out-content-container {
  margin-top: 50px;
}

.roll-out-card {
  background: #FFFFFF !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 36px;
  margin-bottom: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.035);
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.roll-out-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.roll-out-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.roll-out-card:hover {
  border-color: #16A34A !important;
  box-shadow: 0 14px 45px rgba(22, 163, 74, 0.12);
}

.roll-out-body-collapsed {
  max-height: 125px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.roll-out-body-collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.98) 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.roll-out-card.expanded .roll-out-body-collapsed {
  max-height: 1400px;
}

.roll-out-card.expanded .roll-out-body-collapsed::after {
  opacity: 0;
}

.btn-roll-out-toggle {
  background: #F1F5F9 !important;
  border: 1px solid #CBD5E1 !important;
  color: #15803D !important;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  margin-top: 14px;
}

.btn-roll-out-toggle:hover {
  border-color: var(--spotify-green);
  transform: translateY(-2px);
}

/* ==========================================================================
   ANIMATED CUSTOMER PROOF & ELEMENT MOVEMENTS
   ========================================================================== */
@keyframes badgeFloatPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.03); }
}

@keyframes glowBorderPulse {
  0%, 100% { border-color: rgba(29, 185, 84, 0.3); box-shadow: 0 0 15px rgba(29, 185, 84, 0.15); }
  50% { border-color: var(--spotify-green); box-shadow: 0 0 25px rgba(29, 185, 84, 0.35); }
}

.trust-metric-card {
  background: #FFFFFF !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.035);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.trust-metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.trust-metric-number {
  font-size: 2.3rem;
  font-weight: 900;
  display: inline-block;
  animation: badgeFloatPulse 4s ease-in-out infinite;
}

.playlist-proof-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.45);
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border-dark);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.playlist-proof-row:hover {
  border-color: var(--yellow-cyber);
  transform: translateX(8px) scale(1.01);
  background: rgba(255, 199, 0, 0.08);
  box-shadow: 0 8px 25px rgba(255, 199, 0, 0.15);
}

.playlist-tag-badge {
  font-size: 0.76rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  animation: badgeFloatPulse 3s ease-in-out infinite;
}

/* ==========================================================================
   BUTTON LIGHT SHADE & NEON WORD SHADOW EFFECT
   ========================================================================== */
.word-light-shade {
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.24) 0%, rgba(29, 185, 84, 0.08) 100%);
  border: 1.5px solid rgba(29, 185, 84, 0.5);
  box-shadow: 0 0 25px rgba(29, 185, 84, 0.4), inset 0 0 15px rgba(29, 185, 84, 0.25);
  padding: 2px 18px;
  border-radius: 16px;
  color: var(--spotify-green);
  text-shadow: 0 0 20px rgba(29, 185, 84, 0.85);
  display: inline-block;
  backdrop-filter: blur(8px);
  animation: glowBorderPulse 3.5s ease-in-out infinite;
}

.word-glow-neon {
  color: var(--spotify-green);
  text-shadow: 0 0 20px rgba(29, 185, 84, 0.7), 0 0 40px rgba(29, 185, 84, 0.4);
}

/* ==========================================================================
   SHIMMER SWEEP ANIMATED TEXT EFFECT FOR TITLE WORDS
   ========================================================================== */
@keyframes textShimmerSweep {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer-sweep-text {
  background: linear-gradient(
    90deg,
    #1db954 0%,
    #7dffab 25%,
    #ffffff 50%,
    #7dffab 75%,
    #1db954 100%
  );
  background-size: 200% auto;
  color: transparent !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  animation: textShimmerSweep 3.2s linear infinite;
  display: inline-block;
  font-weight: 900;
}

/* SoundCloud Shimmer Sweep Animated Text Effect */
.shimmer-sweep-sc {
  background: linear-gradient(
    90deg,
    #ff5500 0%,
    #ffaa00 25%,
    #ffffff 50%,
    #ffaa00 75%,
    #ff5500 100%
  );
  background-size: 200% auto;
  color: transparent !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  animation: textShimmerSweep 3.2s linear infinite;
  display: inline-block;
  font-weight: 900;
}

.sc-hero-badge,
.youtube-hero-badge,
.spotify-hero-badge {
  background: rgba(255, 85, 0, 0.14);
  border: 1.5px solid rgba(255, 85, 0, 0.4);
  color: #ff5500;
  font-weight: 900;
  font-size: 0.78rem;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  box-shadow: 0 0 25px rgba(255, 85, 0, 0.25);
  margin: 0 auto 24px auto !important;
  text-align: center !important;
}

.artist-review-card-sc {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px;
  width: clamp(280px, 82vw, 340px);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.artist-review-card-sc:hover {
  transform: translateY(-6px);
  border-color: #D97706;
  box-shadow: 0 12px 35px rgba(217, 119, 6, 0.12);
}

.artist-avatar-box-sc {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid #E2E8F0 !important;
  box-shadow: none !important;
  flex-shrink: 0 !important;
}

/* SoundCloud Review Section Enhancements */
.sc-review-summary-banner {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto 32px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
  max-width: 860px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  flex-wrap: wrap;
}

.sc-review-summary-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-pure-white);
}

.sc-review-nav-btn {
  background: rgba(255, 85, 0, 0.14);
  border: 1.5px solid rgba(255, 85, 0, 0.4);
  color: #ff5500;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.sc-review-nav-btn:hover {
  background: #ff5500;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 85, 0, 0.5);
  transform: scale(1.08);
}

.sc-review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 85, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.sc-review-dot.active {
  width: 28px;
  border-radius: 12px;
  background: #ff5500;
  box-shadow: 0 0 12px rgba(255, 85, 0, 0.6);
}

.package-badge-tag-sc {
  font-size: 0.72rem;
  font-weight: 900;
  color: #ff5500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ==========================================================================
   CRYSTAL CLEAR 2-COLUMN VERTICAL KNOWLEDGE GUIDES (NO BLUR, HIGH READABILITY)
   ========================================================================== */
.scroll-guide-grid-2col {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 28px !important;
}

@media (max-width: 768px) {
  .scroll-guide-grid-2col {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

.scroll-guide-item {
  opacity: 1 !important;
  transform: translateY(0) !important;
  filter: none !important;
  padding: 28px 30px;
  border: none !important;
  border-radius: 16px;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.035);
  margin-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.35s ease;
}

.scroll-guide-item:hover,
.scroll-guide-item.active-scroll {
  border: none !important;
  background: #FFFFFF;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
}

/* ==========================================================================
   COMPREHENSIVE MOBILE FRIENDLINESS & USER EXPERIENCE OPTIMIZATION
   ========================================================================== */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}

@media (max-width: 992px) {
  .nav-links, .nav-actions {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .soh-dual-pricing-widget {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .analytics-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  /* Typography Adjustments */
  .heading-primary {
    font-size: 2.1rem !important;
    line-height: 1.25 !important;
  }

  .heading-secondary {
    font-size: 1.65rem !important;
    line-height: 1.3 !important;
  }

  .subtitle {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
  }

  /* Hero Section Mobile Padding */
  .hero-section {
    padding-top: 110px !important;
    padding-bottom: 24px !important;
  }

  .spotify-hero-badge,
  .youtube-hero-badge {
    font-size: 0.72rem !important;
    padding: 6px 12px !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .youtube-grid-wrapper {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Interactive Pricing Widget Mobile Matrix */
  .widget-package-matrix {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .widget-pkg-btn {
    padding: 12px 8px !important;
    min-height: 50px !important;
  }

  .widget-pkg-name {
    font-size: 0.8rem !important;
  }

  .widget-pkg-meta {
    font-size: 0.68rem !important;
  }

  .widget-left-card,
  .widget-right-card {
    padding: 24px 18px !important;
  }

  .widget-price-tag {
    font-size: 2.2rem !important;
  }

  /* Artist Reviews Slider Mobile */
  .artist-review-card,
  .artist-review-card-yt {
    min-width: 280px !important;
    width: 82vw !important;
    padding: 22px 18px !important;
  }

  .artist-avatar-box,
  .artist-avatar-box-yt {
    width: 44px !important;
    height: 44px !important;
  }

  /* Fixed Pricing Packages Grid Mobile */
  .package-card {
    padding: 28px 20px !important;
  }

  /* Customer Proof Hub Mobile */
  .trust-metric-card {
    padding: 18px 12px !important;
  }

  .trust-metric-number {
    font-size: 1.85rem !important;
  }

  .playlist-proof-row {
    padding: 12px 14px !important;
  }

  /* Roll-Out Content Cards Mobile */
  .roll-out-card {
    padding: 24px 18px !important;
  }

  .btn-roll-out-toggle {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 18px !important;
    min-height: 46px !important;
  }

  /* Universal Touch Targets for iOS/Android */
  button, .btn-spotify-green, .btn-cyber-yellow, .btn-electric-blue, .btn-heat-orange {
    min-height: 46px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .vip-video-banner {
    padding: 20px 18px !important;
  }

  .free-steps-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .heading-primary {
    font-size: 1.85rem !important;
  }

  .heading-secondary {
    font-size: 1.45rem !important;
  }

  .widget-package-matrix {
    grid-template-columns: 1fr !important;
  }

  .trust-metric-card {
    padding: 14px 10px !important;
  }

  .trust-metric-number {
    font-size: 1.6rem !important;
  }
}

/* ==========================================================================
   ANIMATED CONTINUOUS FILLING & DROP-BACK PROGRESS BARS
   ========================================================================== */
@keyframes fillAndDropBack94 {
  0% { width: 12%; }
  45% { width: 94%; }
  60% { width: 84%; }
  75% { width: 94%; }
  100% { width: 12%; }
}

@keyframes fillAndDropBack88 {
  0% { width: 12%; }
  45% { width: 88%; }
  60% { width: 78%; }
  75% { width: 88%; }
  100% { width: 12%; }
}

@keyframes fillAndDropBack91 {
  0% { width: 12%; }
  45% { width: 91%; }
  60% { width: 80%; }
  75% { width: 91%; }
  100% { width: 12%; }
}

@keyframes fillAndDropBack100 {
  0% { width: 12%; }
  45% { width: 100%; }
  60% { width: 90%; }
  75% { width: 100%; }
  100% { width: 12%; }
}

.bar-fill-animated-94 {
  animation: fillAndDropBack94 6s cubic-bezier(0.4, 0, 0.2, 1) infinite !important;
}

.bar-fill-animated-88 {
  animation: fillAndDropBack88 6.4s cubic-bezier(0.4, 0, 0.2, 1) infinite !important;
}

.bar-fill-animated-91 {
  animation: fillAndDropBack91 5.8s cubic-bezier(0.4, 0, 0.2, 1) infinite !important;
}

.bar-fill-animated-100 {
  animation: fillAndDropBack100 6.2s cubic-bezier(0.4, 0, 0.2, 1) infinite !important;
}

/* ==========================================================================
   SEAMLESS HERO & SECOND SECTION BACKGROUND BLEND WRAPPER
   ========================================================================== */
.hero-blend-wrapper {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(6, 7, 9, 1) 0%,
    rgba(14, 16, 23, 0.95) 30%,
    rgba(29, 185, 84, 0.09) 55%,
    rgba(14, 16, 23, 0.96) 80%,
    rgba(8, 9, 13, 1) 100%
  );
  overflow: hidden;
  padding-bottom: 40px;
}

.hero-blend-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    radial-gradient(circle at 50% 15%, rgba(29, 185, 84, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 80% 50%, rgba(255, 199, 0, 0.14) 0%, transparent 50%),
    radial-gradient(circle at 20% 75%, rgba(0, 210, 255, 0.14) 0%, transparent 50%);
  pointer-events: none;
}

/* LIGHT SHIMMER SWEEP ANIMATED TEXT EFFECT */
.shimmer-sweep-text {
  background: linear-gradient(90deg, #1db954 0%, #ffffff 40%, #1db954 80%, #1db954 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmerSweep 3s linear infinite;
  display: inline-block;
  white-space: nowrap;
}

.shimmer-sweep-yt {
  background: linear-gradient(90deg, #ff2200 0%, #ffffff 35%, #ffaa00 70%, #ff2200 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmerSweep 3s linear infinite;
  display: inline-block;
  white-space: nowrap;
}

@keyframes textShimmerSweep {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

/* ==========================================================================
   COMPREHENSIVE MOBILE & TABLET RESPONSIVENESS & TOUCH OPTIMIZATION (320px - 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  .hero-text-col { text-align: center !important; }
  .hero-actions { justify-content: center !important; }
  .hero-live-strip { margin: 24px auto 0 auto !important; }
  .footer-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 32px !important; }
}

@media (max-width: 991px) {
  .soh-dual-pricing-widget {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  
  .dash-wrapper {
    flex-direction: column !important;
  }
  
  .dash-sidebar {
    width: 100% !important;
    min-height: auto !important;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    max-width: 100% !important;
  }

  /* Header & Mobile Toggle */
  .nav-links, .nav-actions {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    background: #0F172A !important;
    border: 1px solid #1E293B !important;
    color: #FFFFFF !important;
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
  }

  .mobile-nav-drawer {
    top: 65px;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px 24px !important;
    gap: 12px !important;
  }

  .mobile-nav-drawer .nav-link {
    color: #FFFFFF !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    padding: 10px 0 !important;
    display: block !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    white-space: normal !important;
    word-break: break-word;
  }

  .mobile-nav-drawer .nav-link:last-of-type {
    border-bottom: none;
  }

  /* Headings & Text Wrapping */
  .heading-primary {
    font-size: clamp(1.75rem, 6vw, 2.4rem) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
  }

  .heading-secondary {
    font-size: clamp(1.4rem, 4.8vw, 1.85rem) !important;
    line-height: 1.25 !important;
    letter-spacing: -0.5px !important;
  }

  h1 span, h2 span, .heading-primary span, .heading-secondary span {
    white-space: normal !important;
    word-break: break-word !important;
  }

  /* Section Padding */
  .hero-section,
  .footer-section,
  section {
    max-width: 100% !important;
    box-sizing: border-border !important;
  }

  .hero-banner-card,
  .artist-vertical-showcase-card,
  .artist-review-card,
  .artist-review-card-yt,
  .package-card,
  .summary-box,
  .checkout-card,
  .builder-platform-card,
  .coupon-banner-card,
  .widget-left-card,
  .widget-right-card {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .packages-grid,
  .spotify-grid-wrapper,
  .youtube-grid-wrapper {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .package-card {
    padding: 24px 18px !important;
    width: 100% !important;
  }

  /* Hero Section Mobile Refinements */
  .hero-text-col {
    padding: 0 12px !important;
    max-width: 520px !important;
    margin: 0 auto !important;
  }

  .hero-text-col .subtitle {
    padding: 0 6px !important;
    font-size: 0.90rem !important;
    line-height: 1.55 !important;
    margin-top: 14px !important;
    margin-bottom: 20px !important;
  }

  .hero-actions {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    gap: 10px !important;
  }

  .hero-actions .btn-heat-orange,
  .hero-actions .btn-electric-blue,
  .hero-actions .btn-spotify-green,
  .hero-actions .btn-yt-red {
    width: 100% !important;
    max-width: 300px !important;
    min-height: 42px !important;
    padding: 9px 20px !important;
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    border-radius: 9999px !important;
    justify-content: center !important;
    margin: 0 auto !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
  }

  .package-card .btn-heat-orange,
  .package-card .btn-spotify-green,
  .package-card .btn-yt-red,
  .widget-left-card .btn-heat-orange,
  .widget-right-card .btn-heat-orange {
    width: 100% !important;
    min-height: 46px !important;
    font-size: 0.92rem !important;
    border-radius: 12px !important;
    justify-content: center !important;
  }

  /* Checkout Mobile Layout */
  .checkout-stepper-wrapper {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 8px !important;
  }

  .checkout-stepper-step {
    flex-shrink: 0 !important;
    font-size: 0.76rem !important;
  }

  .checkout-dual-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Form & Touch Targets */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    font-size: 16px !important; /* Prevents iOS auto-zoom */
    min-height: 48px !important;
    border-radius: 12px !important;
  }

  .trust-metrics-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  /* Compact Mobile Footer (Services Left & Navigation Right on Same Line) */
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 12px !important;
    padding: 0 4px !important;
    margin-bottom: 30px !important;
  }

  .footer-col:nth-child(1) {
    grid-column: 1 / -1 !important;
    text-align: center !important;
    align-items: center !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .footer-col:nth-child(1) .brand-logo {
    justify-content: center !important;
  }

  .footer-col:nth-child(2) {
    grid-column: 1 / 2 !important;
    text-align: center !important;
    align-items: center !important;
  }

  .footer-col:nth-child(3) {
    grid-column: 2 / 3 !important;
    text-align: center !important;
    align-items: center !important;
  }

  .footer-col:nth-child(4) {
    grid-column: 1 / -1 !important;
    text-align: center !important;
    align-items: center !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .footer-col h4 {
    margin-bottom: 12px !important;
    font-size: 0.88rem !important;
    letter-spacing: 1px !important;
    text-align: center !important;
  }

  .footer-links {
    gap: 10px !important;
    align-items: center !important;
    text-align: center !important;
  }

  .footer-links a {
    font-size: 0.84rem !important;
    white-space: nowrap !important;
  }

  .footer-social-links,
  .footer-payment-icons {
    justify-content: center !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .heading-primary {
    font-size: 1.65rem !important;
  }

  .heading-secondary {
    font-size: 1.3rem !important;
  }

  .trust-metrics-grid {
    grid-template-columns: 1fr !important;
  }

  .artist-review-card,
  .artist-review-card-yt {
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px !important;
  }

  .hero-badge,
  .spotify-hero-badge,
  .youtube-hero-badge,
  .badge-flame-pill {
    font-size: 0.72rem !important;
    padding: 5px 12px !important;
  }

  .frameless-timeline-wrapper {
    padding-left: 12px !important;
    margin-top: 24px !important;
  }
  .timeline-step-item {
    margin-left: 16px !important;
    padding-left: 22px !important;
  }
  .timeline-node-circle {
    left: -21px !important;
    width: 42px !important;
    height: 42px !important;
    font-size: 0.95rem !important;
  }
}

/* VERTICAL ARTIST PNG SHOWCASE ON THE RIGHT SIDE (USER ARTIST PNG BLENDING) */
.knowledge-hub-vertical-layout {
  display: grid !important;
  grid-template-columns: 1.25fr 1.05fr !important;
  gap: 28px !important;
  align-items: stretch !important;
}

.knowledge-cards-2col-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
}

.artist-vertical-showcase-card {
  position: relative !important;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%) !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 26px !important;
  padding: 24px 0 0 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;
  overflow: hidden !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05) !important;
  min-height: 560px !important;
}

.artist-vertical-glow-bg {
  position: absolute !important;
  top: 10% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 320px !important;
  height: 320px !important;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22) 0%, rgba(251, 191, 36, 0.12) 50%, transparent 75%) !important;
  border-radius: 50% !important;
  pointer-events: none !important;
  filter: blur(28px) !important;
}

.artist-top-badge {
  position: absolute !important;
  top: 20px !important;
  left: 20px !important;
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  color: #D97706 !important;
  font-weight: 900 !important;
  font-size: 0.75rem !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  letter-spacing: 1px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
  z-index: 5 !important;
}

.artist-vertical-png-img {
  width: 120% !important;
  max-width: 450px !important;
  height: auto !important;
  max-height: 560px !important;
  object-fit: contain !important;
  object-position: bottom center !important;
  position: relative !important;
  z-index: 3 !important;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.2)) !important;
  transition: transform 0.4s ease !important;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 86%, rgba(0,0,0,0) 100%) !important;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 86%, rgba(0,0,0,0) 100%) !important;
  transform: scale(1.12) !important;
}

.artist-vertical-showcase-card:hover .artist-vertical-png-img {
  transform: scale(1.16) translateY(-4px) !important;
}

.artist-floating-stat-box {
  position: absolute !important;
  bottom: 24px !important;
  left: 20px !important;
  background: rgba(15, 23, 42, 0.92) !important;
  backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  padding: 12px 18px !important;
  border-radius: 16px !important;
  color: #FFFFFF !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
  z-index: 6 !important;
}

.artist-stat-num {
  font-size: 1.25rem !important;
  font-weight: 900 !important;
  color: #FACC15 !important;
  line-height: 1.1 !important;
}

.artist-stat-label {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: #CBD5E1 !important;
  margin-top: 2px !important;
}

.artist-floating-trust-pill {
  position: absolute !important;
  bottom: 24px !important;
  right: 20px !important;
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  padding: 8px 14px !important;
  border-radius: 20px !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  color: #1E293B !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06) !important;
  z-index: 6 !important;
}

.pulse-green-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: pulseHeat 1.8s infinite;
}

@media (max-width: 992px) {
  .knowledge-hub-vertical-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

@media (max-width: 576px) {
  .knowledge-cards-2col-grid {
    grid-template-columns: 1fr !important;
  }
  .artist-vertical-png-img {
    width: 100% !important;
    max-width: 100% !important;
    transform: scale(1) !important;
  }
  .artist-floating-stat-box {
    left: 14px !important;
    bottom: 16px !important;
    padding: 10px 14px !important;
  }
  .artist-floating-trust-pill {
    right: 14px !important;
    bottom: 16px !important;
    padding: 6px 10px !important;
    font-size: 0.68rem !important;
  }
}
