/* =====================================================
   HÖRBAR – Premium Podcast Production
   Dark Theme + Audio Aesthetics
   ===================================================== */

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

/* ── Variables ──────────────────────────────────────── */
:root {
  --bg:          #faf7f2;
  --bg-2:        #f0ece3;
  --bg-3:        #e6e0d6;
  --accent:      #556b53;
  --accent-dim:  rgba(85,107,83,.12);
  --accent-glow: rgba(85,107,83,.30);
  --text:        #1c1c1c;
  --text-muted:  #6b7280;
  --text-faint:  #b5bcc4;
  --border:      rgba(0,0,0,.10);
  --radius:      12px;
  --radius-lg:   20px;
  --nav-h:       72px;
  --transition:  .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Typography ─────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.display {
  font-size: clamp(2.4rem, 6.4vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -.04em;
}
.headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.subheadline {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}
.label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
}
.lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ── Navigation ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  background: rgba(250,247,242,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.nav-logo svg { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  padding: .5rem 1.25rem;
  border: 1px solid var(--accent);
  border-radius: 50px;
  color: var(--accent) !important;
  font-size: .85rem !important;
  font-weight: 600 !important;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--bg) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}
.nav-toggle span {
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--accent); }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  background: #3d5a40;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--accent-glow);
}
.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn svg { width: 18px; height: 18px; }

/* ── Section Basics ─────────────────────────────────── */
.section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1280px;
  margin: 0 auto;
}
.section-full {
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.section-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-header .label { margin-bottom: 1rem; display: block; }

/* ── Divider ─────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Cursor ──────────────────────────────────────────── */
/* Native browser cursor: hand on links/buttons, default elsewhere */
a, button, [role="button"], .filter-tab, .nav-toggle { cursor: pointer; }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: var(--nav-h) clamp(1.5rem, 5vw, 4rem) 4rem;
  position: relative;
  overflow: hidden;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .4;
  pointer-events: none;
}

/* Text side */
.hero-content {
  flex: 0 0 auto;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  background: var(--bg-2);
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}
.hero-content h1 { margin-bottom: 1.5rem; }
.hero-content h1 em { font-style: normal; color: var(--accent); }
.hero-content .lead { margin: 0 0 3rem; max-width: 480px; }
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Visual (mic) side */
.hero-visual {
  flex: 0 0 auto;
  width: 648px;
  height: 432px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#scene {
  position: absolute;
  width: 900px;
  height: 600px;
  top: 0; left: 0;
  transform: scale(0.72);
  transform-origin: top left;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Persons ─────────────────────────────────────────── */
.person {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  user-select: none;
}
.person.left  { right: calc(50% + 80px); }
.person.right { left:  calc(50% + 100px); }
.portrait-wrap {
  width: 340px;
  height: 420px;
}
.left-wrap  {}
.right-wrap {}
.portrait {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
}
.person .name {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.person.left  .name { color: #6b8cba; font-size: 13px; }
.person.right .name { color: #556b53; font-size: 13px; }

/* Sound waves */
.person .wave {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  display: flex;
  flex-direction: column;
  gap: 7px;
  opacity: 0;
  transition: opacity 0.3s;
}
.person.left  .wave { right: -28px; align-items: flex-start; }
.person.right .wave { left:  -28px; align-items: flex-end; }
.person .wave span {
  display: block;
  height: 2px;
  border-radius: 2px;
}
.person.left  .wave span { background: #6b8cba; }
.person.right .wave span { background: #556b53; }

/* ── Microphone ──────────────────────────────────────── */
#mic-wrap {
  position: relative;
  width: 160px; height: 320px;
  transform-style: preserve-3d;
  perspective: 800px;
  transform: scale(1.3);
  transform-origin: center center;
  transition: transform 0.08s ease-out;
}
#mic {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.08s ease-out;
}
.mic-body {
  position: absolute;
  left: 50%; top: 10px;
  transform: translateX(-50%);
  width: 80px; height: 140px;
  border-radius: 40px 40px 16px 16px;
  background: linear-gradient(160deg, #4a4a52 0%, #2a2a30 40%, #1a1a1e 100%);
  box-shadow:
    inset -6px -6px 18px rgba(0,0,0,0.6),
    inset 4px 4px 10px rgba(255,255,255,0.07),
    0 0 40px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,255,255,0.08);
}
.mic-body::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 32px 32px 10px 10px;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 5px, rgba(0,0,0,0.25) 5px, rgba(0,0,0,0.25) 6px),
    repeating-linear-gradient(90deg, transparent, transparent 5px, rgba(0,0,0,0.25) 5px, rgba(0,0,0,0.25) 6px);
  opacity: 0.8;
}
.mic-body::after {
  content: '';
  position: absolute;
  left: 14px; top: 12px;
  width: 14px; height: 60px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 100%);
  transform: rotate(-10deg);
}
.mic-ring {
  position: absolute;
  left: 50%; top: 148px;
  transform: translateX(-50%);
  width: 86px; height: 10px;
  border-radius: 3px;
  background: linear-gradient(90deg, #2a2a2e, #555560, #2a2a2e);
  box-shadow: 0 2px 8px rgba(0,0,0,0.5), inset 0 1px 2px rgba(255,255,255,0.1);
}
.mic-ring span {
  display: block;
  text-align: center;
  font-size: 6px;
  letter-spacing: 0.2em;
  color: rgba(0,0,0,0.35);
  line-height: 10px;
  text-transform: uppercase;
}
.mic-neck {
  position: absolute;
  left: 50%; top: 158px;
  transform: translateX(-50%);
  width: 16px; height: 60px;
  background: linear-gradient(90deg, #1c1c20, #3a3a40, #1c1c20);
  border-radius: 2px;
}
.mic-yoke {
  position: absolute;
  left: 50%; top: 212px;
  transform: translateX(-50%);
  width: 90px; height: 36px;
}
.mic-yoke::before, .mic-yoke::after {
  content: '';
  position: absolute;
  top: 0;
  width: 6px; height: 36px;
  background: linear-gradient(180deg, #3a3a40, #222226);
  border-radius: 3px;
}
.mic-yoke::before { left: 0;  transform: rotate(-12deg); transform-origin: top center; }
.mic-yoke::after  { right: 0; transform: rotate(12deg);  transform-origin: top center; }
.mic-yoke-bar {
  position: absolute;
  top: 32px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 6px;
  background: linear-gradient(90deg, #1c1c20, #3a3a40, #1c1c20);
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.mic-stand {
  position: absolute;
  left: 50%; top: 248px;
  transform: translateX(-50%);
  width: 10px; height: 56px;
  background: linear-gradient(90deg, #222, #444, #222);
  border-radius: 2px;
}
.mic-base {
  position: absolute;
  left: 50%; top: 296px;
  transform: translateX(-50%);
  width: 60px; height: 12px;
  background: linear-gradient(90deg, #1a1a1e, #3a3a3e, #1a1a1e);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.6);
}
.mic-cable {
  position: absolute;
  left: 50%; top: 308px;
  transform: translateX(-50%);
  width: 3px; height: 30px;
  background: #222;
  border-radius: 2px;
}
/* Glow states */
#mic.glow-left  .mic-body { box-shadow: inset -6px -6px 18px rgba(0,0,0,0.5), inset 4px 4px 10px rgba(255,255,255,0.07), 0 0 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08), -8px 0 30px rgba(107,140,186,0.50); }
#mic.glow-right .mic-body { box-shadow: inset -6px -6px 18px rgba(0,0,0,0.5), inset 4px 4px 10px rgba(255,255,255,0.07), 0 0 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08),  8px 0 30px rgba(85,107,83,0.60); }
#mic-wrap:hover #mic .mic-body {
  box-shadow:
    inset -6px -6px 18px rgba(0,0,0,0.6),
    inset 4px 4px 10px rgba(255,255,255,0.07),
    0 0 60px rgba(255,255,255,0.12),
    0 0 0 1px rgba(255,255,255,0.15);
}

/* ── Background canvas ── */
#bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  /* Weiche, runde Maske, damit der rechteckige Canvas-Rand
     zum Bildrand hin transparent ausläuft. */
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at center, #000 15%, rgba(0,0,0,0) 80%);
          mask-image: radial-gradient(ellipse 60% 60% at center, #000 15%, rgba(0,0,0,0) 80%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
#scene { position: relative; }
.person, #mic-wrap { position: absolute; z-index: 2; }

/* ── Play Badge (Hörprobe) ── */
#play-badge {
  position: absolute;
  left: 50%;
  top: 68px;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent, #556b53);
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 2px 16px rgba(85,107,83,0.55);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
#play-badge:hover {
  transform: translateX(-50%) scale(1.12);
  box-shadow: 0 4px 28px rgba(85,107,83,0.85);
}
#play-badge:focus-visible {
  outline: 2px solid rgba(255,255,255,0.8);
  outline-offset: 3px;
}
#play-badge svg { width: 20px; height: 20px; }
#play-badge #play-icon { margin-left: 3px; } /* optisch mittig bei Dreieck */
#play-badge.playing {
  box-shadow: 0 0 0 0 rgba(85,107,83,0.6);
  animation: playPulse 1.6s ease-out infinite;
}
@keyframes playPulse {
  0%   { box-shadow: 0 0 0 0 rgba(85,107,83,0.6); }
  70%  { box-shadow: 0 0 0 18px rgba(85,107,83,0); }
  100% { box-shadow: 0 0 0 0 rgba(85,107,83,0); }
}

/* ── Audio Hint ── */
#audio-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s;
  pointer-events: none;
  z-index: 3;
}
#audio-hint.playing { color: rgba(255,255,255,0.7); }

/* ── Audio Scrubber ── */
#audio-scrubber {
  position: absolute;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(360px, 76%);
  z-index: 3;
  opacity: 0.2;
  transition: opacity 0.4s ease;
}
#audio-scrubber.active {
  opacity: 1;
}
#scrubber-current,
#scrubber-total {
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  font-variant-numeric: tabular-nums;
  color: rgba(255,255,255,0.9);
  min-width: 28px;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
#scrubber-track-wrap {
  position: relative;
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  cursor: pointer;
}
#scrubber-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  pointer-events: none;
  transition: width 0.1s linear;
}
#scrubber-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
  transition: transform 0.15s ease, left 0.1s linear;
}
#scrubber-track-wrap:hover #scrubber-thumb {
  transform: translate(-50%, -50%) scale(1.3);
}
#scrubber-range {
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 28px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  z-index: 2;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: var(--text-faint);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-scroll .line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Stats Bar ───────────────────────────────────────── */
.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-bar .section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.stat {
  text-align: center;
}
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-label {
  font-size: .85rem;
  color: var(--text-muted);
}

/* ── Service Cards ───────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.card:hover {
  border-color: rgba(85,107,83,.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 {
  font-size: 1.25rem;
  margin-bottom: .75rem;
}
.card p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }
.card-tag {
  display: inline-block;
  margin-top: 1.5rem;
  padding: .25rem .75rem;
  border-radius: 50px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 600;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: var(--transition);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(85,107,83,.08), var(--bg-2));
}
.pricing-card.featured::after {
  content: none;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.pricing-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.pricing-price {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin: 1rem 0 .25rem;
}
.pricing-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.pricing-desc {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.pricing-features {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}
.pricing-features li {
  display: flex;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text-muted);
}
.pricing-features li svg {
  flex-shrink: 0;
  color: var(--accent);
  width: 18px; height: 18px;
  margin-top: 2px;
}

/* ── Process Steps ───────────────────────────────────── */
.process {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.step-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-faint);
  line-height: 1;
  transition: color var(--transition);
}
.process-step:hover .step-number { color: var(--accent); }
.step-content h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.step-content p { color: var(--text-muted); font-size: .9rem; }

/* ── Audio Player ─────────────────────────────────────── */
.audio-section {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}
.spotify-embed {
  border-radius: var(--radius);
  overflow: hidden;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.portfolio-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.portfolio-item:hover {
  border-color: rgba(85,107,83,.3);
  transform: translateY(-4px);
}
.portfolio-item-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.portfolio-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.portfolio-meta h3 { font-size: 1rem; margin-bottom: .2rem; }
.portfolio-meta p { font-size: .8rem; color: var(--text-muted); }

/* ── Testimonial ─────────────────────────────────────── */
.testimonial {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem; left: 2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 6rem;
  color: var(--accent);
  opacity: .3;
  line-height: 1;
}
.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--text-muted);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
}
.testimonial-name { font-weight: 600; font-size: .95rem; }
.testimonial-role { font-size: .8rem; color: var(--text-muted); }

/* ── About ───────────────────────────────────────────── */
.about-grid {
  display: grid;

/* ── About ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
  filter: grayscale(15%);
}
.about-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  color: #faf7f2;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  line-height: 1.3;
}
.about-image-accent .big {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
}
.about-image-accent .small {
  font-size: .75rem;
  opacity: .85;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}
.tag {
  padding: .3rem .85rem;
  border-radius: 50px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 500;
}

/* ── CTA Banner ──────────────────────────────────────── */
.cta-banner {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  color: #faf7f2;
}
.cta-banner .headline { color: #faf7f2; margin-bottom: 1rem; }
.cta-banner .lead { color: rgba(250,247,242,.8); margin-bottom: 2rem; }
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-banner .btn-primary {
  background: #faf7f2;
  color: var(--accent);
}
.cta-banner .btn-outline {
  border-color: rgba(250,247,242,.5);
  color: #faf7f2;
}

/* ── Contact ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.form-group label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; width: 20px; height: 20px; }

/* ── Footer ──────────────────────────────────────────── */
footer {
  background: var(--accent);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3.5rem clamp(1.5rem, 5vw, 4rem) 2rem clamp(3rem, 8vw, 7rem);
}
.footer-brand {
  margin-bottom: 2.5rem;
}
.footer-logo {
  color: var(--bg) !important;
  font-size: 1.8rem !important;
}
.footer-tagline {
  color: var(--bg);
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: .6rem;
  white-space: nowrap;
}
.footer-bottom {
  border-top: 1px solid rgba(250,247,242,.25);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(250,247,242,.70);
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a {
  color: var(--bg);
  opacity: .85;
  transition: opacity var(--transition);
}
.footer-bottom a:hover { opacity: 1; }

/* ── Platform badges ─────────────────────────────────── */
.platform-badges { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.platform-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-2);
  transition: var(--transition);
}
.platform-badge:hover { border-color: var(--accent); color: var(--accent); }

/* ── Embed / Audio ───────────────────────────────────── */
.embed-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.embed-header {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
}
.embed-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.embed-body { padding: 1rem 1.5rem 1.5rem; }

/* ── Reveal animation ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Filter tabs ─────────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-tab {
  padding: .4rem 1.1rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  background: none;
}
.filter-tab.active, .filter-tab:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #faf7f2;
}

/* ── Subpage hero ────────────────────────────────────── */
.subpage-hero,
.page-hero {
  padding: calc(var(--nav-h) + 5rem) clamp(1.5rem, 5vw, 4rem) 5rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; }
  .hero-content { align-items: center; max-width: 100%; }
  .hero-visual { width: 100%; max-width: 400px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-tagline { white-space: normal; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .stats-bar .section { flex-direction: column; gap: 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-inner { padding-left: clamp(1.5rem, 5vw, 3rem); }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .process-step { grid-template-columns: 60px 1fr; gap: 1rem; }
}
@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { justify-c