/* ═══════════════════════════════════════════════════════════
   MUZE AI — Design System
   ═══════════════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --bg: #fbfbfb;
  --bg-white: #ffffff;
  --text: #0d0d0d;
  --text-muted: #666;
  --border: #e6e6e6;

  /* Gradient — left-to-right blue→pink→orange */
  --grad: linear-gradient(90deg, #3e86c6 0%, #a666aa 25%, #ec4492 51%, #ee4454 74%, #f05427 100%);
  /* Same for 135deg buttons */
  --grad-135: linear-gradient(135deg, #3e86c6 0%, #a666aa 22%, #ec4492 51%, #ee4454 76%, #f05427 100%);
  /* Text clip version */
  --grad-text: linear-gradient(90deg, #3e86c6 0%, #a866aa 30%, #ec4492 60%, #f05427 100%);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  --shadow-sm: 0 1px 4px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .10);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .12);

  --dur: .22s;
  --ease: cubic-bezier(.4, 0, .2, 1);

  --max-w: 1080px;
  --nav-h: 68px;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Gradient text utility ── */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), opacity var(--dur) var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-dark {
  background: #0d0d0d;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.btn-dark:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, .28);
}

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

.btn-outline:hover {
  border-color: #aaa;
  background: rgba(0, 0, 0, .03);
}

.btn-grad {
  background: var(--grad-135);
  color: #fff;
  box-shadow: 0 2px 12px rgba(226, 64, 138, .35);
  position: relative;
  overflow: hidden;
}

.btn-grad::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .6s var(--ease);
}

.btn-grad:hover::after {
  transform: translateX(100%);
}

.btn-grad:hover {
  box-shadow: 0 6px 24px rgba(226, 64, 138, .45);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section defaults ── */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 251, 251, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.2px;
  flex-shrink: 0;
}

.nav__logo img {
  width: 36px;
  height: 36px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
}

.nav__link:hover {
  color: var(--text);
}

.nav__ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__ctas .btn {
  padding: 10px 18px;
  font-size: 14px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--border);
}

.nav__mobile.open {
  display: flex;
}

@media (max-width: 700px) {

  .nav__links {
    display: none;
  }

  .nav__ctas .btn-outline {
    display: none;
  }

  .nav__burger {
    display: flex;
    margin-left: 12px;
  }
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  background: var(--bg);
  padding: 32px 0 0;
  overflow: hidden;
  text-align: center;
}

.hero__inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  background: #fff;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad-text);
  background: linear-gradient(135deg, #3e86c6, #ec4492);
  flex-shrink: 0;
}

/* H1 */
.hero__h1 {
  font-size: clamp(28px, 5.5vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
}

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

.hero__h1-italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  -webkit-text-fill-color: var(--text);
  color: var(--text);
  font-size: .9em;
  letter-spacing: -.5px;
}

/* Pipeline */
.pipeline {
  width: 100%;
  max-width: 420px;
  position: relative;
  padding-top: 20px;
}

.pipeline__line {
  position: absolute;
  top: 10px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

.pipeline__steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.pipeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pipeline__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  flex-shrink: 0;
}

.pipeline__dot--1 {
  background: #3e86c6;
}

.pipeline__dot--2 {
  background: #9066bb;
}

.pipeline__dot--3 {
  background: #ec4492;
}

.pipeline__dot--4 {
  background: #ee4454;
}

.pipeline__dot--5 {
  background: #f05427;
}

.pipeline__label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* CTAs */
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Trust */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
}

.trust-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-val {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Product Hunt + Stars */
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  background: #fff;
  padding: 8px 16px;
  transition: box-shadow var(--dur) var(--ease);
}

.ph-badge:hover {
  box-shadow: var(--shadow-md);
}

.ph-badge__logo {
  width: 28px;
  height: 28px;
  background: #da552f;
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ph-badge__label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}

.ph-badge__name {
  font-size: 13px;
  font-weight: 700;
  color: #da552f;
}

.ph-badge__votes {
  font-size: 12px;
  font-weight: 700;
  color: #da552f;
  margin-left: 8px;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}

.star-rating__avatars {
  display: flex;
}

.star-rating__avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  object-fit: cover;
}

.star-rating__avatars img:first-child {
  margin-left: 0;
}

/* ── Platform badges (Meta + Google) ── */
.hero__platform-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.platform-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.platform-pill img {
  height: 20px;
  width: auto;
  object-fit: contain;
}

/* ── Pipeline image ── */
.pipeline-wrap {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.pipeline-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   FEATURE SCROLL STRIP
═══════════════════════════════════════════════════════════ */

/* Section caption above the strip */
.feat-caption {
  padding: 16px 24px 0;
  text-align: center;
}

.feat-caption h2 {
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 700;
  letter-spacing: -.3px;
  line-height: 1.3;
  color: var(--text);
}

.feat-caption h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

/* Strip outer — clips the scrolling track */
.feat-strip {
  overflow: hidden;
  padding: 16px 0 40px;
  cursor: grab;
}

/* Inner track — CSS marquee animation */
.feat-track {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: max-content;
  padding-left: 24px;
  animation: feat-marquee 34s linear infinite;
}

.feat-track:hover {
  animation-play-state: paused;
}

@keyframes feat-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Cards */
.feat-item {
  flex: 0 0 auto;
  width: 240px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.feat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
}

.feat-item__label {
  background: #0d0d0d;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 9px 13px;
  letter-spacing: .02em;
  flex-shrink: 0;
  text-transform: uppercase;
}

.feat-item video,
.feat-item img {
  display: block;
  width: 100%;
  height: auto;
}

/* Standard crop — removes ~48px built-in header bar from asset */
.feat-item--crop .feat-item__img-wrap {
  overflow: hidden;
  clip-path: inset(48px 0 0 0);
  margin-top: -48px;
}

/* Light crop — for Runs Ads 24/7 (smaller header in the image) */
.feat-item--crop-sm .feat-item__img-wrap {
  overflow: hidden;
  clip-path: inset(36px 0 0 0);
  margin-top: -36px;
}

.feat-item--crop .feat-item__img-wrap img,
.feat-item--crop-sm .feat-item__img-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS — STICKY STACKING STEPS
═══════════════════════════════════════════════════════════ */
.steps-section {
  padding: 80px 0 0;
  max-width: var(--max-w);
  margin: 0 auto;
}

.steps-header {
  text-align: center;
  padding: 0 24px 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.steps-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
}

.steps-title {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
}

.steps-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

/* ── Stack container ── */
.steps-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Individual step card ── */
.step-card {
  position: sticky;
  top: calc(72px + (var(--step-idx, 0) * 16px));
  border-radius: 28px;
  margin: 0 16px 24px;
  overflow: hidden;
  height: 480px;
  /* Force uniform height across all cards */

  /* High-end light frosted glass with purple/orange/pink gradient tone */
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%),
    linear-gradient(120deg, rgba(168, 85, 247, 0.12), rgba(249, 115, 22, 0.08), rgba(236, 72, 153, 0.12)),
    var(--bg, #fdfdfd);
  backdrop-filter: blur(40px) saturate(120%);
  -webkit-backdrop-filter: blur(40px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 1);

  /* Scale and dim animation based on JS scroll --progress */
  --progress: 0;
  transform: scale(calc(1 - (var(--progress) * 0.04))) translateY(calc(var(--progress) * -20px));
  transform-origin: top center;
  /* Dimming in light mode requires less brightness drop, maybe add some grayscale */
  filter: brightness(calc(1 - (var(--progress) * 0.15))) saturate(calc(1 - (var(--progress) * 0.4)));
  will-change: transform, filter;
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Glowing ambient blobs behind the card content */
.step-card::before,
.step-card::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.15;
  /* Sits nicely on dark background */
  animation: orb-float 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.step-card::before {
  top: -150px;
  left: -100px;
  background: var(--glow-1, #3b82f6);
}

.step-card::after {
  bottom: -200px;
  right: -100px;
  background: var(--glow-2, #8b5cf6);
  animation-delay: -6s;
}

@keyframes orb-float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, 40px) scale(1.1);
  }

  100% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.step-card--1 {
  --step-idx: 0;
  z-index: 1;
  --glow-1: #3b82f6;
  /* blue */
  --glow-2: #8b5cf6;
  /* purple */
}

.step-card--2 {
  --step-idx: 1;
  z-index: 2;
  --glow-1: #f43f5e;
  /* rose */
  --glow-2: #f59e0b;
  /* amber */
}

.step-card--3 {
  --step-idx: 2;
  z-index: 3;
  --glow-1: #10b981;
  /* emerald */
  --glow-2: #3b82f6;
  /* blue */
}

.step-card--4 {
  --step-idx: 3;
  z-index: 4;
  --glow-1: #eab308;
  /* yellow */
  --glow-2: #ef4444;
  /* red */
}

.step-card--5 {
  --step-idx: 4;
  z-index: 5;
  --glow-1: #6366f1;
  /* indigo */
  --glow-2: #ec4899;
  /* pink */
}

.step-card__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 48px 40px;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 2;
  /* place content above glowing orbs */
}

/* ── Left: text ── */
.step-card__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border-radius: 999px;
  padding: 6px 14px 6px 12px;
  width: fit-content;
}

.step-pill__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #71717a;
}

.step-pill__icon {
  font-size: 16px;
  line-height: 1;
  color: #a855f7;
  /* Matching the purple tone */
}

.step-card__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.6px;
  color: #09090b;
}

.step-card__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #52525b;
  max-width: 400px;
}

/* ── Right: visual widget container ── */
.step-card__right {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.step-card__img {
  width: 100%;
  max-width: 440px;
  height: 100%;
  max-height: 340px;
  /* Constrain image size to fit height uniformly */
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.12));
  animation: elegant-float 6s ease-in-out infinite alternate;
}

@keyframes elegant-float {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-12px);
  }
}

/* ── Responsive ── */
@media (max-width: 800px) {
  .step-card__inner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .step-card__right {
    display: none;
  }

  .step-card {
    margin: 0 8px 12px;
  }
}

/* ═══════════════════════════════════════════════════════════
   VIDEO SECTION
═══════════════════════════════════════════════════════════ */
.video-section {
  padding: 64px 24px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .14);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-thumbnail {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 68px;
  height: 48px;
  transition: transform 0.15s ease;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-btn svg {
  width: 68px;
  height: 48px;
}

/* ═══════════════════════════════════════════════════════════
   PITCH / COPY SECTION
═══════════════════════════════════════════════════════════ */
.pitch-section {
  padding: 64px 24px;
  background: var(--bg);
}

.pitch-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pitch__title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
}

.pitch__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pitch__body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
}

.pitch__body strong {
  color: var(--text);
  font-weight: 700;
}

.pitch__price {
  color: #16a34a;
  font-size: 1.1em;
}

.pitch__closer {
  font-size: 18px !important;
  color: var(--text) !important;
  font-weight: 600;
}

.pitch__closer em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════
   COMPARISON TABLE
═══════════════════════════════════════════════════════════ */
.compare-section {
  padding: 0 24px 96px;
}

.compare-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0, 0, 0, .07);
  overflow: hidden;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table thead tr {
  border-bottom: 1px solid var(--border);
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: center;
  font-size: 14px;
}

.compare-table__feat-col {
  text-align: left !important;
  width: 42%;
}

.compare-table th {
  font-weight: 700;
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 24px;
  padding-bottom: 24px;
}

.compare-table td:first-child {
  text-align: left;
  color: var(--text-muted);
  font-size: 14px;
}

.compare-table tbody tr {
  border-top: 1px solid var(--border);
}

.compare-table tbody tr:hover {
  background: rgba(0, 0, 0, .018);
}

/* Price row */
.compare-table__price-row td {
  font-weight: 800;
  font-size: 22px !important;
  padding-top: 20px;
  padding-bottom: 20px;
}

.compare-table__price-row td:first-child {
  font-size: 14px !important;
  font-weight: 500;
}

.compare-table__muze-price {
  color: #16a34a;
}

.compare-table__agency-price {
  color: #dc2626;
}

.compare-table__inhouse-price {
  color: #dc2626;
}

/* Dim text (cost breakdowns) */
.compare-table__dim {
  color: #b0b0b0;
  font-size: 13px !important;
}

/* Column labels */
.compare-table__neg {
  color: var(--text-muted) !important;
  font-weight: 700;
}

/* Logo in header */
.compare-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  display: block;
  margin: 0 auto;
}

/* Check / cross icons */
.check,
.cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
}

.check {
  background: #16a34a;
}

.cross {
  background: #dc2626;
}

@media (max-width: 600px) {

  .compare-table th,
  .compare-table td {
    padding: 12px 10px;
    font-size: 12px;
  }

  .compare-table__price-row td {
    font-size: 16px !important;
  }

  .check,
  .cross {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }
}

/* ═══════════════════════════════════════════════════════════
   WALL OF LOVE
═══════════════════════════════════════════════════════════ */
.wall-of-love {
  padding: 80px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.wol-header {
  text-align: center;
  margin-bottom: 64px;
}

.wol-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
}

.wol-title span {
  color: #f97316;
}

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

.wol-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wol-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wol-card--dark {
  background: #111111;
  color: white;
}

.wol-card--dark h4 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
}

.wol-card--dark p {
  color: #a1a1aa;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.wol-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

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

.wol-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.wol-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wol-author-name {
  font-weight: 700;
  font-size: 15px;
  color: #09090b;
}

.wol-author-title {
  font-size: 13px;
  color: #71717a;
}

.wol-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: #3f3f46;
}

.wol-stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
}

.wol-trustpilot-stars {
  background: #00b67a;
  color: white;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.wol-trustpilot-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.wol-tweet-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  color: #71717a;
  font-size: 13px;
  font-weight: 500;
}

.wol-tweet-action {
  display: flex;
  align-items: center;
  gap: 6px;
}

.wol-img-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.wol-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wol-stat-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.wol-stat-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.wol-stat-val {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}

.wol-stat-lbl {
  font-size: 13px;
  color: #71717a;
  line-height: 1.5;
}

.wol-brand-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  margin-bottom: 4px;
  object-position: left center;
}

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

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

/* ═══════════════════════════════════════════════════════════
   FEATURES / USE CASES
═══════════════════════════════════════════════════════════ */
.features-section {
  padding: 80px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

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

.feature-block {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.02);
}

.feature-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  color: #09090b;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #52525b;
}

.feature-check {
  color: #3b82f6;
  /* Blue check */
  flex-shrink: 0;
  margin-top: 2px;
}

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

  .feature-block {
    padding: 32px;
  }
}

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq-section {
  padding: 100px 24px;
  background: var(--bg, #fdfdfd);
  display: flex;
  justify-content: center;
}

.faq-container {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-header {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 48px;
  text-align: center;
}

.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 24px;
  font-size: 18px;
  font-weight: 700;
  color: #09090b;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #09090b;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 16px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 16px;
}

details[open] .faq-icon::after {
  transform: rotate(90deg) scale(0);
}

.faq-answer {
  padding: 0 24px 24px 24px;
  font-size: 16px;
  line-height: 1.6;
  color: #52525b;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.main-footer {
  background: #000000;
  color: #ffffff;
  padding: 80px 24px 40px;
  position: relative;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  max-height: 48px !important;
  max-width: 140px !important;
  width: auto !important;
  object-fit: contain;
}

.footer-made-in {
  font-size: 14px;
  color: #a1a1aa;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.footer-links a {
  color: #a1a1aa;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

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

.footer-middle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact p {
  color: #a1a1aa;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #71717a;
  line-height: 1.6;
}

.floating-chat {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
  transition: transform 0.2s;
}

.floating-chat:hover {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    gap: 32px;
  }
}