/* ============ block 1 ============ */
:root {
  --bg-cream: #fdf4ee;
  --bg-peach: #fce8dd;
  --bg-soft-pink: #fde4e1;
  --bg-lavender: #ece8f5;
  --bg-mint: #e0f0e8;
  --ink: #1a1a2e;
  --ink-soft: #4a4a5e;
  --ink-muted: #8a8a9a;
  --pink: #ec4899;
  --orange: #f97316;
  --pink-deep: #db2777;
  --gold: #f59e0b;
  --green: #047857;
  --green-light: #d1fae5;
  --gradient-warm: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
  --gradient-bg: linear-gradient(180deg, #fdf4ee 0%, #fce8dd 100%);
  --gradient-dark: linear-gradient(165deg, #1a1a2e 0%, #2d1b3d 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  --border-soft: rgba(26, 26, 46, 0.08);
  --shadow-card: 0 1px 2px rgba(26, 26, 46, 0.04), 0 8px 24px rgba(236, 72, 153, 0.06);
  --shadow-card-hover: 0 4px 12px rgba(26, 26, 46, 0.06), 0 16px 40px rgba(236, 72, 153, 0.12);
  --shadow-featured: 0 4px 12px rgba(236, 72, 153, 0.15), 0 24px 48px rgba(249, 115, 22, 0.18);
  --shadow-partner: 0 4px 12px rgba(26, 26, 46, 0.2), 0 24px 48px rgba(26, 26, 46, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--gradient-bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Background flourishes */
.bg-flourish {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.bg-flourish-1 {
  top: 120px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.bg-flourish-2 {
  top: 300px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.07) 0%, transparent 70%);
  border-radius: 50%;
}

.bg-flourish-3 {
  top: 1800px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  background: rgba(253, 244, 238, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 36px;
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.logo span {
  color: var(--pink);
}

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 18px;
  height: 1.8px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.8px) rotate(-45deg);
}

/* Mobile menu sheet */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px 28px;
  background: rgba(253, 244, 238, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.mobile-menu-links a {
  display: block;
  padding: 14px 4px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border-soft);
}

.mobile-menu-links a.mobile-login {
  color: var(--ink-soft);
}

.mobile-menu-cta {
  justify-content: center;
  padding: 14px 22px;
  font-size: 15px;
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-login {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-warm);
  color: white;
  box-shadow: 0 4px 14px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--ink);
  border: 1px solid var(--border-soft);
}

.btn-secondary:hover {
  background: var(--bg-cream);
  border-color: var(--pink);
}

.btn-dark {
  background: var(--ink);
  color: white;
}

.btn-dark:hover {
  background: #2a2a3e;
  transform: translateY(-1px);
}

/* Hero */
.hero {
  position: relative;
  padding: 72px 32px 56px;
  max-width: 920px;
  margin: 0 auto;
  z-index: 2;
  text-align: center;
}

/* Subtle background animation layer (sits behind hero, above page bg) */
.hero-bg-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Soft radial wash so text always reads cleanly */
.hero-bg-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(253, 244, 238, 0.92) 0%, rgba(253, 244, 238, 0.55) 45%, transparent 75%);
  pointer-events: none;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
}

.hero-bg-orb.o1 {
  top: -80px;
  left: 8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.35) 0%, transparent 70%);
  animation: drift-1 14s ease-in-out infinite;
}

.hero-bg-orb.o2 {
  top: 40px;
  right: 6%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.32) 0%, transparent 70%);
  animation: drift-2 16s ease-in-out infinite;
}

.hero-bg-orb.o3 {
  bottom: -60px;
  left: 30%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.28) 0%, transparent 70%);
  animation: drift-3 18s ease-in-out infinite;
}

@keyframes drift-1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

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

@keyframes drift-2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

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

@keyframes drift-3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -30px) scale(1.12);
  }
}

/* Floating channel pills in background corners - kept far from text */
.hero-bg-pill {
  position: absolute;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  padding: 8px 14px 8px 8px;
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.06), 0 2px 6px rgba(236, 72, 153, 0.04);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  opacity: 0.7;
  z-index: 1;
}

.hero-bg-pill .pill-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.hero-bg-pill .pill-tick {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(4, 120, 87, 0.5);
  margin-left: 2px;
}

/* Top-left: Email */
.hero-bg-pill.bp-email {
  top: 36px;
  left: 4%;
  animation: bp-float-a 7s ease-in-out infinite;
}

.hero-bg-pill.bp-email .pill-icon {
  background: var(--bg-soft-pink);
}

/* Top-right: WhatsApp */
.hero-bg-pill.bp-whatsapp {
  top: 24px;
  right: 5%;
  animation: bp-float-b 8s ease-in-out infinite 0.5s;
}

.hero-bg-pill.bp-whatsapp .pill-icon {
  background: var(--bg-mint);
}

/* Mid-left: Calls */
.hero-bg-pill.bp-calls {
  top: 46%;
  left: 1%;
  animation: bp-float-a 7.5s ease-in-out infinite 1s;
}

.hero-bg-pill.bp-calls .pill-icon {
  background: var(--bg-peach);
}

/* Mid-right: Landing */
.hero-bg-pill.bp-landing {
  top: 50%;
  right: 1%;
  animation: bp-float-b 8.5s ease-in-out infinite 1.4s;
}

.hero-bg-pill.bp-landing .pill-icon {
  background: var(--bg-lavender);
}

/* Bottom-left: Ads */
.hero-bg-pill.bp-ads {
  bottom: 20px;
  left: 6%;
  animation: bp-float-a 7s ease-in-out infinite 0.8s;
}

.hero-bg-pill.bp-ads .pill-icon {
  background: var(--bg-peach);
}

/* Bottom-right: Leads */
.hero-bg-pill.bp-leads {
  bottom: 28px;
  right: 7%;
  animation: bp-float-b 8s ease-in-out infinite 0.3s;
  background: linear-gradient(135deg, #fff 0%, #fff5f0 100%);
  border-color: rgba(236, 72, 153, 0.18);
  opacity: 0.8;
}

.hero-bg-pill.bp-leads .pill-icon {
  background: var(--gradient-warm);
  color: white;
}

@keyframes bp-float-a {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-10px) translateX(3px);
  }
}

@keyframes bp-float-b {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-8px) translateX(-4px);
  }
}

/* Tiny sparkle dots */
.hero-spark {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 10px rgba(236, 72, 153, 0.6);
  opacity: 0.7;
  z-index: 1;
}

.hero-spark.s1 {
  top: 22%;
  left: 22%;
  animation: spark 4s ease-in-out infinite;
}

.hero-spark.s2 {
  top: 28%;
  right: 24%;
  animation: spark 5s ease-in-out infinite 0.6s;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

.hero-spark.s3 {
  bottom: 30%;
  left: 28%;
  animation: spark 4.5s ease-in-out infinite 1.2s;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.6);
}

.hero-spark.s4 {
  bottom: 24%;
  right: 26%;
  animation: spark 5.5s ease-in-out infinite 0.3s;
}

@keyframes spark {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.6);
    opacity: 1;
  }
}

/* Hero content sits above the bg art */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.04);
}

.hero-pill::before {
  content: "✦";
  color: var(--pink);
  font-size: 12px;
}

h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(38px, 5.6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}

h1 .highlight {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  padding-right: 0.12em;
  margin-right: -0.12em;
}

.hero-sub .highlight {
  color: var(--ink);
  font-weight: 600;
  background: linear-gradient(120deg, rgba(217, 119, 87, 0.18) 0%, rgba(217, 119, 87, 0.28) 100%);
  box-shadow:
    -0.15em 0 0 rgba(217, 119, 87, 0.18),
    0.15em 0 0 rgba(217, 119, 87, 0.28);
  padding: 0 0.05em;
}

.hero-lede {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 500;
  font-style: italic;
  color: var(--pink-deep);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 660px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-sub strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  justify-content: center;
}

.hero-buttons .btn {
  padding: 14px 28px;
  font-size: 15px;
}

.hero-meta {
  font-size: 14px;
  color: var(--ink-muted);
}

.hero-meta strong {
  color: var(--ink);
  font-weight: 600;
}

/* Third-party rating badges */
.rating-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  border-radius: 10px;
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 2px rgba(26, 26, 46, 0.08), 0 8px 20px rgba(26, 26, 46, 0.12);
  color: #fff;
  text-decoration: none;
}

.rating-badge-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.rating-badge-brand-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.rating-badge.capterra .rating-badge-brand-name {
  color: #74cdf5;
}

.rating-badge-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  margin-top: 4px;
  font-size: 11px;
  color: #f59e0b;
  letter-spacing: 1px;
}

.rating-badge-score {
  font-size: 15px;
  font-weight: 700;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.rating-badge-logo {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.rating-badge.software-advice .rating-badge-logo {
  color: #ff7a45;
}

.rating-badge.capterra .rating-badge-logo {
  color: #ff7a45;
}

/* Customer logo strip */
.logo-strip-section {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 32px 48px;
  z-index: 1;
}

.logo-strip-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 28px 36px;
  box-shadow: 0 1px 2px rgba(26, 26, 46, 0.03), 0 6px 20px rgba(236, 72, 153, 0.04);
}

.logo-strip-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.logo-strip-label::before,
.logo-strip-label::after {
  content: "";
  flex: 0 1 80px;
  height: 1px;
  background: var(--border-soft);
}

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px 40px;
}

.logo-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  opacity: 0.7;
  transition: opacity 0.25s ease, color 0.25s ease, transform 0.25s ease;
  cursor: default;
}

.logo-strip-item:hover {
  opacity: 1;
  color: var(--ink);
  transform: translateY(-1px);
}

.logo-strip-item .logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 13px;
  color: white;
  flex-shrink: 0;
  letter-spacing: -0.04em;
}

.logo-strip-item .logo-mark.m1 {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

.logo-strip-item .logo-mark.m2 {
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 50%;
}

.logo-strip-item .logo-mark.m3 {
  background: linear-gradient(135deg, #1a1a2e, #4a4a5e);
}

.logo-strip-item .logo-mark.m4 {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border-radius: 4px;
  transform: rotate(45deg);
}

.logo-strip-item .logo-mark.m4 span {
  transform: rotate(-45deg);
  display: inline-block;
}

.logo-strip-item .logo-mark.m5 {
  background: white;
  color: var(--pink-deep);
  border: 1.5px solid var(--pink);
}

.logo-strip-item .logo-mark.m6 {
  background: linear-gradient(135deg, #047857, #10b981);
}

.logo-strip-item .logo-mark.m7 {
  background: linear-gradient(135deg, #a78bfa, #ec4899);
  border-radius: 50%;
}

.logo-strip-item .logo-name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

/* Stats bar */
.stats-section {
  position: relative;
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 0 32px 60px;
  z-index: 1;
}

.stats-card {
  background: var(--gradient-warm);
  border-radius: 24px;
  padding: 36px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-featured);
}

.stats-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.stat {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stat:last-child {
  border-right: none;
}

.stat-value {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  font-weight: 500;
}

/* Section headings shared */
.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink);
  margin-bottom: 16px;
  display: block;
}

.section-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-headline em {
  color: var(--pink);
  font-style: italic;
}

.section-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.55;
}

/* Capabilities (3-column flow) */
.capabilities {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px 80px;
  z-index: 1;
}

.capabilities-header {
  text-align: center;
  margin-bottom: 56px;
}

.capabilities-header .section-sub {
  margin: 0 auto;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap 0.2s ease, opacity 0.2s ease;
}

.section-link:hover {
  gap: 10px;
  opacity: 0.85;
}

.capabilities-footer {
  text-align: center;
  margin-top: 40px;
}

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

.stats-footer {
  text-align: center;
  margin-top: 28px;
}

.logo-strip-footer {
  text-align: center;
  margin-top: 24px;
}

.logo-strip-link {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.logo-strip-link:hover {
  opacity: 0.85;
}

.mockup-nurture {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nurture-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 12px;
  background: linear-gradient(135deg, #ece8f5 0%, #d8d0ec 100%);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #4b3a78;
  margin-bottom: 14px;
}

.nurture-trigger-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7c5cd6;
  box-shadow: 0 0 0 4px rgba(124, 92, 214, 0.18);
}

.nurture-step {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #fafafd;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
}

.nurture-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
}

.nurture-step-icon.email {
  background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
}

.nurture-step-icon.whatsapp {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.nurture-step-icon.call {
  background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
}

.nurture-step-icon.ad {
  background: linear-gradient(135deg, #6366f1 0%, #7c5cd6 100%);
}

.nurture-step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.nurture-step-meta {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 2px;
}

.nurture-step-status {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.nurture-step-status.done {
  background: #d1fae5;
  color: #047857;
}

.nurture-step-status.live {
  background: #fde4e1;
  color: #db2777;
}

.nurture-step-status.next {
  background: #fce8dd;
  color: #c2410c;
}

.nurture-step-status.queued {
  background: #ece8f5;
  color: #5b4a9a;
}

.nurture-rail {
  width: 2px;
  height: 16px;
  background: linear-gradient(180deg, rgba(124, 92, 214, 0.4), rgba(124, 92, 214, 0.1));
  margin-left: 29px;
}

.feature-eyebrow.purple {
  color: #5b4a9a;
}

.capability-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
}

.capability-card {
  background: white;
  border-radius: 22px;
  padding: 32px 28px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.capability-card.middle {
  background: linear-gradient(165deg, #fff 0%, #fff5f0 100%);
  border: 1.5px solid rgba(236, 72, 153, 0.18);
}

.capability-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin-bottom: 10px;
}

.capability-card.middle .capability-eyebrow {
  color: var(--pink-deep);
}

.capability-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.capability-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 42px;
}

.capability-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.capability-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  padding: 8px 12px;
  background: var(--bg-cream);
  border-radius: 10px;
  border: 1px solid rgba(26, 26, 46, 0.04);
}

.capability-list li .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.capability-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 22px;
  opacity: 0.6;
}

/* Problem statement */
.problem-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.problem-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4.2vw, 42px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.problem-headline em {
  color: var(--pink);
  font-style: italic;
}

.problem-headline .strike {
  text-decoration: line-through;
  text-decoration-color: rgba(236, 72, 153, 0.5);
  text-decoration-thickness: 2px;
  color: var(--ink-muted);
  font-style: normal;
  font-weight: 500;
}

/* Personas */
.personas-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 100px;
  position: relative;
  z-index: 1;
}

.personas-intro {
  text-align: center;
  margin-bottom: 48px;
}

.personas-intro .accent {
  color: var(--pink);
  font-weight: 600;
}

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

.persona-card {
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

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

.persona-card.cream {
  background: var(--bg-soft-pink);
}

.persona-card.peach {
  background: linear-gradient(165deg, #fce8dd 0%, #fbd7c2 100%);
}

.persona-card.lavender {
  background: var(--bg-lavender);
}

.persona-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.06);
  font-size: 22px;
}

.persona-title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.persona-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 24px;
  flex-grow: 1;
}

.persona-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  align-self: flex-start;
}

.persona-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 8px rgba(236, 72, 153, 0.5);
}

/* Feature highlights (alternating layout) */
.feature-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 60px;
  position: relative;
  z-index: 1;
}

.feature-row {
  background: white;
  border-radius: 28px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  padding: 56px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.feature-row.tinted-pink {
  background: linear-gradient(135deg, #fff 0%, #fde4e1 100%);
}

.feature-row.tinted-mint {
  background: linear-gradient(135deg, #fff 0%, #e0f0e8 100%);
}

.feature-row.tinted-peach {
  background: linear-gradient(135deg, #fff 0%, #fce8dd 100%);
}

.feature-row.tinted-lavender {
  background: linear-gradient(135deg, #fff 0%, #ece8f5 100%);
}

.feature-row.reverse .feature-content {
  order: 2;
}

.feature-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink);
  margin-bottom: 16px;
}

.feature-eyebrow.green {
  color: var(--green);
}

.feature-eyebrow.orange {
  color: #b45309;
}

.feature-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.feature-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.feature-title em {
  color: var(--pink);
  font-style: italic;
}

.feature-desc {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}

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

.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.feature-bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  background: var(--bg-peach);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6L5 8.5L9.5 4' stroke='%23ec4899' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Visual mockups inside feature rows */
.feature-visual {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Email mockup */
.mockup-email {
  background: white;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(26, 26, 46, 0.1);
  width: 100%;
  max-width: 380px;
  border: 1px solid var(--border-soft);
}

.mockup-email-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 16px;
}

.mockup-email-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-email-dot.red {
  background: #ff5f57;
}

.mockup-email-dot.yellow {
  background: #febc2e;
}

.mockup-email-dot.green {
  background: #28c940;
}

.mockup-email-prompt {
  background: var(--bg-cream);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-style: italic;
}

.mockup-email-template {
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
  border: 1px solid rgba(236, 72, 153, 0.15);
}

.mockup-email-template-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mockup-email-template-title {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.mockup-email-template-sub {
  font-size: 11px;
  color: var(--ink-muted);
}

.mockup-followups {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-followup {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg-cream);
  border-radius: 10px;
  font-size: 12px;
}

.mockup-followup-num {
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--pink);
  font-size: 11px;
  flex-shrink: 0;
}

.mockup-followup-text {
  flex-grow: 1;
  color: var(--ink-soft);
}

.mockup-followup-time {
  font-size: 10px;
  color: var(--ink-muted);
  white-space: nowrap;
}

/* WhatsApp mockup */
.mockup-whatsapp {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mockup-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mockup-stat-card {
  background: white;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.06);
  border: 1px solid var(--border-soft);
}

.mockup-stat-label {
  font-size: 11px;
  color: var(--ink-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.mockup-stat-value {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.mockup-stat-trend {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}

.mockup-funnel {
  background: white;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.06);
  border: 1px solid var(--border-soft);
}

.mockup-funnel-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.funnel-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.funnel-bar:last-child {
  margin-bottom: 0;
}

.funnel-bar-label {
  font-size: 11px;
  color: var(--ink-soft);
  width: 60px;
  flex-shrink: 0;
}

.funnel-bar-track {
  flex-grow: 1;
  height: 8px;
  background: var(--bg-cream);
  border-radius: 100px;
  overflow: hidden;
}

.funnel-bar-fill {
  height: 100%;
  background: var(--gradient-warm);
  border-radius: 100px;
}

.funnel-bar-value {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  width: 40px;
  text-align: right;
}

/* Power dialer mockup */
.mockup-dialer {
  width: 100%;
  max-width: 380px;
  background: white;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 32px rgba(26, 26, 46, 0.1);
  border: 1px solid var(--border-soft);
}

.mockup-dialer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 16px;
}

.mockup-dialer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(4, 120, 87, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(4, 120, 87, 0);
  }
}

.mockup-dialer-time {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.mockup-dialer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.mockup-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.mockup-avatar.peach {
  background: linear-gradient(135deg, #f97316, #f59e0b);
}

.mockup-avatar.lavender {
  background: linear-gradient(135deg, #a78bfa, #ec4899);
}

.mockup-contact-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 2px;
}

.mockup-contact-role {
  font-size: 12px;
  color: var(--ink-muted);
}

.mockup-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.mockup-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mockup-tag.warm {
  background: var(--green-light);
  color: var(--green);
}

.mockup-tag.high {
  background: rgba(236, 72, 153, 0.12);
  color: var(--pink-deep);
}

.mockup-note {
  background: var(--bg-cream);
  border-left: 3px solid var(--pink);
  padding: 10px 12px;
  border-radius: 0 8px 8px 0;
  font-size: 12px;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1.45;
}

.mockup-queue-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.mockup-queue {
  display: flex;
  gap: 6px;
}

.mockup-queue-item {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-soft);
  border: 2px solid white;
}

.mockup-queue-item.first {
  background: var(--gradient-warm);
  color: white;
}

/* Comparison */
.compare-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 32px 80px;
  position: relative;
  z-index: 1;
}

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

.compare-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink);
  margin-bottom: 14px;
}

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

.compare-card {
  background: white;
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.compare-card.featured {
  background: linear-gradient(165deg, #fff 0%, #fff5f0 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: var(--shadow-featured);
  position: relative;
}

.compare-card.featured::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  padding: 2px;
  background: var(--gradient-warm);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.compare-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-warm);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.compare-card-name {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.015em;
  margin-top: 8px;
}

.compare-card.featured .compare-card-name {
  color: var(--pink-deep);
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.compare-list .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  background: var(--bg-peach);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6L5 8.5L9.5 4' stroke='%23ec4899' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.compare-list .cross {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  background: rgba(26, 26, 46, 0.06);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 3L9 9M9 3L3 9' stroke='%238a8a9a' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.compare-item-content {
  flex-grow: 1;
}

.compare-item-title {
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 2px;
}

.compare-card:not(.featured) .compare-item-title {
  color: var(--ink-soft);
}

.compare-item-desc {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.45;
}

/* Reviews */
.reviews-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
  position: relative;
  z-index: 1;
}

.reviews-card {
  background: white;
  border-radius: 28px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
}

.reviews-intro {
  background: linear-gradient(165deg, #fff5f0 0%, #fce8dd 100%);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reviews-intro-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink);
  margin-bottom: 16px;
}

.reviews-intro-headline {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.reviews-intro-headline em {
  color: var(--pink);
  font-style: italic;
}

.reviews-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.reviews-star {
  color: #00b67a;
  font-size: 18px;
}

.reviews-rating-text {
  font-size: 13px;
  color: var(--ink-muted);
}

.reviews-rating-text strong {
  color: var(--ink);
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 36px;
  gap: 28px;
}

.review-item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.review-video {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 16 / 10;
  cursor: pointer;
  background: var(--gradient-dark);
  border: 1px solid var(--border-soft);
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  text-decoration: none;
}

.review-video:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.18);
}

.review-video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

.review-video:hover .review-video-thumb {
  opacity: 1;
  transform: scale(1.04);
}

.review-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.0) 40%, rgba(26, 26, 46, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-video-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease;
}

.review-video:hover .review-video-play {
  transform: scale(1.08);
}

.review-video-play::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 14px solid var(--pink);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}

.review-video-meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: white;
  z-index: 1;
}

.review-video-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-video-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.7);
}

.review-video-duration {
  font-size: 11px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.5);
  padding: 3px 8px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

/* Watch story link inside text-only reviews */
.review-watch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pink);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.review-watch:hover {
  color: var(--pink-deep);
  gap: 11px;
}

.review-watch-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(236, 72, 153, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.review-watch-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid var(--pink);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  margin-left: 2px;
}

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.video-modal.open {
  display: flex;
  opacity: 1;
}

.video-modal-frame {
  position: relative;
  width: 100%;
  max-width: 920px;
  aspect-ratio: 16 / 9;
  background: black;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ink);
  transition: transform 0.2s ease;
}

.video-modal-close:hover {
  transform: scale(1.08);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-stars span {
  color: var(--gold);
  font-size: 14px;
}

.review-text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.review-avatar.alt-1 {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.review-avatar.alt-2 {
  background: linear-gradient(135deg, #a78bfa, #ec4899);
}

.review-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
}

.review-role {
  font-size: 12px;
  color: var(--ink-muted);
}

/* Closing CTA */
.closing-cta {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.closing-cta-card {
  background: var(--gradient-warm);
  border-radius: 28px;
  padding: 72px 48px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.closing-cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  border-radius: 50%;
}

.closing-cta-card::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  border-radius: 50%;
}

.closing-cta-content {
  position: relative;
  z-index: 1;
}

.closing-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.closing-cta-badge::before {
  content: "✦";
  font-size: 12px;
}

.closing-cta-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4.5vw, 46px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.closing-cta-headline em {
  font-style: italic;
}

.closing-cta-sub {
  font-size: 17px;
  opacity: 0.95;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.closing-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-light {
  background: white;
  color: var(--ink);
  padding: 14px 28px;
  font-size: 15px;
}

.btn-cta-light:hover {
  background: var(--bg-cream);
  transform: translateY(-1px);
}

.btn-cta-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  padding: 14px 28px;
  font-size: 15px;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 32px;
  text-align: center;
  font-size: 14px;
}

footer a {
  color: white;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1000px) {
  .hero {
    padding: 56px 32px 40px;
  }

  .hero-bg-pill.bp-calls,
  .hero-bg-pill.bp-landing {
    display: none;
  }

  .capability-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .capability-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }

  .persona-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .compare-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 32px;
  }

  .feature-row.reverse .feature-content {
    order: 0;
  }

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

  .reviews-grid {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .stats-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .stat:nth-child(2) {
    border-right: none;
  }

  .logo-strip-card {
    padding: 24px 22px;
  }

  .logo-strip {
    gap: 20px 28px;
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .nav-login-desktop,
  .nav-cta-desktop {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 40px 20px 32px;
  }

  .nav-inner {
    padding: 14px 20px;
  }

  .stats-section,
  .capabilities,
  .problem-section,
  .personas-section,
  .feature-section,
  .compare-section,
  .reviews-section,
  .closing-cta,
  .logo-strip-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stats-card {
    padding: 28px 20px;
  }

  .feature-row {
    padding: 32px 24px;
  }

  .closing-cta-card {
    padding: 56px 24px;
  }

  .reviews-intro {
    padding: 36px 28px;
  }

  .compare-card {
    padding: 32px 24px;
  }

  .persona-card {
    padding: 32px 24px;
    min-height: 0;
  }

  /* Shrink and reposition bg pills so they don't crowd text */
  .hero-bg-pill {
    padding: 6px 12px 6px 6px;
    font-size: 11px;
    opacity: 0.55;
  }

  .hero-bg-pill .pill-icon {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .hero-bg-pill.bp-email {
    top: 12px;
    left: 12px;
  }

  .hero-bg-pill.bp-whatsapp {
    top: 12px;
    right: 12px;
  }

  .hero-bg-pill.bp-ads {
    bottom: 12px;
    left: 12px;
  }

  .hero-bg-pill.bp-leads {
    bottom: 12px;
    right: 12px;
  }

  .hero-bg-orb.o1 {
    width: 220px;
    height: 220px;
  }

  .hero-bg-orb.o2 {
    width: 240px;
    height: 240px;
  }

  .hero-bg-orb.o3 {
    width: 200px;
    height: 200px;
  }

  .logo-strip-item .logo-name {
    font-size: 15px;
  }

  .logo-strip-item .logo-mark {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .stats-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat {
    border-right: none;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* On very small screens, hide bg pills entirely - only the soft orbs remain */
  .hero-bg-pill {
    display: none;
  }

  .hero-spark {
    display: none;
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero-pill {
  animation: fadeUp 0.6s ease 0.1s both;
}

h1 {
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-lede {
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero-sub {
  animation: fadeUp 0.7s ease 0.4s both;
}

.hero-buttons {
  animation: fadeUp 0.7s ease 0.5s both;
}

.hero-meta {
  animation: fadeUp 0.7s ease 0.6s both;
}

.hero-bg-art {
  animation: fadeIn 1.2s ease 0.1s both;
}

.stats-card {
  animation: fadeUp 0.8s ease 0.7s both;
}

.logo-strip-card {
  animation: fadeUp 0.8s ease 0.85s both;
}

/* ============================================
     AI WORKFLOWS SECTION
     ============================================ */
.workflows {
  max-width: 1200px;
  margin: 0 auto 96px;
  padding: 0 32px;
}

.workflows-header {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.workflows-headline {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

.workflows-headline em {
  font-style: italic;
  background: linear-gradient(110deg, #a855f7 0%, #ec4899 45%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.workflows-intro p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.workflows-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wf-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  background: white;
  border: 1px solid var(--border-soft);
  box-shadow: 0 2px 6px rgba(26, 26, 46, 0.04);
}

.wf-chip.pink {
  color: var(--pink-deep);
  background: rgba(236, 72, 153, 0.08);
}

.wf-chip.blue {
  color: #2563eb;
  background: rgba(59, 130, 246, 0.08);
}

.wf-chip.green {
  color: #047857;
  background: rgba(16, 185, 129, 0.10);
}

.wf-chip-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: white;
  font-weight: 700;
}

.wf-chip.pink .wf-chip-dot {
  background: var(--pink);
}

.wf-chip.blue .wf-chip-dot {
  background: #3b82f6;
}

.wf-chip.green .wf-chip-dot {
  background: #10b981;
}

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

.wf-card {
  border-radius: 22px;
  padding: 28px 26px 26px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(26, 26, 46, 0.10);
}

.wf-card.pink {
  background: linear-gradient(160deg, #fde4e1 0%, #fbd0ce 100%);
}

.wf-card.lavender {
  background: linear-gradient(160deg, #ece8f5 0%, #d8d2ee 100%);
}

.wf-card.peach {
  background: linear-gradient(160deg, #fce8dd 0%, #fbd5b9 100%);
}

.wf-card.blue {
  background: linear-gradient(160deg, #dde8f6 0%, #c2d6ee 100%);
}

.wf-card.mint {
  background: linear-gradient(160deg, #d8ecdf 0%, #b8e0c5 100%);
}

.wf-card.wide {
  grid-column: span 1;
}

.wf-card-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.wf-card-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0;
}

.wf-mock {
  background: white;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.06);
  font-size: 12px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wf-mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.wf-mock-title {
  font-weight: 600;
  font-size: 13px;
}

.wf-mock-pill {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wf-mock-pill::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.wf-mock-pill.active {
  color: #047857;
  background: #d1fae5;
}

.wf-mock-pill.online {
  color: #047857;
  background: #d1fae5;
}

.wf-mock-pill.running {
  color: #2563eb;
  background: #dbeafe;
}

.wf-mock-body {
  font-size: 11.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  padding: 10px 12px;
  background: #faf7f4;
  border-radius: 10px;
}

.wf-mock-body .ai-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--pink-deep);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.wf-mock-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  background: #faf7f4;
  border-radius: 10px;
}

.wf-mock-stat-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 11px;
}

.wf-mock-stat-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--gradient-warm);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.wf-mock-stat-value {
  font-weight: 700;
  font-size: 12px;
}

.wf-mock-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--gradient-warm);
  color: white;
  font-weight: 600;
  font-size: 12px;
}

.wf-mock-cta::after {
  content: "↗";
  font-size: 13px;
  margin-left: 6px;
}

/* Chat-style mock */
.wf-chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wf-chat-msg {
  padding: 8px 11px;
  border-radius: 10px;
  font-size: 11.5px;
  line-height: 1.4;
  max-width: 90%;
}

.wf-chat-msg.in {
  background: #faf7f4;
  color: var(--ink-soft);
  align-self: flex-start;
}

.wf-chat-msg.ai {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: white;
  align-self: flex-end;
}

.wf-chat-msg .who {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 3px;
}

/* Bar chart mock */
.wf-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  align-items: end;
  height: 64px;
}

.wf-bar {
  background: linear-gradient(180deg, #fbb377 0%, #f97316 100%);
  border-radius: 4px 4px 2px 2px;
  width: 100%;
}

.wf-bar-label {
  text-align: center;
  font-size: 9px;
  color: var(--ink-muted);
  font-weight: 600;
}

.wf-bars-labels {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 4px;
}

.wf-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.wf-mini-stat {
  text-align: left;
}

.wf-mini-stat-label {
  font-size: 10px;
  color: var(--ink-muted);
  font-weight: 600;
}

.wf-mini-stat-value {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
}

.wf-mini-stat.opened .wf-mini-stat-value {
  color: #8b5cf6;
}

.wf-mini-stat.replied .wf-mini-stat-value {
  color: var(--pink-deep);
}

.wf-mini-stat-delta {
  font-size: 9.5px;
  color: #047857;
  font-weight: 600;
}

/* Follow-up workflow */
.wf-flow {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wf-flow-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #faf7f4;
  font-size: 11.5px;
}

.wf-flow-step.done {
  background: #d1fae5;
}

.wf-flow-step.active {
  background: #dbeafe;
}

.wf-flow-step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  background: white;
  flex-shrink: 0;
}

.wf-flow-step.done .wf-flow-step-num {
  background: #10b981;
  color: white;
}

.wf-flow-step.active .wf-flow-step-num {
  background: #3b82f6;
  color: white;
}

.wf-flow-step-info {
  flex: 1;
  min-width: 0;
}

.wf-flow-step-title {
  font-weight: 600;
  font-size: 11.5px;
}

.wf-flow-step-meta {
  font-size: 10px;
  color: var(--ink-muted);
}

.wf-flow-step-tag {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wf-flow-step.done .wf-flow-step-tag {
  background: white;
  color: #047857;
}

.wf-flow-step.active .wf-flow-step-tag {
  background: white;
  color: #2563eb;
}

/* Conversion engine */
.wf-revenue {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-radius: 10px;
  padding: 12px 14px;
  position: relative;
  overflow: hidden;
}

.wf-revenue-label {
  font-size: 10.5px;
  color: var(--ink-muted);
  font-weight: 600;
}

.wf-revenue-value {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: #047857;
  margin-top: 2px;
}

.wf-revenue-chart {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 60px;
  height: 32px;
  display: flex;
  align-items: end;
  gap: 3px;
}

.wf-revenue-chart span {
  flex: 1;
  background: #10b981;
  border-radius: 2px;
}

.wf-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.wf-stat-cell {
  padding: 8px;
  background: #faf7f4;
  border-radius: 8px;
  text-align: center;
}

.wf-stat-cell-label {
  font-size: 9.5px;
  color: var(--ink-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wf-stat-cell-value {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  margin-top: 2px;
}

/* ============================================
     PERSONA VISUALS
     ============================================ */
.persona-card {
  padding-bottom: 28px;
}

.persona-visual {
  margin-top: 22px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  padding: 16px;
  box-shadow: 0 4px 14px rgba(26, 26, 46, 0.06);
}

/* Founder mock: setup checklist */
.pv-setup {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pv-setup-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
}

.pv-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gradient-warm);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.pv-check::after {
  content: "✓";
}

.pv-check.pending {
  background: white;
  border: 1.5px dashed var(--pink);
  color: transparent;
}

.pv-setup-label {
  flex: 1;
  font-weight: 500;
  color: var(--ink);
}

.pv-setup-status {
  font-size: 10.5px;
  color: var(--ink-muted);
  font-weight: 600;
}

.pv-setup-status.ready {
  color: #047857;
}

.pv-setup-progress {
  margin-top: 4px;
  background: var(--bg-cream);
  height: 6px;
  border-radius: 100px;
  overflow: hidden;
}

.pv-setup-progress-bar {
  height: 100%;
  width: 78%;
  background: var(--gradient-warm);
  border-radius: 100px;
}

/* Sales team mock: team avatars + dashboard */
.pv-team {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.pv-team-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.pv-team-meta {
  font-size: 10.5px;
  color: var(--ink-muted);
}

.pv-avatars {
  display: flex;
  align-items: center;
}

.pv-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2.5px solid white;
  background: var(--gradient-warm);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-left: -8px;
}

.pv-avatar:first-child {
  margin-left: 0;
}

.pv-avatar.a2 {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.pv-avatar.a3 {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.pv-avatar.a4 {
  background: linear-gradient(135deg, #10b981, #059669);
}

.pv-avatar.more {
  background: white;
  color: var(--pink-deep);
  border: 2px solid var(--bg-cream);
}

.pv-team-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pv-team-stat {
  padding: 10px;
  background: var(--bg-cream);
  border-radius: 10px;
}

.pv-team-stat-label {
  font-size: 10px;
  color: var(--ink-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pv-team-stat-value {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 2px;
}

.pv-team-stat-value .delta {
  font-size: 10px;
  color: #047857;
  font-weight: 600;
  margin-left: 4px;
  vertical-align: middle;
}

.pv-team-channels {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pv-channel {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  background: white;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-soft);
  border: 1px solid var(--border-soft);
}

.pv-channel::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
}

/* Service business mock: lead pipeline */
.pv-pipe {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.pv-pipe-title {
  font-size: 12px;
  font-weight: 700;
}

.pv-pipe-count {
  font-size: 10.5px;
  color: var(--ink-muted);
  padding: 2px 8px;
  background: var(--bg-cream);
  border-radius: 100px;
  font-weight: 600;
}

.pv-lead {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--bg-cream);
  font-size: 11.5px;
}

.pv-lead-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pv-lead-mark.hot {
  background: #f97316;
  box-shadow: 0 0 6px rgba(249, 115, 22, 0.5);
}

.pv-lead-mark.warm {
  background: #f59e0b;
}

.pv-lead-mark.cold {
  background: #8b5cf6;
}

.pv-lead-name {
  flex: 1;
  font-weight: 600;
  color: var(--ink);
}

.pv-lead-tag {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 100px;
}

.pv-lead-tag.hot {
  background: rgba(249, 115, 22, 0.15);
  color: #c2410c;
}

.pv-lead-tag.warm {
  background: rgba(245, 158, 11, 0.15);
  color: #b45309;
}

.pv-lead-tag.cold {
  background: rgba(139, 92, 246, 0.15);
  color: #6d28d9;
}

.pv-pipe-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  background: var(--gradient-warm);
  color: white;
  border-radius: 10px;
  font-weight: 600;
  font-size: 12px;
  margin-top: 2px;
}

.pv-pipe-cta::after {
  content: "→";
  font-size: 14px;
}

/* ============================================
     SITE FOOTER
     ============================================ */
.site-footer {
  margin-top: 80px;
  background: linear-gradient(180deg, #fdf2e2 0%, #fbe8c8 100%);
  position: relative;
  overflow: hidden;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px 64px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.4fr;
  gap: 48px;
  position: relative;
}

.footer-brand .footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand .footer-logo span {
  color: var(--pink);
}

.footer-tagline {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 260px;
  margin: 0;
}

.footer-plane {
  position: absolute;
  top: 0;
  right: 28%;
  width: 280px;
  height: 220px;
  pointer-events: none;
  opacity: 0.9;
}

.footer-col-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--pink-deep);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

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

.footer-newsletter-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--pink-deep);
  margin: 0 0 8px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.footer-newsletter-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.footer-form {
  display: flex;
  background: white;
  border-radius: 100px;
  padding: 5px;
  box-shadow: 0 4px 14px rgba(26, 26, 46, 0.08);
  border: 1px solid rgba(26, 26, 46, 0.06);
  max-width: 380px;
}

.footer-form input {
  flex: 1;
  border: 0;
  padding: 12px 18px;
  font-size: 14px;
  background: transparent;
  color: var(--ink);
  outline: none;
  font-family: inherit;
  min-width: 0;
}

.footer-form input::placeholder {
  color: var(--ink-muted);
}

.footer-form button {
  border: 0;
  background: var(--gradient-warm);
  color: white;
  padding: 11px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(236, 72, 153, 0.35);
}

.footer-bottom {
  background: var(--gradient-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 32px 36px;
  position: relative;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: white;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.footer-social:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.footer-social svg {
  width: 22px;
  height: 22px;
}

.footer-social.linkedin {
  background: #0a66c2;
  color: white;
}

.footer-social.x {
  background: #000;
  color: white;
}

.footer-social.facebook {
  background: #1877f2;
  color: white;
}

.footer-social.youtube {
  background: #ff0000;
  color: white;
}

.footer-social.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.footer-divider {
  width: 240px;
  max-width: 60%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.footer-copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.footer-copy strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* ============================================
     RESPONSIVE: workflows + footer + personas
     ============================================ */
@media (max-width: 1000px) {
  .workflows-header {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 80px 28px 56px;
  }

  .footer-newsletter {
    grid-column: span 2;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-plane {
    right: 4%;
    width: 220px;
    height: 180px;
  }
}

/* ============================================
     WORKFLOWS v2 - 5 simple cards with animations
     ============================================ */
.workflows-grid.v2 {
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.workflows-grid.v2>.wf-card:nth-child(1) {
  grid-column: span 2;
}

.workflows-grid.v2>.wf-card:nth-child(2) {
  grid-column: span 2;
}

.workflows-grid.v2>.wf-card:nth-child(3) {
  grid-column: span 2;
}

.workflows-grid.v2>.wf-card:nth-child(4) {
  grid-column: span 3;
}

.workflows-grid.v2>.wf-card:nth-child(5) {
  grid-column: span 3;
}

.wf-card-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wf-card-step {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  background: rgba(255, 255, 255, 0.55);
  padding: 4px 10px;
  border-radius: 100px;
  align-self: flex-start;
}

.wf-card .wf-card-title {
  font-size: 20px;
  line-height: 1.18;
}

.wf-card .wf-card-desc {
  font-size: 13.5px;
  line-height: 1.5;
}

/* Reset workflow gradient cards to softer pastels for readability */
.workflows-grid.v2 .wf-card.pink {
  background: linear-gradient(160deg, #fde4e1 0%, #fbcfca 100%);
}

.workflows-grid.v2 .wf-card.lavender {
  background: linear-gradient(160deg, #ede7f6 0%, #d4ccee 100%);
}

.workflows-grid.v2 .wf-card.peach {
  background: linear-gradient(160deg, #fde8d8 0%, #fbcfaa 100%);
}

.workflows-grid.v2 .wf-card.blue {
  background: linear-gradient(160deg, #dbe7f6 0%, #b9d0ec 100%);
}

.workflows-grid.v2 .wf-card.mint {
  background: linear-gradient(160deg, #d6ecdc 0%, #b3dfbf 100%);
}

/* Mock containers in v2: scoped overrides */
.workflows-grid.v2 .wf-mock {
  padding: 16px;
  min-height: 220px;
  position: relative;
}

/* ============================================
     ANIM 1 - PERSONALIZED EMAIL
     ============================================ */
.anim-email {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ae-to {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(26, 26, 46, 0.08);
}

.ae-to-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ae-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 4px;
  background: rgba(236, 72, 153, 0.10);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
}

.ae-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient-warm);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.ae-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink);
  min-height: 100px;
}

.ae-line {
  opacity: 0;
  transform: translateY(4px);
  animation: ae-type 0.45s ease both;
}

.ae-line em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(120deg, #ec4899, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  padding: 0 2px;
}

.ae-line em::after {
  content: "";
  position: absolute;
  inset: -2px -3px;
  background: rgba(236, 72, 153, 0.10);
  border-radius: 4px;
  z-index: -1;
  animation: ae-pulse 2.4s ease-in-out infinite;
}

.anim-email .ae-l1 {
  animation-delay: 0.2s;
}

.anim-email .ae-l2 {
  animation-delay: 0.9s;
}

.anim-email .ae-l3 {
  animation-delay: 1.6s;
}

.anim-email .ae-l4 {
  animation-delay: 2.3s;
}

.ae-cursor {
  width: 8px;
  height: 14px;
  background: var(--pink);
  display: inline-block;
  animation: ae-blink 0.8s steps(2) infinite;
  animation-delay: 3s;
  opacity: 0;
}

.anim-email .ae-cursor {
  animation: ae-blink 0.8s steps(2) infinite 3s, ae-show 0s linear 2.9s forwards;
}

.ae-meta {
  display: flex;
  justify-content: flex-end;
}

.ae-tag {
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  background: white;
  color: var(--pink-deep);
  box-shadow: 0 2px 6px rgba(236, 72, 153, 0.15);
}

@keyframes ae-type {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ae-blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

@keyframes ae-show {
  to {
    opacity: 1;
  }
}

@keyframes ae-pulse {

  0%,
  100% {
    background: rgba(236, 72, 153, 0.10);
  }

  50% {
    background: rgba(236, 72, 153, 0.22);
  }
}

/* ============================================
     ANIM 2 - LANDING PAGE FROM PROMPT
     ============================================ */
.anim-lp {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-prompt,
.cp-prompt {
  background: #1a1a2e;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11.5px;
  color: #f3eee9;
  line-height: 1.45;
}

.lp-prompt-prefix {
  color: #8b5cf6;
  font-weight: 700;
  margin-right: 6px;
}

.lp-prompt-text {
  border-right: 2px solid #ec4899;
  padding-right: 2px;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
  animation: lp-typewrite 3s steps(60, end) infinite, lp-caret 0.9s steps(2) infinite;
}

@keyframes lp-typewrite {

  0%,
  5% {
    width: 0;
  }

  45%,
  75% {
    width: 100%;
  }

  95%,
  100% {
    width: 0;
  }
}

@keyframes lp-caret {
  50% {
    border-right-color: transparent;
  }
}

.lp-arrow {
  text-align: center;
  color: var(--ink-muted);
  font-size: 16px;
  animation: lp-bounce 1.6s ease-in-out infinite;
}

@keyframes lp-bounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateY(3px);
    opacity: 1;
  }
}

.lp-page {
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: lp-fadeup 1s ease 0.6s both;
}

@keyframes lp-fadeup {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid #f1ebe5;
}

.lp-logo {
  width: 18px;
  height: 6px;
  border-radius: 3px;
  background: var(--ink);
}

.lp-dot {
  width: 16px;
  height: 4px;
  border-radius: 2px;
  background: #e5dfd9;
}

.lp-cta-mini {
  margin-left: auto;
  width: 36px;
  height: 12px;
  border-radius: 100px;
  background: var(--gradient-warm);
}

.lp-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 8px 4px;
}

.lp-bar {
  height: 6px;
  border-radius: 3px;
  background: #e5dfd9;
}

.lp-bar-h {
  width: 75%;
  height: 9px;
  background: var(--ink);
  animation: lp-grow 0.6s ease 1s both;
}

.lp-bar-m {
  width: 55%;
  animation: lp-grow 0.6s ease 1.15s both;
}

@keyframes lp-grow {
  from {
    width: 0;
  }
}

.lp-btn {
  margin-top: 4px;
  background: var(--gradient-warm);
  color: white;
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 9.5px;
  font-weight: 700;
  animation: lp-pop 0.5s ease 1.4s both;
}

@keyframes lp-pop {
  from {
    opacity: 0;
    transform: scale(0.7);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

.lp-tile {
  height: 20px;
  border-radius: 5px;
  background: #f5efe9;
  animation: lp-pop 0.5s ease both;
}

.lp-tile:nth-child(1) {
  animation-delay: 1.6s;
}

.lp-tile:nth-child(2) {
  animation-delay: 1.75s;
}

.lp-tile:nth-child(3) {
  animation-delay: 1.9s;
}

/* ============================================
     ANIM 3 - EMAIL CAMPAIGN FROM PROMPT
     ============================================ */
.anim-camp {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cp-seq {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cp-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  background: white;
  border-radius: 10px;
  font-size: 11.5px;
  opacity: 0;
  transform: translateX(-6px);
  animation: cp-slide 0.5s ease both;
}

.cp-step:nth-child(1) {
  animation-delay: 0.6s;
}

.cp-step:nth-child(2) {
  animation-delay: 1.0s;
}

.cp-step:nth-child(3) {
  animation-delay: 1.4s;
}

@keyframes cp-slide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cp-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  font-weight: 700;
  color: white;
  background: var(--gradient-warm);
  flex-shrink: 0;
}

.cp-step-info {
  flex: 1;
  min-width: 0;
}

.cp-step-title {
  font-weight: 600;
  font-size: 12px;
  color: var(--ink);
}

.cp-step-meta {
  font-size: 10px;
  color: var(--ink-muted);
  margin-top: 1px;
}

.cp-step-status {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 100px;
}

.cp-step-status.sent {
  background: #d1fae5;
  color: #047857;
}

.cp-step-status.queued {
  background: #fef3e7;
  color: #b45309;
}

/* ============================================
     ANIM 4 - CONVERSATION INSIGHTS
     ============================================ */
.anim-conv {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cv-chat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cv-msg {
  padding: 8px 11px;
  border-radius: 12px;
  font-size: 11.5px;
  line-height: 1.4;
  max-width: 88%;
  background: white;
  color: var(--ink);
  opacity: 0;
  animation: cv-msg-in 0.45s ease both;
  position: relative;
}

.cv-msg.cv-in {
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

.cv-msg:nth-child(1) {
  animation-delay: 0.4s;
}

.cv-msg:nth-child(2) {
  animation-delay: 0.9s;
}

.cv-msg:nth-child(3) {
  animation-delay: 1.4s;
}

@keyframes cv-msg-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cv-extract {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  border-top: 2px dashed rgba(37, 99, 235, 0.3);
  animation: cv-msg-in 0.5s ease 1.9s both;
}

.cv-extract-label {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-right: 4px;
}

.cv-topic {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  opacity: 0;
  animation: cv-msg-in 0.4s ease both;
}

.cv-topic.t-objection {
  background: rgba(249, 115, 22, 0.18);
  color: #c2410c;
  animation-delay: 2.2s;
}

.cv-topic.t-compete {
  background: rgba(139, 92, 246, 0.18);
  color: #6d28d9;
  animation-delay: 2.5s;
}

.cv-topic.t-intent {
  background: rgba(16, 185, 129, 0.20);
  color: #047857;
  animation-delay: 2.8s;
}

/* ============================================
     ANIM 5 - VOICE AGENT CALL
     ============================================ */
.anim-call {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 220px;
}

.vc-phone {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-warm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.30);
}

.vc-phone-icon {
  font-size: 28px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

.vc-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--pink);
  animation: vc-ringout 2s ease-out infinite;
  opacity: 0;
}

.vc-ring-2 {
  animation-delay: 1s;
}

@keyframes vc-ringout {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.vc-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.vc-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  background: white;
  border-radius: 10px;
  font-size: 11.5px;
  opacity: 0;
  transform: translateX(-6px);
  animation: cp-slide 0.5s ease both;
}

.vc-r1 {
  animation-delay: 0.5s;
}

.vc-r2 {
  animation-delay: 1.2s;
}

.vc-r3 {
  animation-delay: 1.9s;
}

.vc-r4 {
  animation-delay: 2.6s;
}

.vc-ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #d1fae5;
  color: #047857;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.vc-ico.cal {
  background: rgba(139, 92, 246, 0.18);
  color: #6d28d9;
}

.vc-ico.mail {
  background: rgba(245, 158, 11, 0.18);
  color: #b45309;
}

.vc-text {
  font-weight: 600;
  color: var(--ink);
  flex: 1;
}

/* Responsive */
@media (max-width: 1000px) {
  .workflows-grid.v2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflows-grid.v2>.wf-card:nth-child(n) {
    grid-column: span 1;
  }

  .workflows-grid.v2>.wf-card:nth-child(5) {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .workflows-grid.v2 {
    grid-template-columns: 1fr;
  }

  .workflows-grid.v2>.wf-card:nth-child(n) {
    grid-column: span 1;
  }

  .anim-call {
    flex-direction: column;
    align-items: stretch;
  }

  .vc-phone {
    align-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {

  .ae-line,
  .cp-step,
  .vc-row,
  .cv-msg,
  .cv-extract,
  .cv-topic,
  .lp-page,
  .lp-tile,
  .lp-btn,
  .lp-bar-h,
  .lp-bar-m {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    width: auto !important;
  }

  .lp-bar-h {
    width: 75%;
  }

  .lp-bar-m {
    width: 55%;
  }

  .lp-prompt-text {
    animation: none;
    border-right: none;
    white-space: normal;
  }

  .vc-ring {
    display: none;
  }
}





/* ============================================
FINAL MOBILE + STACKED CARD FIXES
============================================ */

/* Prevent horizontal scrolling everywhere */
html,
body {
  width: 100%;
  overflow-x: clip;
}

body {
  position: relative;
}

/* Prevent decorative elements from causing overflow */
.bg-flourish,
.hero-bg-art,
.hero-bg-orb,
.hero-bg-pill {
  max-width: 100vw;
  overflow: hidden;
}

/* Prevent sections from overflowing */
section,
div,
nav,
footer {
  max-width: 100%;
}

/* Images/videos safety */
img,
video,
svg,
canvas {
  max-width: 100%;
  height: auto;
}

/* ============================================
STACKED FEATURE CARDS
============================================ */

@media (min-width: 1001px) {

  .feature-section {
    position: relative;
    padding-bottom: 180px;
  }

  .feature-row {
    position: sticky;
    top: 110px;
    margin-bottom: 140px;
    transition:
      transform 0.35s ease,
      box-shadow 0.35s ease;
  }

  .feature-row:nth-child(2) {
    top: 130px;
  }

  .feature-row:nth-child(3) {
    top: 150px;
  }

  .feature-row:nth-child(4) {
    top: 170px;
  }

  .feature-row:hover {
    transform: translateY(-4px);
  }
}

/* ============================================
MOBILE FIXES
============================================ */

@media (max-width: 720px) {

  body {
    overflow-x: hidden;
  }

  .hero {
    overflow: hidden;
  }

  /* Remove large floating visuals on mobile */
  .bg-flourish-1,
  .bg-flourish-2,
  .bg-flourish-3,
  .hero-bg-orb {
    display: none;
  }

  /* Make feature cards clean on mobile */
  .feature-row {
    grid-template-columns: 1fr !important;
    padding: 28px 20px !important;
    gap: 24px !important;
    border-radius: 22px;
  }

  .feature-visual {
    min-height: auto;
  }

  .mockup-email,
  .mockup-whatsapp,
  .mockup-dialer,
  .mockup-nurture {
    max-width: 100%;
  }

  /* Prevent stats overflow */
  .stats-card {
    overflow: hidden;
  }

  /* Prevent logo strip overflow */
  .logo-strip {
    justify-content: center;
  }

  /* Better heading sizing */
  h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .section-headline {
    font-size: 34px;
    line-height: 1.15;
  }

  .problem-headline {
    font-size: 32px;
  }
}

.logo img,
.footer-logo img,
.image-257 {
  background: transparent !important;
  background-color: transparent !important;
  mix-blend-mode: normal;
  display: block;
}