/* ============================================================
   HikariWave AI — Custom Styles
   Design: Anime-Cyberpunk | Dark Navy + Neon Accents
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --hw-bg: #060d06;
  --hw-bg-2: #0b130b;
  --hw-purple: #4ade80;
  --hw-cyan: #fbbf24;
  --hw-pink: #60a5fa;
  --hw-text: #ecfdf5;
  --hw-text-muted: #6b9e7a;
  --hw-border: rgba(255, 255, 255, 0.1);
  --hw-glass-bg: rgba(255, 255, 255, 0.05);
  --hw-glass-blur: blur(16px);
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --gradient-primary: linear-gradient(135deg, var(--hw-purple), var(--hw-cyan));
  --gradient-accent: linear-gradient(135deg, var(--hw-pink), var(--hw-purple));
  --gradient-hero: linear-gradient(135deg, var(--hw-purple) 0%, var(--hw-cyan) 50%, var(--hw-pink) 100%);
}

/* ---------- Base Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--hw-bg);
  color: var(--hw-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

a {
  color: var(--hw-cyan);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--hw-purple);
}

/* ---------- Utilities ---------- */
.text-gradient {
  background: var(--gradient-hero);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.text-purple { color: var(--hw-purple) !important; }
.text-cyan   { color: var(--hw-cyan) !important; }
.text-pink   { color: var(--hw-pink) !important; }
.text-muted-hw { color: var(--hw-text-muted) !important; }

.section-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hw-cyan);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--hw-text);
  margin-bottom: 1rem;
}

/* ---------- Glassmorphism ---------- */
.glass-card {
  background: var(--hw-glass-bg);
  backdrop-filter: var(--hw-glass-blur);
  -webkit-backdrop-filter: var(--hw-glass-blur);
  border: 1px solid var(--hw-border);
  border-radius: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 222, 128, 0.3);
  box-shadow: 0 8px 32px rgba(74, 222, 128, 0.15);
}

/* ---------- Buttons ---------- */
.btn-hw-primary {
  background: var(--gradient-primary);
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}

.btn-hw-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(74, 222, 128, 0.5);
  color: #fff;
}

.btn-hw-outline {
  background: transparent;
  border: 1px solid var(--hw-border);
  color: var(--hw-text);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-hw-outline:hover {
  border-color: var(--hw-cyan);
  color: var(--hw-cyan);
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#hw-navbar {
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
  padding: 1.2rem 0;
}

#hw-navbar.scrolled {
  background: rgba(6, 13, 6, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07);
  padding: 0.7rem 0;
}

.navbar-brand-hw {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  background: var(--gradient-primary);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-brand-hw:hover {
  -webkit-text-fill-color: transparent;
}

#hw-navbar .nav-link {
  color: var(--hw-text-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

#hw-navbar .nav-link:hover,
#hw-navbar .nav-link.active {
  color: var(--hw-cyan);
  background: rgba(251, 191, 36, 0.08);
}

#hw-navbar .navbar-toggler {
  border: 1px solid var(--hw-border);
  color: var(--hw-text);
}

#hw-navbar .navbar-toggler-icon {
  filter: invert(1);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  color: var(--hw-purple);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--hw-text-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

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

.stat-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--hw-glass-bg);
  border: 1px solid var(--hw-border);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
}

.stat-pill .stat-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--hw-purple);
}

.stat-pill .stat-label {
  color: var(--hw-text-muted);
  font-size: 0.8rem;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

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

/* ---------- Hero Character ---------- */
.hero-character {
  position: relative;
  display: inline-flex;
  justify-content: center;
  max-width: 440px;
  width: 100%;
  animation: heroFloat 4s ease-in-out infinite;
}

/* Radial neon glow aura behind her */
.hero-char-glow {
  position: absolute;
  top: 15%; left: 15%; right: 15%; bottom: 5%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(74, 222, 128, 0.30) 0%,
    rgba(251, 191, 36, 0.18) 40%,
    transparent 70%
  );
  filter: blur(32px);
  z-index: 0;
  animation: glowPulse 3s ease-in-out infinite;
}


/* Floating "Now Generating" badge */
.hero-char-badge {
  position: absolute;
  bottom: 10%;
  left: -8%;
  z-index: 3;
  background: rgba(4, 8, 4, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  min-width: 210px;
  box-shadow: 0 4px 24px rgba(74, 222, 128, 0.22);
  animation: heroFloat 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

.badge-music-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff;
  flex-shrink: 0;
}

.badge-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--hw-text);
}
.badge-sub {
  font-size: 0.68rem;
  color: var(--hw-text-muted);
}
.badge-live {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
  border-radius: 50px;
  padding: 0.15rem 0.5rem;
}

.badge-bars {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 28px;
}
.badge-bars span {
  flex: 1;
  border-radius: 2px;
  background: var(--gradient-primary);
  animation: wavePreview 1.4s ease-in-out infinite;
}
.badge-bars span:nth-child(odd)  { animation-delay: 0s; }
.badge-bars span:nth-child(even) { animation-delay: 0.28s; }

@keyframes wavePreview {
  0%, 100% { height: 20%; }
  50%       { height: 80%; }
}

/* Glow pulse keyframe */
@keyframes glowPulse {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.1); }
}

/* ============================================================
   DJ BOOTH VISUAL
   ============================================================ */

/* Outer container — stacks platter + EQ vertically */
.dj-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}

/* Platter holds vinyl + tonearm, sized to record */
.dj-platter {
  position: relative;
  width: 280px;
  height: 280px;
}

/* Spinning vinyl record */
.dj-vinyl {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle at center,
      #181818 0px,
      #181818 3px,
      #0f0f0f 3px,
      #0f0f0f 7px
    );
  animation: djSpin 4s linear infinite;
  box-shadow:
    0 0 0 3px rgba(74, 222, 128, 0.25),
    0 0 50px rgba(74, 222, 128, 0.18),
    inset 0 0 40px rgba(0, 0, 0, 0.6);
}

/* Center label — counter-rotates so text stays readable */
.dj-vinyl-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
  animation: djSpin 4s linear infinite reverse;
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.45);
  letter-spacing: 0.05em;
  transform-origin: 50% 50%;
}

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

/* Tonearm — pivot dot + arm */
.dj-tonearm-wrap {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 14px;
  height: 14px;
}

.dj-tonearm-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--hw-cyan);
  box-shadow: 0 0 10px var(--hw-cyan);
  position: relative;
  z-index: 2;
}

.dj-tonearm {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 108px;
  height: 2px;
  background: linear-gradient(90deg, var(--hw-cyan), rgba(251, 191, 36, 0.4));
  transform-origin: 0 50%;
  transform: rotate(138deg);
  border-radius: 2px;
}

/* Equalizer bar row beneath the record */
.dj-eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 52px;
  width: 280px;
}

.dj-eq span {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: var(--gradient-primary);
  min-height: 4px;
  animation: waveBar var(--bar-dur, 0.8s) ease-in-out infinite;
  animation-delay: var(--bar-delay, 0s);
}

/* ============================================================
   FEATURES
   ============================================================ */
#features {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--hw-bg) 0%, var(--hw-bg-2) 100%);
}

.feature-card {
  padding: 2rem;
  height: 100%;
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.feature-icon-purple { background: rgba(74, 222, 128, 0.15); color: var(--hw-purple); }
.feature-icon-cyan   { background: rgba(251, 191, 36, 0.15);  color: var(--hw-cyan); }
.feature-icon-pink   { background: rgba(96, 165, 250, 0.15); color: var(--hw-pink); }
.feature-icon-green  { background: rgba(52, 211, 153, 0.15);  color: #34d399; }

.feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--hw-text);
}

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

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how-it-works {
  padding: 100px 0;
  background: var(--hw-bg);
}

.step-connector {
  display: none;
}

@media (min-width: 768px) {
  .step-connector {
    display: block;
    position: absolute;
    top: 28px;
    left: calc(50% + 80px);
    width: calc(100% - 160px);
    height: 1px;
    background: linear-gradient(90deg, var(--hw-purple), var(--hw-cyan));
    opacity: 0.3;
  }
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
  flex-shrink: 0;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--hw-text);
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--hw-text-muted);
  font-size: 0.88rem;
  margin: 0;
}

/* ============================================================
   GENRES
   ============================================================ */
#genres {
  padding: 100px 0;
  background: var(--hw-bg-2);
}

.genre-card {
  cursor: pointer;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.genre-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

.genre-card:hover::before,
.genre-card.active::before {
  opacity: 0.07;
}

.genre-card:hover,
.genre-card.active {
  transform: translateY(-6px);
  border-color: rgba(74, 222, 128, 0.4);
  box-shadow: 0 12px 40px rgba(74, 222, 128, 0.2);
}

.genre-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.genre-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--hw-text);
  display: block;
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
}

.genre-desc {
  font-size: 0.78rem;
  color: var(--hw-text-muted);
  position: relative;
  z-index: 1;
}

/* ---------- Bootstrap Toast override ---------- */
.hw-toast {
  background: rgba(11, 19, 11, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--hw-border);
  color: var(--hw-text);
}

.hw-toast .toast-header {
  background: rgba(74, 222, 128, 0.15);
  border-bottom: 1px solid var(--hw-border);
  color: var(--hw-purple);
}

/* ============================================================
   AUDIO PREVIEW
   ============================================================ */
#audio-preview {
  padding: 100px 0;
  background: var(--hw-bg);
}

.player-card {
  padding: 2.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.player-track-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--hw-text);
  margin-bottom: 0.2rem;
}

.player-track-artist {
  font-size: 0.85rem;
  color: var(--hw-text-muted);
}

.player-cover {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Waveform visualization */
#waveformViz {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 64px;
  padding: 8px 0;
}

#waveformViz span {
  display: block;
  flex: 1;
  border-radius: 2px;
  background: rgba(74, 222, 128, 0.4);
  min-height: 4px;
  transition: background 0.2s;
}

/* Waveform animation keyframes — each bar uses CSS vars for its heights */
@keyframes waveBar {
  0%, 100% { height: var(--bar-min, 20%); }
  50%       { height: var(--bar-max, 80%); }
}

#waveformViz.playing span {
  background: var(--gradient-primary);
  animation: waveBar var(--bar-dur, 0.8s) ease-in-out infinite;
  animation-delay: var(--bar-delay, 0s);
}

/* Scrubber */
.hw-scrubber {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  cursor: pointer;
  margin: 1.5rem 0 0.5rem;
  overflow: hidden;
}

#scrubberFill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 3px;
  width: 0%;
  transition: width 0.5s linear;
  pointer-events: none;
}

.time-display {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--hw-text-muted);
  font-family: var(--font-heading);
}

/* Play/Pause Button */
#playPauseBtn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
  flex-shrink: 0;
}

#playPauseBtn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(74, 222, 128, 0.6);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Track list */
.hw-track-list {
  margin-top: 1.5rem;
  border-top: 1px solid var(--hw-border);
  padding-top: 1rem;
}

.hw-track-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hw-track-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.hw-track-item.active {
  background: rgba(74, 222, 128, 0.1);
}

.hw-track-item.active .track-num {
  color: var(--hw-purple);
}

.track-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--hw-text-muted);
  width: 20px;
  text-align: center;
}

.track-info {
  flex: 1;
}

.track-name {
  font-size: 0.9rem;
  color: var(--hw-text);
  display: block;
  font-weight: 600;
}

.track-genre {
  font-size: 0.75rem;
  color: var(--hw-text-muted);
}

.track-duration {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--hw-text-muted);
}

/* ============================================================
   PRICING
   ============================================================ */
#pricing {
  padding: 100px 0;
  background: var(--hw-bg-2);
}

.pricing-card {
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: rgba(74, 222, 128, 0.5);
  box-shadow: 0 0 40px rgba(74, 222, 128, 0.15);
  transform: scale(1.03);
}

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

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.pricing-tier {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hw-cyan);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--hw-text);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--hw-text-muted);
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--hw-text-muted);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: var(--hw-text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li .bi-check-circle-fill { color: var(--hw-cyan); }
.pricing-features li .bi-x-circle-fill     { color: var(--hw-text-muted); opacity: 0.4; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: 100px 0;
  background: var(--hw-bg);
}

.testimonial-card {
  padding: 2rem;
  height: 100%;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 0.92rem;
  color: var(--hw-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  border-left: 3px solid var(--hw-purple);
  padding-left: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--hw-text);
  display: block;
}

.author-role {
  font-size: 0.78rem;
  color: var(--hw-text-muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.12) 0%, rgba(251, 191, 36, 0.08) 50%, rgba(96, 165, 250, 0.12) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(74, 222, 128, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: var(--hw-text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
#hw-footer {
  background: var(--hw-bg);
  border-top: 1px solid var(--hw-border);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  background: var(--gradient-primary);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--hw-text-muted);
  margin-bottom: 1.5rem;
  max-width: 240px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--hw-glass-bg);
  border: 1px solid var(--hw-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hw-text-muted);
  font-size: 1rem;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.social-icon:hover {
  border-color: var(--hw-cyan);
  color: var(--hw-cyan);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hw-text);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

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

.footer-links a:hover {
  color: var(--hw-cyan);
}

.footer-hikari {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 360px;
  opacity: 0.12;
  mix-blend-mode: screen;
  pointer-events: none;
  user-select: none;
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--hw-border);
  font-size: 0.82rem;
  color: var(--hw-text-muted);
}

/* ============================================================
   AOS overrides — ensure visibility on non-JS
   ============================================================ */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 767px) {
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  .hero-stats {
    gap: 0.75rem;
  }

  .stat-pill {
    padding: 0.4rem 0.9rem;
  }
}

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

  .hero-cta-group {
    flex-direction: column;
  }

  .btn-hw-primary,
  .btn-hw-outline {
    text-align: center;
  }
}
