/* ===== CSS Variables & Reset ===== */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --text-primary: #f0f0f5;
  --text-secondary: #8888a0;
  --text-muted: #55556a;
  --accent-primary: #7c3aed;
  --accent-secondary: #a855f7;
  --accent-tertiary: #c084fc;
  --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
  --gradient-glow: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', var(--font-sans);
  --container-max: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--accent-primary);
  background: rgba(124, 58, 237, 0.1);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-hover);
}

.btn-nav {
  padding: 8px 20px;
  background: var(--gradient-primary);
  color: white;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.logo-icon {
  width: 36px;
  height: 36px;
  color: var(--accent-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, rgba(168, 85, 247, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.sound-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  opacity: 0.08;
  overflow: hidden;
}

.wave {
  width: 3px;
  background: var(--accent-primary);
  border-radius: 3px;
  animation: waveAnim 1.5s ease-in-out infinite;
}

.wave-1 { height: 40px; animation-delay: 0s; }
.wave-2 { height: 70px; animation-delay: 0.2s; }
.wave-3 { height: 100px; animation-delay: 0.4s; }
.wave-4 { height: 60px; animation-delay: 0.6s; }
.wave-5 { height: 80px; animation-delay: 0.8s; }

@keyframes waveAnim {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-tertiary);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-secondary);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.4;
  animation: bounce 2s ease-in-out infinite;
}

.mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--text-secondary);
  border-radius: 12px;
  position: relative;
}

.wheel {
  width: 3px;
  height: 8px;
  background: var(--text-secondary);
  border-radius: 3px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s ease-in-out infinite;
}

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

@keyframes scroll {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ===== Social Proof ===== */
.social-proof {
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.social-proof-text {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.platform-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.platform-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--transition);
}

.platform-logo:hover {
  color: var(--text-secondary);
}

.platform-logo svg {
  opacity: 0.5;
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== Services ===== */
.services {
  padding: 120px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: var(--accent-secondary);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== How It Works ===== */
.how-it-works {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.step:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
  box-shadow: var(--shadow-glow);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.6;
  min-width: 80px;
  text-align: center;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.step-visual {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-secondary);
  opacity: 0.5;
}

.step-visual svg {
  width: 48px;
  height: 48px;
}

/* Waveform mini animation */
.waveform-mini {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 40px;
}

.waveform-mini span {
  width: 3px;
  background: var(--accent-primary);
  border-radius: 3px;
  animation: waveformAnim 1.2s ease-in-out infinite;
}

.waveform-mini span:nth-child(1) { height: 12px; animation-delay: 0.0s; }
.waveform-mini span:nth-child(2) { height: 20px; animation-delay: 0.1s; }
.waveform-mini span:nth-child(3) { height: 30px; animation-delay: 0.2s; }
.waveform-mini span:nth-child(4) { height: 18px; animation-delay: 0.3s; }
.waveform-mini span:nth-child(5) { height: 25px; animation-delay: 0.4s; }
.waveform-mini span:nth-child(6) { height: 35px; animation-delay: 0.5s; }
.waveform-mini span:nth-child(7) { height: 15px; animation-delay: 0.6s; }
.waveform-mini span:nth-child(8) { height: 28px; animation-delay: 0.7s; }
.waveform-mini span:nth-child(9) { height: 20px; animation-delay: 0.8s; }
.waveform-mini span:nth-child(10) { height: 10px; animation-delay: 0.9s; }
.waveform-mini span:nth-child(11) { height: 22px; animation-delay: 1.0s; }
.waveform-mini span:nth-child(12) { height: 32px; animation-delay: 0.15s; }
.waveform-mini span:nth-child(13) { height: 16px; animation-delay: 0.25s; }
.waveform-mini span:nth-child(14) { height: 26px; animation-delay: 0.35s; }
.waveform-mini span:nth-child(15) { height: 14px; animation-delay: 0.45s; }

@keyframes waveformAnim {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

.gear-anim svg {
  animation: spin 8s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.upload-icon-anim svg {
  animation: float 3s ease-in-out infinite;
}

.check-anim svg {
  animation: float 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

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

/* ===== Pricing ===== */
.pricing {
  padding: 120px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-featured {
  border-color: var(--accent-primary);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, var(--bg-card) 100%);
  transform: scale(1.03);
  box-shadow: var(--shadow-glow);
}

.pricing-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--gradient-primary);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  align-self: flex-start;
  margin-top: 8px;
}

.price {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-episodes {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-features svg {
  color: var(--accent-secondary);
  flex-shrink: 0;
}

/* ===== About ===== */
.about {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  max-width: 450px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.equalizer {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 200px;
  padding: 20px;
}

.equalizer span {
  width: 12px;
  background: var(--gradient-primary);
  border-radius: 6px;
  animation: eqAnim 1s ease-in-out infinite;
}

.equalizer span:nth-child(1) { height: 40px; animation-delay: 0.0s; }
.equalizer span:nth-child(2) { height: 80px; animation-delay: 0.1s; }
.equalizer span:nth-child(3) { height: 60px; animation-delay: 0.2s; }
.equalizer span:nth-child(4) { height: 120px; animation-delay: 0.3s; }
.equalizer span:nth-child(5) { height: 90px; animation-delay: 0.4s; }
.equalizer span:nth-child(6) { height: 150px; animation-delay: 0.5s; }
.equalizer span:nth-child(7) { height: 70px; animation-delay: 0.6s; }
.equalizer span:nth-child(8) { height: 130px; animation-delay: 0.7s; }
.equalizer span:nth-child(9) { height: 100px; animation-delay: 0.8s; }
.equalizer span:nth-child(10) { height: 50px; animation-delay: 0.9s; }
.equalizer span:nth-child(11) { height: 110px; animation-delay: 0.15s; }
.equalizer span:nth-child(12) { height: 75px; animation-delay: 0.25s; }
.equalizer span:nth-child(13) { height: 140px; animation-delay: 0.35s; }
.equalizer span:nth-child(14) { height: 55px; animation-delay: 0.45s; }
.equalizer span:nth-child(15) { height: 95px; animation-delay: 0.55s; }
.equalizer span:nth-child(16) { height: 125px; animation-delay: 0.65s; }
.equalizer span:nth-child(17) { height: 65px; animation-delay: 0.75s; }
.equalizer span:nth-child(18) { height: 85px; animation-delay: 0.85s; }
.equalizer span:nth-child(19) { height: 145px; animation-delay: 0.05s; }
.equalizer span:nth-child(20) { height: 45px; animation-delay: 0.95s; }

@keyframes eqAnim {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

.about-content .section-tag {
  margin-bottom: 16px;
}

.about-content .section-title {
  text-align: left;
}

.about-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-content p strong {
  color: var(--text-primary);
}

.about-highlights {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

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

.highlight-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.1);
  border-radius: var(--radius-sm);
  color: var(--accent-secondary);
  flex-shrink: 0;
}

.highlight-icon svg {
  width: 22px;
  height: 22px;
}

.highlight strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

.highlight span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 120px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

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

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item.active {
  border-color: rgba(124, 58, 237, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent-tertiary);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-muted);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-secondary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.cta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Footer ===== */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

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

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color var(--transition);
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--accent-tertiary);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--accent-secondary);
}

/* ===== Animations ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.95);
}

[data-aos="zoom-in"].aos-animate {
  opacity: 1;
  transform: scale(1);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-featured {
    transform: none;
  }

  .pricing-featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }

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

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

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .services-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .step {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .step-visual {
    display: none;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .about-highlights {
    flex-direction: column;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .platform-logos {
    gap: 24px;
  }

  .hero {
    padding: 100px 0 40px;
  }

  .services,
  .how-it-works,
  .pricing,
  .about,
  .testimonials,
  .faq,
  .cta {
    padding: 80px 0;
  }
}

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .platform-logos {
    flex-direction: column;
    gap: 16px;
  }
}
/* =============================================
   PACKAGES SECTION
   ============================================= */
/* =============================================
   PACKAGES SECTION
   ============================================= */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.package-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.package-card.package-featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--surface), rgba(var(--accent-rgb, 250,189,0),0.05));
}

.package-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(var(--accent-rgb, 250,189,0), 0.12);
  border: 1px solid rgba(var(--accent-rgb, 250,189,0), 0.25);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
  width: fit-content;
}

.package-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.package-tagline {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.package-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.package-includes-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.package-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #22c55e;
}

.package-features.package-addons li svg {
  color: var(--accent);
}

.package-note {
  font-size: 0.78rem;
  opacity: 0.7;
  font-style: italic;
}

.package-addon-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  padding: 0.5rem 0;
  border-top: 1px dashed rgba(var(--accent-rgb, 250,189,0), 0.3);
  border-bottom: 1px dashed rgba(var(--accent-rgb, 250,189,0), 0.3);
}

/* =============================================
   PORTFOLIO SECTION
   ============================================= */
.portfolio {
  padding: 6rem 0;
  background: var(--bg);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-card {
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 220px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.portfolio-card--blue  { background: #1a7abf; }
.portfolio-card--purple { background: #7b3fa0; }
.portfolio-card--orange { background: #c97a1a; }
.portfolio-card--teal   { background: #1a7a7a; }

.portfolio-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.2);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  width: fit-content;
}

.portfolio-info h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.portfolio-info p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}

.portfolio-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.btn-portfolio-listen,
.btn-portfolio-view {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-portfolio-listen {
  background: rgba(255,255,255,0.9);
  color: #111;
}

.btn-portfolio-listen:hover {
  background: #fff;
}

.btn-portfolio-view {
  background: rgba(0,0,0,0.25);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-portfolio-view:hover {
  background: rgba(0,0,0,0.4);
}

.portfolio-avatar {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
}

/* =============================================
   UPDATED CTA SECTION - GET STARTED STEPS
   ============================================= */
.cta-steps {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: nowrap;
}

.cta-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  max-width: 200px;
  flex: 1;
}

.cta-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #5b21b6, #3b0764);
  border: 2px solid rgba(139,92,246,0.5);
  color: #c4b5fd;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(124,58,237,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
  margin-bottom: 0.25rem;
}

.cta-step strong {
  color: var(--text-primary, #fff);
  font-size: 1.05rem;
  font-weight: 700;
}

.cta-step span {
  color: var(--text-secondary, rgba(255,255,255,0.6));
  font-size: 0.875rem;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .cta-steps {
    flex-wrap: wrap;
    gap: 2rem;
  }
}

/* =============================================
   HERO WAVEFORM ANIMATION
   ============================================= */
.hero-waveform {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 1.5rem;
  height: 80px;
  overflow: hidden;
}

.waveform-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 100%;
}

.waveform-bars span {
  display: block;
  width: 5px;
  border-radius: 3px;
  background: linear-gradient(to top, #7c3aed, rgba(139,92,246,0.45));
  animation: waveBar 1.2s ease-in-out infinite;
  transform-origin: center center;
  box-shadow: 0 0 8px rgba(124,58,237,0.35);
}

/* Create a natural audio waveform envelope shape */
.waveform-bars span:nth-child(1)  { height: 14px; animation-delay: 0.00s; }
.waveform-bars span:nth-child(2)  { height: 22px; animation-delay: 0.05s; }
.waveform-bars span:nth-child(3)  { height: 32px; animation-delay: 0.10s; }
.waveform-bars span:nth-child(4)  { height: 44px; animation-delay: 0.15s; }
.waveform-bars span:nth-child(5)  { height: 54px; animation-delay: 0.20s; }
.waveform-bars span:nth-child(6)  { height: 62px; animation-delay: 0.25s; }
.waveform-bars span:nth-child(7)  { height: 68px; animation-delay: 0.30s; }
.waveform-bars span:nth-child(8)  { height: 72px; animation-delay: 0.35s; }
.waveform-bars span:nth-child(9)  { height: 74px; animation-delay: 0.40s; }
.waveform-bars span:nth-child(10) { height: 72px; animation-delay: 0.45s; }
.waveform-bars span:nth-child(11) { height: 68px; animation-delay: 0.50s; }
.waveform-bars span:nth-child(12) { height: 60px; animation-delay: 0.55s; }
.waveform-bars span:nth-child(13) { height: 48px; animation-delay: 0.60s; }
.waveform-bars span:nth-child(14) { height: 36px; animation-delay: 0.65s; }
.waveform-bars span:nth-child(15) { height: 28px; animation-delay: 0.70s; }
.waveform-bars span:nth-child(16) { height: 22px; animation-delay: 0.75s; }
.waveform-bars span:nth-child(17) { height: 28px; animation-delay: 0.80s; }
.waveform-bars span:nth-child(18) { height: 36px; animation-delay: 0.85s; }
.waveform-bars span:nth-child(19) { height: 48px; animation-delay: 0.90s; }
.waveform-bars span:nth-child(20) { height: 60px; animation-delay: 0.95s; }
.waveform-bars span:nth-child(21) { height: 68px; animation-delay: 1.00s; }
.waveform-bars span:nth-child(22) { height: 72px; animation-delay: 1.05s; }
.waveform-bars span:nth-child(23) { height: 74px; animation-delay: 1.10s; }
.waveform-bars span:nth-child(24) { height: 72px; animation-delay: 1.15s; }
.waveform-bars span:nth-child(25) { height: 68px; animation-delay: 1.20s; }
.waveform-bars span:nth-child(26) { height: 62px; animation-delay: 1.15s; }
.waveform-bars span:nth-child(27) { height: 54px; animation-delay: 1.10s; }
.waveform-bars span:nth-child(28) { height: 44px; animation-delay: 1.05s; }
.waveform-bars span:nth-child(29) { height: 32px; animation-delay: 1.00s; }
.waveform-bars span:nth-child(30) { height: 22px; animation-delay: 0.95s; }
.waveform-bars span:nth-child(31) { height: 14px; animation-delay: 0.90s; }
.waveform-bars span:nth-child(32) { height: 22px; animation-delay: 0.85s; }
.waveform-bars span:nth-child(33) { height: 36px; animation-delay: 0.80s; }
.waveform-bars span:nth-child(34) { height: 52px; animation-delay: 0.75s; }
.waveform-bars span:nth-child(35) { height: 64px; animation-delay: 0.70s; }
.waveform-bars span:nth-child(36) { height: 72px; animation-delay: 0.65s; }
.waveform-bars span:nth-child(37) { height: 74px; animation-delay: 0.60s; }
.waveform-bars span:nth-child(38) { height: 72px; animation-delay: 0.55s; }
.waveform-bars span:nth-child(39) { height: 64px; animation-delay: 0.50s; }
.waveform-bars span:nth-child(40) { height: 52px; animation-delay: 0.45s; }
.waveform-bars span:nth-child(41) { height: 38px; animation-delay: 0.40s; }
.waveform-bars span:nth-child(42) { height: 26px; animation-delay: 0.35s; }
.waveform-bars span:nth-child(43) { height: 18px; animation-delay: 0.30s; }
.waveform-bars span:nth-child(44) { height: 12px; animation-delay: 0.25s; }
.waveform-bars span:nth-child(45) { height: 18px; animation-delay: 0.20s; }
.waveform-bars span:nth-child(46) { height: 26px; animation-delay: 0.15s; }
.waveform-bars span:nth-child(47) { height: 18px; animation-delay: 0.10s; }
.waveform-bars span:nth-child(48) { height: 10px; animation-delay: 0.05s; }
.waveform-bars span:nth-child(49) { height: 16px; animation-delay: 0.00s; }
.waveform-bars span:nth-child(50) { height: 24px; animation-delay: 0.05s; }
.waveform-bars span:nth-child(51) { height: 14px; animation-delay: 0.10s; }
.waveform-bars span:nth-child(52) { height: 8px;  animation-delay: 0.15s; }
.waveform-bars span:nth-child(53) { height: 14px; animation-delay: 0.20s; }
.waveform-bars span:nth-child(54) { height: 22px; animation-delay: 0.25s; }
.waveform-bars span:nth-child(55) { height: 14px; animation-delay: 0.30s; }
.waveform-bars span:nth-child(56) { height: 8px;  animation-delay: 0.35s; }
.waveform-bars span:nth-child(57) { height: 14px; animation-delay: 0.40s; }
.waveform-bars span:nth-child(58) { height: 10px; animation-delay: 0.45s; }
.waveform-bars span:nth-child(59) { height: 6px;  animation-delay: 0.50s; }
.waveform-bars span:nth-child(60) { height: 4px;  animation-delay: 0.55s; }

@keyframes waveBar {
  0%, 100% { transform: scaleY(1); opacity: 0.85; }
  50%       { transform: scaleY(0.35); opacity: 0.45; }
}

/* =============================================
   PRICING LAUNCH ROW (second row, centered)
   ============================================= */
.pricing-launch-row {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.pricing-launch {
  max-width: calc(33.333% - 0.75rem);
  width: 100%;
}

.pricing-features-two-col {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
}

.pricing-note {
  font-size: 0.75rem;
  opacity: 0.65;
  font-style: italic;
}

@media (max-width: 900px) {
  .pricing-launch {
    max-width: 100%;
  }
  .pricing-features-two-col {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   PORTFOLIO GRID - TWO CARDS
   ============================================= */
.portfolio-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .portfolio-grid--two {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   LOGO IMAGE SIZING
   ============================================= */
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-brand .logo-img {
  height: 52px;
}

.nav-logo--withtext {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary, #fff);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* =============================================
   LAUNCH PACKAGE - ACCORDION STYLE
   ============================================= */
.pricing-launch-row {
  margin-top: 1.5rem;
}

.pricing-launch-wrapper {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
}

.launch-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-primary, #fff);
  text-align: left;
  gap: 1rem;
  transition: background 0.2s ease;
}

.launch-toggle:hover {
  background: rgba(255,255,255,0.03);
}

.launch-toggle-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.launch-toggle-left svg {
  flex-shrink: 0;
  color: var(--accent, #c8960c);
}

.launch-toggle-left strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary, #fff);
}

.launch-toggle-left span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-secondary, rgba(255,255,255,0.55));
  margin-top: 0.15rem;
}

.launch-toggle-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.launch-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent, #c8960c);
  background: rgba(200,150,12,0.12);
  border: 1px solid rgba(200,150,12,0.25);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.launch-chevron {
  color: var(--text-secondary, rgba(255,255,255,0.5));
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.launch-toggle[aria-expanded="true"] .launch-chevron {
  transform: rotate(180deg);
}

.launch-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
  padding: 0 1.75rem;
}

.launch-panel.is-open {
  max-height: 800px;
  padding: 0 1.75rem 1.75rem;
}

.launch-desc {
  font-size: 0.88rem;
  color: var(--text-secondary, rgba(255,255,255,0.65));
  line-height: 1.6;
  margin-bottom: 1.25rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* =============================================
   MOBILE TEXT OVERFLOW FIX
   ============================================= */
@media (max-width: 768px) {
  .hero-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 3rem);
    word-break: break-word;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-waveform {
    width: 100%;
    overflow: hidden;
    margin: 1.5rem 0;
  }

  .waveform-bars {
    gap: 2px;
  }

  .waveform-bars span {
    width: 3.5px;
  }

  body {
    overflow-x: hidden;
  }
}
