/* HonestDeed Marketing Site - Purple brand, approachable voice */

:root {
  --purple-900: #2d1b4e;
  --purple-800: #3d2a6b;
  --purple-700: #5c3d99;
  --purple-600: #7c5cbf;
  --purple-500: #8B5CF6;
  --purple-400: #b89ef0;
  --purple-300: #c084fc;
  --purple-200: #e9e0f5;
  --purple-100: #ede5f8;
  --purple-50: #f5f0ff;
  --cream: #fffdf9;
  --charcoal: #1a1a1a;
  --gray-600: #4a4a4a;
  --gray-500: #6b6b6b;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --white: #ffffff;
  --green-500: #22c55e;
  --green-100: #dcfce7;
  /* Footer bar: fixed dark strip (independent of light/dark page tokens) */
  --footer-bg: #1a1a1a;
}

* {
  box-sizing: border-box;
}

/* Accessibility utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background: var(--purple-700);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hidden { display: none !important; }

/* ===================== */
/* HEADER                */
/* ===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 27, 78, 0.06);
  isolation: isolate;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  color: var(--gray-600);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
  position: relative;
}

.nav a:hover {
  color: var(--purple-700);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--purple-500);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.cta-link {
  color: var(--purple-700) !important;
  font-weight: 600 !important;
}

.cta-link::after {
  display: none !important;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 1px;
  transition: transform 0.3s;
}

/* Hero pattern */
.hero-pattern {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(var(--purple-500) 0.5px, transparent 0.5px);
  background-size: 28px 28px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

/* ===================== */
/* BUTTONS               */
/* ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
  color: #ffffff;
  box-shadow: 0 4px 14px -3px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
  background: var(--white);
  color: var(--charcoal);
  border: 1.5px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--purple-300);
  background: var(--purple-50);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-600);
  border: 1.5px solid var(--gray-200);
}

.btn-ghost:hover {
  color: var(--purple-600);
  border-color: var(--purple-300);
}

.theme-toggle {
  min-width: 2.5rem;
  padding: 0.45rem 0.65rem !important;
  flex-shrink: 0;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-lg i {
  margin-left: 0.25rem;
  font-size: 0.8rem;
  transition: transform 0.2s;
}

.btn-lg:hover i {
  transform: translateX(3px);
}

/* ===================== */
/* TOAST                 */
/* ===================== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--charcoal);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-icon {
  color: #4ade80;
}

/* ===================== */
/* SECTION DEFAULTS      */
/* ===================== */
.section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-header .section-intro {
  margin: 0.75rem auto 0;
}

.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 0 2.5rem;
  line-height: 1.7;
}

/* Scroll-reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===================== */
/* HERO                  */
/* ===================== */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

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

.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--charcoal);
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.brand-gradient {
  background: linear-gradient(135deg, var(--purple-500) 0%, var(--purple-300) 50%, var(--purple-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-600);
  max-width: 500px;
  margin: 0 0 2rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-micro {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 1.25rem 0 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-micro::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--green-100);
  color: var(--green-500);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Hero Mockup */
.hero-mockup {
  position: relative;
}

.hero-mockup::before {
  content: '';
  position: absolute;
  inset: -2rem;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.12), transparent 70%);
  border-radius: 3rem;
  z-index: -1;
}

.glass-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 20px 40px -15px rgba(139, 92, 246, 0.12);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mockup-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
}

.mockup-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.15rem;
}

.mockup-subtitle {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin: 0;
}

.mockup-placeholder {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(237, 229, 248, 0.3), rgba(245, 240, 255, 0.5));
  border: 2px dashed rgba(139, 92, 246, 0.15);
  border-radius: 1rem;
  text-align: center;
}

.mockup-placeholder i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  display: block;
}

.mockup-placeholder p {
  color: var(--gray-500);
  font-weight: 500;
  margin: 0;
  font-size: 0.95rem;
}

/* Deal preview mockup */
.mockup-deal-preview {
  padding: 0.25rem 0 0;
}
.mockup-deal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}
.mockup-deal-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
}
.mockup-deal-value {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
}
.mockup-deal-divider {
  height: 1px;
  background: rgba(139, 92, 246, 0.12);
  margin: 0.25rem 0;
}
.mockup-deal-highlight {
  background: linear-gradient(135deg, rgba(245, 240, 255, 0.6), rgba(237, 229, 248, 0.4));
  border-radius: 10px;
  padding: 0.625rem 0.75rem;
  margin: 0.25rem -0.75rem;
}
.mockup-deal-highlight .mockup-deal-label {
  color: var(--purple-700);
  font-weight: 600;
}
.mockup-deal-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--purple-600);
}
.mockup-deal-badges {
  display: flex;
  gap: 8px;
  margin-top: 0.75rem;
}
.mockup-deal-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--green-500);
  background: var(--green-100);
  padding: 4px 10px;
  border-radius: 99px;
}
.mockup-deal-badge i {
  font-size: 0.625rem;
}

/* ===================== */
/* SOCIAL PROOF BAR      */
/* ===================== */
.social-proof-bar {
  background: var(--purple-900);
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}

.social-proof-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1rem;
  position: relative;
}

.proof-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.proof-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.proof-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  max-width: 260px;
  margin: 0 auto;
}

/* ===================== */
/* PROBLEM SECTION       */
/* ===================== */
.problem-section {
  background: var(--white);
  padding: 6rem 0;
}

.problem-section .section-header {
  max-width: 720px;
}

.problem-body {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.problem-body p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1.5rem;
}

.problem-closer {
  font-size: 1.2rem !important;
  color: var(--charcoal) !important;
  margin-top: 2rem !important;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

/* ===================== */
/* THREE PILLARS         */
/* ===================== */
.pillars-section {
  padding: 6rem 0;
}

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

.pillar-card {
  padding: 2.25rem;
  background: var(--white);
  border-radius: 1.25rem;
  border: 1px solid rgba(45, 27, 78, 0.06);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-500), var(--purple-300));
  opacity: 0;
  transition: opacity 0.3s;
}

.pillar-card.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.12);
}

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

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple-50), var(--purple-100));
  color: var(--purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.pillar-badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: linear-gradient(135deg, var(--purple-50), var(--purple-100));
  color: var(--purple-700);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}

.pillar-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.pillar-card p {
  color: var(--gray-600);
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.65;
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
}

.pillar-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--gray-600);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.pillar-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-list li::after {
  content: "\2713";
  position: absolute;
  left: 3px;
  top: 0.35em;
  color: var(--green-500);
  font-weight: 700;
  font-size: 0.65rem;
  line-height: 16px;
}

.pillar-works-for {
  font-size: 0.88rem !important;
  color: var(--gray-500) !important;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(45, 27, 78, 0.06);
}

.pillar-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--purple-600);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: gap 0.2s;
}

.pillar-cta:hover {
  color: var(--purple-700);
  gap: 0.65rem;
}

.pillar-cta i {
  font-size: 0.7rem;
}

/* ===================== */
/* HOW IT WORKS          */
/* ===================== */
.how-it-works {
  background: var(--white);
  padding: 6rem 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
  position: relative;
}

/* Connector line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--purple-200), var(--purple-400), var(--purple-200));
  z-index: 0;
}

.step-card {
  padding: 1.75rem 1.25rem;
  background: var(--cream);
  border-radius: 1.25rem;
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(45, 27, 78, 0.04);
  transition: background 0.3s, border-color 0.3s;
}

.step-card:hover {
  background: var(--purple-50);
  border-color: rgba(139, 92, 246, 0.1);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px -2px rgba(139, 92, 246, 0.3);
  position: relative;
}

.step-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 0.5rem;
}

.step-card p {
  color: var(--gray-600);
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.steps-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ===================== */
/* PERSONA PATHS         */
/* ===================== */
.personas-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--purple-50) 100%);
  padding: 6rem 0;
}

.personas-section .section-title,
.personas-section .section-intro {
  text-align: center;
}

.personas-section .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.personas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.persona-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: 1.25rem;
  border: 1px solid rgba(45, 27, 78, 0.06);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.persona-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px -10px rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.12);
}

.persona-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--purple-50), var(--purple-100));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--purple-600);
  font-size: 1.3rem;
  transition: transform 0.3s;
}

.persona-card:hover .persona-icon {
  transform: scale(1.08);
}

.persona-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 0.5rem;
}

.persona-card p {
  color: var(--gray-600);
  font-size: 0.92rem;
  margin: 0 0 1rem;
  line-height: 1.55;
  flex: 1;
}

.persona-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--purple-600);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: gap 0.2s;
}

.persona-cta:hover {
  color: var(--purple-700);
  gap: 0.6rem;
}

.persona-cta i {
  font-size: 0.65rem;
}

/* ===================== */
/* FAQ                   */
/* ===================== */
.faq-section {
  background: var(--white);
  padding: 6rem 0;
}

.faq-section .section-title {
  margin-bottom: 2.5rem;
}

.faq-grid {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  padding: 0;
  background: var(--cream);
  border-radius: 1rem;
  border: 1px solid rgba(45, 27, 78, 0.06);
  overflow: hidden;
  transition: border-color 0.2s;
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  gap: 1rem;
}

.faq-question h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.35;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-toggle {
  transform: rotate(180deg);
  background: var(--purple-600);
  color: #ffffff;
}

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

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
}

.faq-answer-inner p {
  color: var(--gray-600);
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0 0 0.5rem;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-compare {
  color: var(--gray-500) !important;
  font-size: 0.88rem !important;
  font-style: italic;
}

/* ===================== */
/* TESTIMONIALS          */
/* ===================== */
.testimonials-section {
  background: var(--cream);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 1.25rem;
  border: 1px solid rgba(45, 27, 78, 0.06);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #F5A623;
  font-size: 0.8125rem;
}
.testimonial-quote {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--charcoal);
  font-style: normal;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--gray-200);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-50), var(--purple-100));
  color: var(--purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--charcoal);
  margin: 0;
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin: 0;
}

/* ===================== */
/* TRUST BUILDER         */
/* ===================== */
.trust-builder {
  background: var(--cream);
  padding: 6rem 0;
  position: relative;
}

.trust-builder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-400), var(--purple-600));
  border-radius: 2px;
}

.trust-body {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.trust-body p {
  color: var(--gray-600);
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0 0 1.5rem;
}

.trust-body p:last-child {
  margin-bottom: 0;
  color: var(--charcoal);
  font-weight: 600;
}

/* ===================== */
/* FINAL CTA             */
/* ===================== */
.cta-section {
  background: linear-gradient(160deg, var(--purple-900) 0%, var(--purple-800) 40%, var(--purple-700) 100%);
  color: #ffffff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 70%);
  pointer-events: none;
}

.cta-section .section-title,
.cta-section .section-intro {
  color: #ffffff;
}

.cta-section .section-intro {
  opacity: 0.85;
}

.cta-container {
  max-width: 520px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.request-access-fields {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.request-access-fields .signup-input {
  flex: 1;
  min-width: 120px;
}

.signup-form select.signup-input {
  width: 100%;
  cursor: pointer;
}

.request-message {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.2s, background 0.2s;
}

.request-message:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.request-message::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  text-align: left;
}

.consent-checkbox input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--purple-400);
}

.signup-input {
  flex: 1;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: border-color 0.2s, background 0.2s;
}

.signup-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.signup-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.signup-input option {
  color: var(--charcoal);
  background: var(--white);
}

.signup-note {
  font-size: 0.82rem;
  opacity: 0.7;
  margin: 0;
}

.signup-note-top {
  margin-bottom: 1rem;
}

/* ===================== */
/* FORM TRUST BAR        */
/* ===================== */
.form-trust-bar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.25rem 0 1rem;
  flex-wrap: wrap;
}

.form-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.form-trust-item i {
  font-size: 0.8rem;
  color: rgba(139, 92, 246, 0.7);
}

/* ===================== */
/* POST-SUBMIT SUCCESS   */
/* ===================== */
.signup-success {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.signup-success-icon {
  font-size: 2.75rem;
  color: #4ade80;
  margin-bottom: 1rem;
  line-height: 1;
}

.signup-success-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.25rem;
}

.signup-success-sub {
  font-size: 0.95rem;
  opacity: 0.8;
  color: #ffffff;
  margin: 0 0 1.75rem;
}

.signup-success-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  margin-bottom: 2rem;
}

.signup-success-step {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.signup-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 2px;
}

.signup-success-step strong {
  display: block;
  font-size: 0.92rem;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.signup-success-step span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.signup-success-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.signup-success-actions .btn-primary {
  width: 100%;
}

.signup-success-actions .btn-ghost {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

.signup-success-actions .btn-ghost:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-section .btn-primary {
  width: 100%;
  padding: 1rem;
  background: var(--white);
  color: var(--purple-800);
  font-size: 1rem;
  box-shadow: 0 4px 14px -3px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
  background: var(--purple-50);
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.3);
}

/* Talk to Team link */
.talk-to-team {
  margin-top: 0.75rem;
  display: inline-block;
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.9rem;
  border: none !important;
}

.talk-to-team:hover {
  color: #ffffff !important;
}

/* ===================== */
/* FOOTER                */
/* ===================== */
.footer {
  background: var(--footer-bg);
  color: #ffffff;
  padding: 3rem 0 2rem;
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

/* White mark on dark footer — src: images/logo-white.png (see HTML footers) */
.footer-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 1;
}

.footer-tagline {
  font-size: 0.88rem;
  opacity: 0.6;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

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

.admin-link {
  opacity: 0.3;
}

.footer-legal {
  font-size: 0.78rem;
  opacity: 0.4;
  margin: 0;
  width: 100%;
  text-align: center;
  order: 3;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===================== */
/* FOOTER CTA            */
/* ===================== */
.footer-cta {
  background: var(--purple-50);
  padding: 3.5rem 0;
  text-align: center;
  border-top: 1px solid var(--purple-100);
}
.footer-cta-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 1.5rem;
}
.footer-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== */
/* STICKY MOBILE CTA     */
/* ===================== */
.sticky-mobile-cta {
  display: none;
}
@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--cream);
    border-top: 1px solid var(--purple-200);
    padding: 0.75rem 1rem;
    gap: 0.5rem;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  }
  .sticky-mobile-cta.visible {
    transform: translateY(0);
  }
  .sticky-mobile-cta .btn {
    flex: 1;
    text-align: center;
    padding: 0.7rem 1rem;
    font-size: 0.875rem;
  }
  /* Add padding to body so footer isn't hidden behind sticky bar */
  body { padding-bottom: 0; }
  .footer { padding-bottom: 4.5rem; }
}

/* ===================== */
/* QUICK ESTIMATE TEASER */
/* ===================== */
.teaser-section {
  background: var(--white);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.teaser-container {
  max-width: 540px;
  text-align: center;
}
.teaser-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.375rem, 4vw, 1.75rem);
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.5rem;
}
.teaser-subtitle {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin: 0 0 1.5rem;
}
.teaser-calc {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.teaser-input-wrap {
  position: relative;
  width: 100%;
  max-width: 300px;
}
.teaser-dollar {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--purple-500);
}
.teaser-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.25rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  border: 2px solid var(--purple-200);
  border-radius: 14px;
  background: var(--cream);
  text-align: center;
  outline: none;
  transition: border-color 0.2s;
}
.teaser-input:focus {
  border-color: var(--purple-500);
}
.teaser-input::placeholder {
  color: var(--gray-400);
}
.teaser-result {
  width: 100%;
  max-width: 380px;
  background: var(--cream);
  border: 1.5px solid var(--purple-100);
  border-radius: 14px;
  padding: 1rem 1.25rem;
}
.teaser-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.teaser-result-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 500;
}
.teaser-result-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple-600);
}
.teaser-result-sub {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--gray-400);
}
.teaser-calc-link {
  color: var(--purple-500);
  font-weight: 600;
  font-size: 0.75rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.teaser-calc-link:hover {
  text-decoration: underline;
}

/* ===================== */
/* FEATURES (unused now) */
/* ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  padding: 2rem;
  background: #f8fafc;
  border-radius: 1.5rem;
  border: 2px solid transparent;
  transition: transform 0.3s, border-color 0.3s;
}

.feature-card.card-hover:hover {
  transform: translateY(-5px);
  border-color: var(--purple-300);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.feature-icon-box i {
  font-size: 1.25rem;
  color: var(--purple-600);
}

.feature-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 0.5rem;
}

.feature-card p {
  color: var(--gray-600);
  margin: 0;
  font-size: 0.95rem;
}

/* Marketplace */
.marketplace {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
  color: #ffffff;
  padding: 6rem 0;
}

.marketplace-content {
  max-width: 560px;
}

.marketplace-title {
  color: #ffffff !important;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.marketplace-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.marketplace-preview {
  margin-bottom: 2rem;
}

.listing-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
}

.listing-icon {
  font-size: 1.5rem;
  color: var(--purple-300);
}

.listing-title {
  font-weight: 700;
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.listing-terms {
  font-size: 0.875rem;
  color: var(--purple-200);
  margin: 0;
}

/* Tiers */
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tier-card {
  padding: 1.75rem;
  border-radius: 12px;
  border: 2px solid rgba(45, 27, 78, 0.1);
  background: var(--white);
}

.tier-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-800);
  margin: 0 0 0.5rem;
}

.tier-card p {
  color: var(--gray-600);
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.tier-price {
  font-weight: 600 !important;
  color: var(--purple-700) !important;
}

/* Use cases */
.use-cases {
  background: var(--white);
}

.use-case-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 700px;
}

.use-case-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--gray-600);
}

.use-case-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--purple-600);
  font-weight: 700;
}

/* Pricing preview */
.pricing-table {
  max-width: 520px;
  border: 1px solid rgba(45, 27, 78, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(45, 27, 78, 0.06);
  gap: 1rem;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-note {
  background: var(--cream);
}

.pricing-label {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.pricing-value {
  font-weight: 600;
  color: var(--purple-700);
  white-space: nowrap;
}

.how-detail {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--cream);
  border-radius: 1rem;
  text-align: center;
}

.subsection-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 0.75rem;
}

.how-detail p {
  color: var(--gray-600);
  margin: 0;
}

/* ===================== */
/* LEGAL PAGES           */
/* ===================== */
.legal-page {
  position: relative;
  padding: 4rem 0 5rem;
  z-index: 1;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.5rem;
}

.legal-content .legal-date {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin: 0 0 2rem;
}

.legal-content h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--purple-800);
  margin: 2rem 0 0.75rem;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 1.5rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
  color: var(--gray-600);
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-content ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.legal-content a {
  color: var(--purple-600);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--purple-700);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--purple-600);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.legal-back:hover {
  color: var(--purple-700);
}

/* ===================== */
/* RESOURCES PAGE        */
/* ===================== */
.resources-page {
  position: relative;
  padding: 4rem 0 5rem;
  z-index: 1;
}

.resources-hero {
  margin-bottom: 3rem;
}

.resources-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.5rem;
}

.resources-intro {
  font-size: 1.2rem;
  color: var(--gray-600);
  margin: 0;
}

.resources-section,
.blog-section {
  margin-bottom: 4rem;
}

.resources-section .section-title,
.blog-section .section-title {
  margin-bottom: 1rem;
}

.resource-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.resource-card {
  display: block;
  padding: 2rem;
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid rgba(45, 27, 78, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.resource-card:hover {
  border-color: rgba(139, 92, 246, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -8px rgba(139, 92, 246, 0.1);
}

.resource-icon {
  width: 48px;
  height: 48px;
  background: var(--purple-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--purple-600);
  font-size: 1.25rem;
}

.resource-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 0.5rem;
}

.resource-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid rgba(45, 27, 78, 0.06);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.blog-card:hover {
  border-color: rgba(139, 92, 246, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -8px rgba(139, 92, 246, 0.1);
}

.blog-card-link {
  display: block;
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
}

.blog-card-meta {
  font-size: 0.875rem;
  color: var(--purple-600);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.blog-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.blog-read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple-600);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-read-more i {
  font-size: 0.7rem;
}

/* Blog post page */
.blog-post-page .legal-content {
  max-width: 680px;
}

.blog-post-header {
  margin-bottom: 2rem;
}

.blog-post-meta {
  font-size: 0.9rem;
  color: var(--purple-600);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.blog-post h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.2;
}

.blog-post-body {
  line-height: 1.7;
}

.blog-post-body h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 2rem 0 1rem;
}

.blog-post-body h2:first-child {
  margin-top: 0;
}

.blog-post-body p {
  color: var(--gray-600);
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.blog-post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
  display: block;
}

.blog-post-body a {
  color: var(--purple-600);
  text-decoration: underline;
}

.blog-post-body a:hover {
  color: var(--purple-700);
}

.blog-loading {
  color: var(--gray-600);
  padding: 2rem;
  text-align: center;
}

/* ===================== */
/* TABLET (769-1024px)   */
/* ===================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  /* Header */
  .header .container {
    height: 68px;
  }

  .nav,
  .nav-actions {
    display: none;
  }

  .nav.open {
    display: flex;
  }

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

  .nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.5rem 2rem;
    background: rgba(255, 253, 249, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 27, 78, 0.08);
    gap: 0.25rem;
  }

  .nav a {
    padding: 0.6rem 0;
    font-size: 1rem;
  }

  .nav a::after {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 3.5rem 0 4.5rem;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
  }

  .hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 420px;
  }

  .glass-card {
    padding: 1.5rem;
  }

  .mockup-placeholder {
    padding: 2rem 1.5rem;
  }

  /* Social Proof */
  .social-proof-bar {
    padding: 2.5rem 0;
  }

  .proof-number {
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  }

  .proof-label {
    font-size: 0.8rem;
  }

  /* Sections */
  .section,
  .problem-section,
  .pillars-section,
  .how-it-works,
  .personas-section,
  .faq-section,
  .trust-builder,
  .cta-section,
  .marketplace {
    padding: 4.5rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
  }

  /* Problem */
  .problem-body p {
    font-size: 1rem;
  }

  /* Pillars */
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pillar-card {
    padding: 2rem;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .steps-grid::before {
    display: none;
  }

  .step-card {
    padding: 1.5rem 1rem;
  }

  .step-card p {
    font-size: 0.85rem;
  }

  /* Personas */
  .personas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  /* FAQ */
  .faq-grid {
    max-width: 100%;
  }

  /* CTA */
  .cta-container {
    max-width: 520px;
  }

  .request-access-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .request-access-fields .signup-input {
    min-width: 0;
  }

  .request-access-fields input[type="email"] {
    grid-column: 1 / -1;
  }

  /* Footer */
  .footer-links {
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  /* Extras */
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .tiers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .use-case-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .pricing-table {
    max-width: 100%;
  }

  .resource-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

/* ===================== */
/* MOBILE (<=768px)      */
/* ===================== */
@media (max-width: 768px) {
  body {
    font-size: 1rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  /* Header */
  .nav,
  .nav-actions {
    display: none;
  }

  .nav.open {
    display: flex;
  }

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

  .header .container {
    height: 60px;
  }

  .logo {
    height: 36px;
  }

  .nav {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(255, 253, 249, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 27, 78, 0.08);
    gap: 0.25rem;
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.08);
  }

  .nav a {
    padding: 0.65rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(45, 27, 78, 0.04);
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .nav a::after {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 2rem 0 3rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-mockup {
    order: -1;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    max-width: none;
    margin-bottom: 1.5rem;
  }

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

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
  }

  .hero-micro {
    font-size: 0.82rem;
    margin-top: 1rem;
  }

  .glass-card {
    padding: 1.25rem;
    border-radius: 1.25rem;
  }

  .mockup-header {
    margin-bottom: 1rem;
  }

  .mockup-placeholder {
    padding: 2rem 1.25rem;
  }

  .mockup-placeholder i {
    font-size: 2rem;
  }

  /* Social Proof */
  .social-proof-bar {
    padding: 2rem 0;
  }

  .proof-stats {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .proof-stat {
    padding: 1.25rem 0;
  }

  .proof-stat:not(:last-child)::after {
    display: none;
  }

  .proof-stat:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .proof-number {
    font-size: 1.5rem;
  }

  .proof-label {
    font-size: 0.82rem;
  }

  /* Sections global */
  .section {
    padding: 3rem 0;
  }

  .problem-section,
  .pillars-section,
  .how-it-works,
  .personas-section,
  .faq-section,
  .trust-builder,
  .cta-section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: clamp(1.4rem, 5vw, 1.75rem);
    line-height: 1.25;
  }

  .section-intro {
    font-size: 1rem;
  }

  /* Problem */
  .problem-body p {
    font-size: 0.95rem;
    text-align: left;
    line-height: 1.7;
  }

  .problem-closer {
    text-align: center;
    font-size: 1.05rem !important;
  }

  /* Pillars */
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pillar-card {
    padding: 1.75rem;
  }

  .pillar-card h3 {
    font-size: 1.15rem;
  }

  .pillar-badge {
    font-size: 0.7rem;
    margin-bottom: 1rem;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .steps-grid::before {
    display: none;
  }

  .step-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 1rem;
    text-align: left;
    padding: 1.25rem;
    align-items: start;
  }

  .step-number {
    margin: 0;
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    grid-row: 1 / 3;
    align-self: start;
    margin-top: 0.15rem;
  }

  .step-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .step-card p {
    font-size: 0.88rem;
    grid-column: 2;
  }

  .steps-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .steps-ctas .btn {
    text-align: center;
    justify-content: center;
  }

  /* Personas */
  .personas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .persona-card {
    padding: 1.25rem;
  }

  .persona-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .persona-card h3 {
    font-size: 0.95rem;
  }

  .persona-card p {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .persona-cta {
    font-size: 0.82rem;
  }

  /* FAQ */
  .faq-grid {
    gap: 0.5rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }

  .faq-toggle {
    width: 24px;
    height: 24px;
    font-size: 0.65rem;
  }

  .faq-answer-inner {
    padding: 0 1.25rem 1rem;
  }

  .faq-answer-inner p {
    font-size: 0.9rem;
  }

  /* Trust */
  .trust-body p {
    font-size: 1rem;
    text-align: left;
  }

  /* CTA */
  .cta-section {
    padding: 3.5rem 0;
  }

  .cta-container {
    max-width: 100%;
  }

  .signup-form {
    max-width: 100%;
  }

  .request-access-fields {
    flex-direction: column;
  }

  .request-access-fields .signup-input {
    min-width: 0;
  }

  .signup-input {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }

  .request-message {
    font-size: 0.95rem;
    min-height: 70px;
  }

  .consent-checkbox {
    font-size: 0.8rem;
  }

  .signup-note {
    font-size: 0.78rem;
  }

  .cta-section .btn-primary {
    padding: 0.9rem;
    font-size: 0.95rem;
  }

  .talk-to-team {
    font-size: 0.85rem;
  }

  /* Footer */
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-flex {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-logo {
    height: 32px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-legal {
    order: unset;
    padding-top: 1rem;
  }

  /* Extras */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .resource-cards {
    grid-template-columns: 1fr;
  }

  .pricing-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  /* Reduce animation distance on mobile */
  .reveal {
    transform: translateY(20px);
  }
}

/* ===================== */
/* SMALL MOBILE (<=480px)*/
/* ===================== */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .personas-grid {
    grid-template-columns: 1fr;
  }

  .proof-number {
    font-size: 1.35rem;
  }

  .btn-lg {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* ===================== */
/* DARK THEME            */
/* ===================== */
[data-theme="dark"] {
  color-scheme: dark;
  --cream: #0f0d14;
  --charcoal: #ececf1;
  --gray-600: #a1a1aa;
  --gray-500: #8b8b9a;
  --gray-400: #71717a;
  --gray-200: #3f3f46;
  --white: #1a1624;
  --purple-50: #221c32;
  --purple-100: rgba(237, 229, 248, 0.12);
  --purple-200: rgba(233, 224, 245, 0.18);
}

[data-theme="dark"] .header {
  background: rgba(22, 18, 32, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .hero-pattern {
  opacity: 0.035;
}

[data-theme="dark"] .mobile-menu-btn span {
  background: var(--charcoal);
}

[data-theme="dark"] .glass-card {
  background: rgba(28, 24, 38, 0.92);
  border-color: rgba(139, 92, 246, 0.22);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] .feature-card {
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .mockup-placeholder {
  background: rgba(237, 229, 248, 0.06);
  border-color: rgba(139, 92, 246, 0.2);
}
[data-theme="dark"] .mockup-deal-label {
  color: #8b8b9a;
}
[data-theme="dark"] .mockup-deal-value {
  color: #ececf1;
}
[data-theme="dark"] .mockup-deal-divider {
  background: rgba(139, 92, 246, 0.2);
}
[data-theme="dark"] .mockup-deal-highlight {
  background: rgba(139, 92, 246, 0.1);
}
[data-theme="dark"] .mockup-deal-highlight .mockup-deal-label {
  color: #b89ef0;
}
[data-theme="dark"] .mockup-deal-amount {
  color: #b89ef0;
}
[data-theme="dark"] .mockup-deal-badge {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}

[data-theme="dark"] .toast {
  background: #e4e4e7;
  color: #18181b;
}

[data-theme="dark"] .toast-icon {
  color: #16a34a;
}

[data-theme="dark"] .header .nav,
[data-theme="dark"] .nav.open {
  background: rgba(22, 18, 32, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .theme-toggle {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--gray-400);
}

[data-theme="dark"] .theme-toggle:hover {
  color: var(--purple-300);
  border-color: rgba(196, 181, 253, 0.45);
  background: rgba(139, 92, 246, 0.12);
}

[data-theme="dark"] .btn-secondary {
  background: var(--white);
  border-color: var(--gray-200);
}

[data-theme="dark"] .btn-secondary:hover {
  background: var(--purple-50);
}

[data-theme="dark"] .btn-ghost {
  border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .footer {
  /* Keep same dark strip as light mode */
  background: var(--footer-bg);
  color: #ffffff;
}

/* Text that must stay light on purple / gradient (not “card white” token) */
[data-theme="dark"] .btn-primary {
  color: #ffffff;
}

[data-theme="dark"] .mockup-avatar {
  color: #ffffff;
}

[data-theme="dark"] .social-proof-bar .proof-number {
  color: #fafafa;
}

[data-theme="dark"] .step-number {
  color: #ffffff;
}

[data-theme="dark"] .faq-item.open .faq-toggle {
  color: #ffffff;
}

[data-theme="dark"] .marketplace,
[data-theme="dark"] .marketplace-title {
  color: #fafafa !important;
}

[data-theme="dark"] .cta-section,
[data-theme="dark"] .cta-section .section-title,
[data-theme="dark"] .cta-section .section-intro {
  color: #fafafa;
}

[data-theme="dark"] .signup-input,
[data-theme="dark"] .request-message {
  color: #fafafa;
}

[data-theme="dark"] .signup-input option {
  color: #1a1a1a;
  background: #fafafa;
}

[data-theme="dark"] .talk-to-team:hover {
  color: #ffffff !important;
}

[data-theme="dark"] .cta-section .btn-primary {
  background: #fafafa;
  color: var(--purple-900);
}

[data-theme="dark"] .cta-section .btn-primary:hover {
  background: #ffffff;
  color: var(--purple-900);
}

/* Dark mode — form trust bar */
[data-theme="dark"] .form-trust-item {
  color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .form-trust-item i {
  color: rgba(184, 158, 240, 0.6);
}

/* Dark mode — signup success state */
[data-theme="dark"] .signup-success-icon {
  color: #4ade80;
}

[data-theme="dark"] .signup-success-title,
[data-theme="dark"] .signup-success-sub,
[data-theme="dark"] .signup-success-step strong {
  color: #ececf1;
}

[data-theme="dark"] .signup-success-step span {
  color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .signup-step-num {
  background: rgba(255, 255, 255, 0.12);
}

/* Dark mode — exit popup (guide-agent) */
[data-theme="dark"] .exit-popup {
  background: #1a1624;
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .exit-popup h3 {
  color: #ececf1;
}

[data-theme="dark"] .exit-popup p {
  color: #a1a1aa;
}

[data-theme="dark"] .exit-popup-icon {
  background: rgba(139, 92, 246, 0.15);
  color: #b89ef0;
}

[data-theme="dark"] .exit-popup-close {
  color: #71717a;
}

[data-theme="dark"] .exit-popup-close:hover {
  color: #ececf1;
}

[data-theme="dark"] .exit-popup-note {
  color: #71717a;
}

/* ── Dark mode — Cards & Sections ── */

/* Pillar cards */
[data-theme="dark"] .pillar-card {
  background: #1e1930;
  border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .pillar-card.card-hover:hover {
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
  border-color: rgba(139, 92, 246, 0.25);
}
[data-theme="dark"] .pillar-badge {
  background: rgba(139, 92, 246, 0.15);
  color: #b89ef0;
}
[data-theme="dark"] .pillar-card h3 {
  color: #ececf1;
}
[data-theme="dark"] .pillar-card p {
  color: #a1a1aa;
}
[data-theme="dark"] .pillar-list li {
  color: #a1a1aa;
}
[data-theme="dark"] .pillar-cta {
  color: #b89ef0;
}
[data-theme="dark"] .pillar-works-for {
  color: #8b8b9a !important;
}

/* Persona cards */
[data-theme="dark"] .persona-card {
  background: #1e1930;
  border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .persona-card:hover {
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.4);
  border-color: rgba(139, 92, 246, 0.25);
}
[data-theme="dark"] .persona-icon {
  background: rgba(139, 92, 246, 0.15);
  color: #b89ef0;
}
[data-theme="dark"] .persona-card h3 {
  color: #ececf1;
}
[data-theme="dark"] .persona-card p {
  color: #a1a1aa;
}
[data-theme="dark"] .persona-cta {
  color: #b89ef0;
}

/* Step cards */
[data-theme="dark"] .step-card {
  background: #1e1930;
  border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .step-card:hover {
  background: #221c32;
  border-color: rgba(139, 92, 246, 0.15);
}
[data-theme="dark"] .step-card h3 {
  color: #ececf1;
}
[data-theme="dark"] .step-card p {
  color: #a1a1aa;
}

/* FAQ section */
[data-theme="dark"] .faq-section {
  background: var(--cream);
}
[data-theme="dark"] .faq-item {
  background: #1e1930;
  border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .faq-item:hover {
  border-color: rgba(139, 92, 246, 0.2);
}
[data-theme="dark"] .faq-question h3 {
  color: #ececf1;
}
[data-theme="dark"] .faq-toggle {
  background: rgba(255, 255, 255, 0.06);
  color: #71717a;
}
[data-theme="dark"] .faq-answer-inner p {
  color: #a1a1aa;
}
[data-theme="dark"] .faq-compare {
  color: #8b8b9a;
}

/* Problem section */
[data-theme="dark"] .problem-section {
  background: var(--cream);
}
[data-theme="dark"] .problem-body p {
  color: #a1a1aa;
}
[data-theme="dark"] .problem-closer strong {
  color: #ececf1 !important;
}

/* Trust builder */
[data-theme="dark"] .trust-builder {
  background: var(--cream);
}
[data-theme="dark"] .trust-body p {
  color: #a1a1aa;
}
[data-theme="dark"] .trust-body p:last-child {
  color: #ececf1;
}

/* Personas section */
[data-theme="dark"] .personas-section {
  background: linear-gradient(180deg, var(--cream) 0%, #1a1624 100%);
}
[data-theme="dark"] .personas-section .section-title,
[data-theme="dark"] .personas-section .section-intro {
  color: #ececf1;
}

/* How it works */
[data-theme="dark"] .how-it-works {
  background: var(--cream);
}

/* Social proof bar (already dark bg, ensure text is light) */
[data-theme="dark"] .social-proof-bar .proof-label {
  color: rgba(255, 255, 255, 0.65);
}

/* Section titles & intros (global) */
[data-theme="dark"] .section-title {
  color: #ececf1;
}
[data-theme="dark"] .section-intro {
  color: #a1a1aa;
}

/* CTA section — ensure signup note text is visible */
[data-theme="dark"] .signup-note {
  color: rgba(255, 255, 255, 0.6);
}

/* Inline quiz CTA section */
[data-theme="dark"] .quiz-cta-section {
  background: linear-gradient(180deg, #1a1624 0%, #221c32 100%);
  border-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .quiz-cta-title {
  color: #ececf1;
}
[data-theme="dark"] .quiz-cta-text {
  color: #a1a1aa;
}
[data-theme="dark"] .quiz-cta-badge {
  background: #F5A623;
  color: #1a1624;
}

/* FAQ quiz nudge */
[data-theme="dark"] .quiz-faq-nudge {
  background: #1e1930;
  border-color: rgba(139, 92, 246, 0.2);
}
[data-theme="dark"] .quiz-faq-nudge span {
  color: #ececf1;
}

/* Testimonials */
[data-theme="dark"] .testimonial-card {
  background: #1e1930;
  border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .testimonial-quote {
  color: #d4d4d8;
}
[data-theme="dark"] .testimonial-name {
  color: #ececf1;
}
[data-theme="dark"] .testimonial-author {
  border-top-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .testimonial-avatar {
  background: rgba(139, 92, 246, 0.15);
  color: #b89ef0;
}

/* Pillar icons */
[data-theme="dark"] .pillar-icon {
  background: rgba(139, 92, 246, 0.15);
  color: #b89ef0;
}

/* Footer CTA */
[data-theme="dark"] .footer-cta {
  background: #1e1930;
  border-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .footer-cta-title {
  color: #ececf1;
}

/* Sticky mobile CTA */
[data-theme="dark"] .sticky-mobile-cta {
  background: #1a1624;
  border-top-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

/* Teaser calculator */
[data-theme="dark"] .teaser-section {
  background: var(--cream);
}
[data-theme="dark"] .teaser-title {
  color: #ececf1;
}
[data-theme="dark"] .teaser-input {
  background: #221c32;
  border-color: rgba(233, 224, 245, 0.18);
  color: #ececf1;
}
[data-theme="dark"] .teaser-result {
  background: #221c32;
  border-color: rgba(233, 224, 245, 0.12);
}
[data-theme="dark"] .teaser-result-value {
  color: #b89ef0;
}
