/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'neue-haas-unica', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: #0a2540;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ========== LAYOUT ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== NAV (Stripe-style) ========== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.greeting-b {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #EEEDFE;
    padding: 5px 12px;
    border-radius: 20px;
}
.greeting-b .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #534AB7;
}
.greeting-b span {
    font-size: 13px;
    font-weight: 500;
    color: #3C3489;
}
.nav-links a.top-sign-in{
    display: flex;
    gap: 5px;
    align-items: center;
}

/* Offset for WP admin bar when logged in */
.admin-bar nav {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar nav {
    top: 46px;
  }
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: #0a2540;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo svg,
.nav-logo img {
  height: 36px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: #425466;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav-links a:hover { color: #1300FC; }
.nav-cta {
  background: #1300FC;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: background 0.2s;
}
.nav-cta:hover { background: #2a1aff; }

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #0a2540;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
/* Animate to X when open */
.nav-toggle.open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto 0 calc((100vw - 1200px) / 2 + 24px);
  padding-top: 100px;
}
@media (max-width: 1248px) {
  .hero .container { margin-left: 24px; }
}
.hero-label {
  display: inline-block;
  font-size: 17px;
  font-weight: 400;
  color: #061B31;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  color: #0a2540;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero p {
  font-size: 18px;
  line-height: 1.7;
  color: #425466;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1300FC;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.hero-cta:hover { background: #2a1aff; transform: translateY(-1px); }
.hero-cta .arrow { transition: transform 0.2s; }
.hero-cta:hover .arrow { transform: translateX(3px); }
.hero-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1300FC;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid #1300FC;
  transition: all 0.2s;
}
.hero-cta-outline:hover { background: #f0edff; transform: translateY(-1px); }
.hero-cta-outline .google-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.hero-cta-outline .arrow { transition: transform 0.2s; }
.hero-cta-outline:hover .arrow { transform: translateX(3px); }
.hero-note {
  margin-top: 16px;
  font-size: 13px;
  color: #8898aa;
}

/* ========== LOGO MARQUEE ========== */
/* Tech stack heading above logo marquee */
.tech-stack-heading {
  font-size: 20px;
  font-weight: 500;
  color: #0a2540;
  text-align: center;
  line-height: 32px;
  margin: 0 0 16px;
  padding: 0;
  font-family: inherit;
}
section.logo-marquee {
  padding: 40px 0 32px;
  overflow: hidden;
  background: #fff !important;
  border-bottom: 1px solid #e6ebf1;
  position: relative;
}
.logo-marquee::before,
.logo-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 32px;
}
.marquee-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s;
}
.marquee-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== SECTIONS ========== */
section {
  padding: 120px 0;
}
section:nth-child(even) {
  background: #f6f9fc;
}

/* ========== PROBLEM / VALUE SECTIONS (alternating 2-col) ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #0a2540;
  margin-bottom: 20px;
}
.split-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #425466;
  margin-bottom: 24px;
}
.split-visual {
  position: relative;
  background: linear-gradient(135deg, #f6f9fc 0%, #e8f0fe 100%);
  border-radius: 16px;
  padding: 48px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-visual-content {
  text-align: center;
  color: #8898aa;
  font-size: 15px;
}

/* ========== FEATURES GRID (Homepage — animated cards) ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease;
}
.feature-card:nth-child(1) { transition-delay: 0s; }
.feature-card:nth-child(2) { transition-delay: 0.15s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.45s; }
.features-grid.revealed .feature-card { opacity: 1; transform: translateY(0); }
.features-grid.revealed .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(10,37,64,0.10);
}

/* Reuse features-page gradient structure on homepage */
/* ══ HOMEPAGE feature cards — scoped overrides ══ */
.features-header h2 { font-size: 42px; font-weight: 500; margin-bottom: 12px; }
.features-header p { font-size: 18px; }
.features-header { margin-bottom: 56px; }
.features-grid .bb-card-anim-wrap {
  margin: 0 !important;
  width: 100%;
  flex: 1;
  min-height: 260px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  order: 3;
  background: transparent;
}
.features-grid .bb-card-anim {
  width: 100%;
  flex: 1;
  min-height: 260px;
  padding: 48px 28px 28px;
  border-radius: 0 0 16px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f6d047 0%, #f3b38f 25%, #e19ec9 45%, #ac82d8 65%, #6767e1 85%, #0044c4 100%);
}
.features-grid .bb-card-anim::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.85) 40%, rgba(255,255,255,0) 100%);
  z-index: 1;
  pointer-events: none;
}
.features-grid .bb-ui-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  position: relative;
  z-index: 2;
  animation: none;
}
.features-grid .bb-ui-main { width: 72%; max-width: 320px; animation: none; }
.features-grid .bb-ui-stat {
  position: absolute;
  z-index: 5;
  width: auto;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
}
.features-grid .feature-card:nth-child(4) .bb-ui-main { width: 60%; max-width: 240px; }
.features-grid .feature-card:nth-child(1) .bb-ui-stat { left: 8%; top: 35%; }
.features-grid .feature-card:nth-child(2) .bb-ui-stat { right: 8%; top: 25%; }
.features-grid .feature-card:nth-child(3) .bb-ui-stat { left: 5%; top: 20%; }
.features-grid .feature-card:nth-child(4) .bb-ui-stat { right: 8%; top: 32%; }
.feature-card .bb-ui-main { width: 72%; max-width: 320px; }
.feature-card .bb-ui-stat {
  position: absolute;
  z-index: 5;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
}
.feature-card:nth-child(4) .bb-ui-main { width: 60%; max-width: 240px; }
.feature-card:nth-child(1) .bb-ui-stat { left: 8%; top: 35%; }
.feature-card:nth-child(2) .bb-ui-stat { right: 8%; top: 25%; }
.feature-card:nth-child(3) .bb-ui-stat { left: 5%; top: 20%; }
.feature-card:nth-child(4) .bb-ui-stat { right: 8%; top: 32%; }

/* Homepage card float animations (scroll-triggered) */
.feature-card .bb-float-1 {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.feature-card .bb-float-2 {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}
.features-grid.revealed .bb-float-1,
.features-grid.revealed .bb-float-2 {
  opacity: 1; transform: translateY(0);
}

/* h3/p below gradient — match features page */
.feature-card h3 {
  font-size: 28px;
  font-weight: 400;
  line-height: 35px;
  color: #0a2540;
  text-align: left;
  padding: 32px 56px 8px 32px;
  margin: 0;
  position: relative;
}
.feature-card h3 .card-arrow {
  position: absolute;
  top: 32px; right: 20px;
  width: 28px; height: 28px; border-radius: 8px;
  background: #f0f4f8;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.card-arrow svg { width: 13px; height: 13px; stroke: #425466; transition: stroke 0.2s; }
.feature-card:hover .card-arrow { background: #1300FC; transform: translate(2px, -2px); }
.feature-card:hover .card-arrow svg { stroke: #fff; }
.feature-card > p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #425466;
  text-align: left;
  padding: 4px 32px 24px;
  margin: 0;
}

/* ── Attribution mockup ── */
.attr-inner { padding: 16px 18px 0; width: 100%; }
.attr-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.attr-header span { font-size: 11px; font-weight: 600; color: #0a2540; }
.attr-badge { font-size: 9px; color: #1300FC; background: #eef0ff; border-radius: 10px; padding: 2px 8px; font-weight: 600; }
.attr-bars { display: flex; align-items: flex-end; gap: 6px; height: 75px; margin-bottom: 10px; }
.attr-bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.attr-bar { width: 50%; border-radius: 4px 4px 0 0; transform-origin: bottom; transform: scaleY(0); transition: transform 0.6s cubic-bezier(0.34,1.56,0.64,1); }
.features-grid.revealed .attr-bar { transform: scaleY(1); }
.attr-bar-col:nth-child(1) .attr-bar { background: #4267B2; height: 52px; transition-delay: 0.5s; }
.attr-bar-col:nth-child(2) .attr-bar { background: #FF4500; height: 36px; transition-delay: 0.6s; }
.attr-bar-col:nth-child(3) .attr-bar { background: #34A853; height: 65px; transition-delay: 0.7s; }
.attr-bar-col:nth-child(4) .attr-bar { background: #f7b731; height: 28px; transition-delay: 0.8s; }
.attr-bar-col:nth-child(5) .attr-bar { background: #0077B5; height: 46px; transition-delay: 0.9s; }
.attr-bar-col:nth-child(6) .attr-bar { background: #e44d62; height: 32px; transition-delay: 1.0s; }
.attr-icon { display: flex; align-items: center; justify-content: center; }
.attr-icon svg { width: 13px; height: 13px; }
.attr-footer { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid #f0f2f5; padding: 8px 0; }
.attr-footer .num { font-size: 18px; font-weight: 700; color: #0a2540; }
.attr-footer .lbl { font-size: 10px; color: #8492a6; margin-left: 4px; }
.attr-footer .pct { font-size: 11px; font-weight: 600; color: #0fbf84; }
.attr-stat-card { padding: 12px 16px; }
.attr-stat-card .sf-val { font-size: 20px; font-weight: 700; color: #0a2540; }
.attr-stat-card .sf-lbl { font-size: 9px; color: #8492a6; text-transform: uppercase; letter-spacing: 0.04em; }
.attr-stat-card .sf-pct { font-size: 10px; font-weight: 600; color: #0fbf84; margin-top: 2px; }

/* ── Scoring mockup ── */
.score-inner { padding: 16px 18px 0; width: 100%; }
.score-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.score-ring { width: 48px; height: 48px; position: relative; flex-shrink: 0; }
.score-ring svg { width: 48px; height: 48px; transform: rotate(-90deg); }
.score-ring-bg { fill: none; stroke: #f0f2f5; stroke-width: 4; }
.score-ring-fg { fill: none; stroke-width: 4; stroke-linecap: round; stroke-dasharray: 126; stroke-dashoffset: 126; transition: stroke-dashoffset 1.2s cubic-bezier(0.16,1,0.3,1); transition-delay: 0.7s; }
.features-grid.revealed .score-ring-fg { stroke-dashoffset: 13; }
.score-ring .score-num { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #0a2540; }
.score-name { font-size: 13px; font-weight: 650; color: #0a2540; }
.score-co { font-size: 11px; color: #425466; }
.score-badge { display: inline-block; font-size: 8px; font-weight: 700; color: #fff; background: #0fbf84; border-radius: 4px; padding: 2px 7px; letter-spacing: 0.05em; margin-top: 2px; }
.score-bar { height: 5px; border-radius: 3px; background: #f0f2f5; margin-bottom: 12px; overflow: hidden; }
.score-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, #0fbf84 0%, #34d399 100%); width: 0%; transition: width 1s cubic-bezier(0.16,1,0.3,1); transition-delay: 0.8s; }
.features-grid.revealed .score-bar-fill { width: 92%; }
.score-stats { display: flex; border-top: 1px solid #f0f2f5; }
.score-stat { flex: 1; text-align: center; padding: 8px 0; }
.score-stat:not(:last-child) { border-right: 1px solid #f0f2f5; }
.score-stat .v { font-size: 14px; font-weight: 700; color: #0a2540; }
.score-stat .l { font-size: 8px; color: #8492a6; text-transform: uppercase; letter-spacing: 0.06em; }
.score-intent-card { padding: 10px 14px; display: flex; align-items: center; gap: 6px; }
.sif-dot { width: 8px; height: 8px; border-radius: 50%; background: #0fbf84; }
.sif-text { font-size: 10px; font-weight: 600; color: #0a2540; }
.sif-val { font-size: 10px; font-weight: 700; color: #0fbf84; }

/* ── AI Email mockup ── */
.ai-inner { padding: 14px 16px 0; width: 100%; }
.ai-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid #f0f2f5; }
.ai-badge { font-size: 9px; font-weight: 700; color: #7c3aed; background: #f3f0ff; border-radius: 6px; padding: 2px 7px; display: flex; align-items: center; gap: 3px; }
.ai-badge svg { width: 9px; height: 9px; }
.ai-to { font-size: 10px; color: #8492a6; }
.ai-to strong { color: #0a2540; font-weight: 600; }
.ai-subject { font-size: 12px; font-weight: 650; color: #0a2540; margin-bottom: 6px; }
.ai-body { font-size: 10px; color: #425466; line-height: 1.65; margin-bottom: 10px; }
.ai-body .tl { opacity: 0; transform: translateY(4px); transition: opacity 0.4s ease, transform 0.4s ease; }
.features-grid.revealed .ai-body .tl:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }
.features-grid.revealed .ai-body .tl:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.9s; }
.features-grid.revealed .ai-body .tl:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 1.1s; }
.ai-btns { display: flex; gap: 6px; padding-bottom: 12px; }
.ai-btn { font-size: 10px; font-weight: 600; border: none; border-radius: 6px; padding: 5px 14px; cursor: pointer; }
.ai-btn.pri { background: #1300FC; color: #fff; }
.ai-btn.sec { background: #f0f4f8; color: #425466; }
.ai-signals-card { padding: 10px 14px; }
.asf-title { font-size: 8px; font-weight: 700; color: #8492a6; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.asf-items { display: flex; flex-direction: column; gap: 3px; }
.asf-item { font-size: 9px; color: #425466; display: flex; align-items: center; gap: 4px; }
.asf-item .dot { width: 4px; height: 4px; border-radius: 50%; background: #7c3aed; }

/* ── Gated Content mockup ── */
.gate-inner { padding: 22px 24px; width: 100%; text-align: center; max-width: 240px; margin: 0 auto; }
.gate-lock { width: 32px; height: 32px; margin: 0 auto 8px; opacity: 0; transform: scale(0.5); transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1); transition-delay: 0.6s; }
.features-grid.revealed .gate-lock { opacity: 1; transform: scale(1); }
.gate-lock svg { width: 32px; height: 32px; }
.gate-title { font-size: 13px; font-weight: 650; color: #0a2540; margin-bottom: 3px; }
.gate-sub { font-size: 10px; color: #8492a6; margin-bottom: 14px; }
.gate-btns { display: flex; flex-direction: column; gap: 7px; }
.gate-btn { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 11px; font-weight: 600; border-radius: 8px; padding: 9px 14px; border: 1px solid #e6ebf1; background: #fff; cursor: pointer; opacity: 0; transform: translateY(8px); transition: opacity 0.4s ease, transform 0.4s ease, background 0.2s ease; }
.features-grid.revealed .gate-btn:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.75s; }
.features-grid.revealed .gate-btn:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.9s; }
.features-grid.revealed .gate-btn:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 1.05s; }
.gate-btn:hover { background: #f8fafc; border-color: #c9d1da; }
.gate-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.gate-data-card { padding: 10px 14px; }
.gdf-row { display: flex; align-items: center; gap: 5px; }
.gdf-row + .gdf-row { margin-top: 3px; }
.gdf-ico { font-size: 10px; }
.gdf-txt { font-size: 9px; font-weight: 600; color: #0a2540; }
.gdf-val { font-size: 9px; font-weight: 700; color: #0fbf84; margin-left: auto; }



/* Homepage SVG size overrides — prevent .bb-ui-card svg from overriding */
.features-grid .bb-ui-card svg { width: auto; height: auto; display: inline; }
.features-grid .attr-icon svg { width: 13px; height: 13px; }
.features-grid .ai-badge svg { width: 9px; height: 9px; }
.features-grid .gate-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.features-grid .score-ring svg { width: 48px; height: 48px; }
.features-grid .gate-lock svg { width: 32px; height: 32px; }

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card h3 { font-size: 22px; line-height: 28px; }
}
/* ========== POWERED BY SECTION ========== */
.powered-header {
  margin-bottom: 56px;
}
.powered-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #0a2540;
  margin-bottom: 12px;
}
.powered-header p {
  font-size: 18px;
  color: #425466;
}
.powered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.powered-item {
  background: #fff;
  border: 1px solid #e6ebf1;
  border-radius: 12px;
  padding: 28px;
}
.powered-item p {
  font-size: 15px;
  color: #425466;
  line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #0a2540;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #e6ebf1;
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: #425466;
  flex: 1;
  margin-bottom: 24px;
}
.testimonial-author {
  border-top: 1px solid #e6ebf1;
  padding-top: 16px;
}
.testimonial-name {
  font-size: 15px;
  font-weight: 500;
  color: #0a2540;
}
.testimonial-role {
  font-size: 13px;
  color: #8898aa;
  margin-top: 2px;
}

/* ========== CTA SECTION ========== */
.cta-section {
  text-align: center;
  background: #1300FC !important;
  color: #fff;
}
.cta-section h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: #fff;
}
.cta-section p {
  font-size: 18px;
  color: #8898aa;
  margin-bottom: 36px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1300FC;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.cta-btn:hover { background: #f0f0ff; transform: translateY(-1px); }
.cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: #68778d;
}

/* ========== FOOTER ========== */
footer {
  padding: 48px 0;
  border-top: 1px solid #e6ebf1;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-size: 14px;
  color: #8898aa;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #0a2540; }
.footer-copy {
  font-size: 13px;
  color: #8898aa;
}

/* ========== SECTION CTA BUTTONS (inline) ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1300FC;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary:hover { background: #2a1aff; }

/* ========== PRICING PAGE ========== */
.pricing-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: #fff;
}
.pricing-hero .hero-label {
  margin-bottom: 16px;
}
.pricing-hero h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 500;
  line-height: 1.1;
  color: #0a2540;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.pricing-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: #425466;
  max-width: 520px;
  margin: 0 auto;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 0 120px;
}
.pricing-card {
  background: #fff;
  border: 1px solid #e6ebf1;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.pricing-card.featured {
  border-color: #1300FC;
  box-shadow: 0 4px 24px rgba(19, 0, 252, 0.12);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Best value';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #1300FC;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.pricing-card-name {
  font-size: 22px;
  font-weight: 500;
  color: #0a2540;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.pricing-card-tagline {
  font-size: 15px;
  color: #425466;
  line-height: 1.5;
  margin-bottom: 24px;
}
.pricing-card-price {
  font-size: 48px;
  font-weight: 500;
  color: #0a2540;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card-price .period {
  font-size: 16px;
  font-weight: 400;
  color: #8898aa;
  letter-spacing: 0;
}
.pricing-card-price-note {
  font-size: 14px;
  color: #8898aa;
  margin-bottom: 24px;
}
.pricing-card-free {
  font-size: 48px;
  font-weight: 500;
  color: #0a2540;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card-best {
  font-size: 13px;
  font-weight: 500;
  color: #8898aa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.pricing-card-best-text {
  font-size: 15px;
  color: #425466;
  margin-bottom: 28px;
}
.pricing-card-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: auto;
}
.pricing-card-cta.primary {
  background: #1300FC;
  color: #fff;
}
.pricing-card-cta.primary:hover {
  background: #2a1aff;
  transform: translateY(-1px);
}
.pricing-card-cta.secondary {
  background: #f6f9fc;
  color: #0a2540;
  border: 1px solid #e6ebf1;
}
.pricing-card-cta.secondary:hover {
  background: #edf2f7;
  transform: translateY(-1px);
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.pricing-features li {
  font-size: 15px;
  color: #425466;
  line-height: 1.5;
  padding: 8px 0;
  border-bottom: 1px solid #f0f4f8;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-features li::before {
  content: '\2713';
  color: #1300FC;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-divider {
  height: 1px;
  background: #e6ebf1;
  margin: 24px 0;
}
@media (max-width: 900px) {
  .pricing-cards { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* ========== COMPARISON TABLE ========== */
.comparison-section {
  padding: 0 0 120px;
}
.comparison-section .section-intro {
  text-align: center;
  margin-bottom: 56px;
}
.comparison-section .section-intro h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: #0a2540;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.comparison-section .section-intro p {
  font-size: 18px;
  color: #425466;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table colgroup col:first-child { width: 28%; }
.compare-table colgroup col { width: 24%; }

/* Column headers */
.compare-table thead th {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #0a2540;
  text-align: center;
  border-bottom: 2px solid #e6ebf1;
}
.compare-table thead th:first-child {
  text-align: left;
  color: #8898aa;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.compare-table thead th.col-featured {
  color: #1300FC;
}

/* Section headings */
.compare-table .section-row td {
  padding: 40px 20px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #0a2540;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid #0a2540;
}

/* Feature rows */
.compare-table tbody tr.feature-row {
  transition: background 0.15s;
}
.compare-table tbody tr.feature-row:hover {
  background: #f6f9fc;
}
.compare-table tbody tr.feature-row th,
.compare-table tbody tr.feature-row td {
  padding: 14px 20px;
  border-bottom: 1px solid #f0f4f8;
  vertical-align: middle;
}
.compare-table tbody tr.feature-row th {
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  color: #425466;
  line-height: 1.4;
}
.compare-table tbody tr.feature-row th .feature-sub {
  display: block;
  font-size: 12px;
  color: #8898aa;
  font-weight: 400;
  margin-top: 2px;
}
.compare-table tbody tr.feature-row td {
  text-align: center;
  font-size: 14px;
  color: #425466;
}
.compare-table tbody tr.feature-row td strong {
  color: #0a2540;
  font-weight: 600;
}

/* Checkmark */
.compare-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(19, 0, 252, 0.08);
  color: #1300FC;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

/* Dash (not available) */
.compare-dash {
  color: #d1d5db;
  font-size: 18px;
  font-weight: 400;
}

/* Featured column highlight */
.compare-table tbody tr.feature-row td.col-featured {
  background: rgba(19, 0, 252, 0.02);
}
.compare-table thead th.col-featured {
  background: rgba(19, 0, 252, 0.03);
}

/* Bottom CTA row */
.compare-table .cta-row td {
  padding: 28px 20px;
  text-align: center;
  border-bottom: none;
}
.compare-table .cta-row td a {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}
.compare-table .cta-row td a.cta-secondary {
  background: #f6f9fc;
  color: #0a2540;
  border: 1px solid #e6ebf1;
}
.compare-table .cta-row td a.cta-secondary:hover {
  background: #edf2f7;
}
.compare-table .cta-row td a.cta-primary {
  background: #1300FC;
  color: #fff;
}
.compare-table .cta-row td a.cta-primary:hover {
  background: #2a1aff;
}

.pricing-trial-note {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  color: #425466;
  margin-top: 40px;
  line-height: 1.6;
}

/* ========== OPTIMIZE ADD-ONS CARD ========== */
.addons-card {
  background: #fff;
  border: 1px solid #e6ebf1;
  border-radius: 16px;
  padding: 48px 48px 32px;
  margin-bottom: 80px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.addons-card h2 {
  text-align: center;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: #0a2540;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.addons-gradient {
  background: linear-gradient(90deg, #1300FC, #6e5aff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.addons-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
}
.addon-row td {
  padding: 16px 8px;
  border-bottom: 1px dotted #d1d5db;
  vertical-align: middle;
  font-size: 16px;
}
.addon-row:last-child td {
  border-bottom: none;
}
.addon-name {
  color: #425466;
  font-weight: 400;
  width: 65%;
}
.addon-price {
  text-align: right;
  width: 35%;
  color: #0a2540;
}
.addon-price strong {
  font-weight: 700;
}
@media (max-width: 900px) {
  .addons-card {
    padding: 32px 24px 20px;
    margin-bottom: 60px;
  }
  .addon-row td { font-size: 14px; padding: 12px 4px; }
}

/* Responsive: horizontal scroll on mobile */
@media (max-width: 900px) {
  .comparison-section {
    padding: 0 0 80px;
  }
  .compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -24px;
    padding: 0 24px;
  }
  .compare-table {
    min-width: 640px;
  }
}

/* Hide page title bar on block-template pages (they have their own hero) */
.page-template-tpl-blocks .page-header,
.page-template-tpl-tools .page-header,
.page-template-tpl-tools-php .page-header,
.page-template-tpl-agencies .page-header,
.page-template-tpl-agencies-php .page-header,
.page-template-tpl-aboutus .page-header,
.page-template-tpl-aboutus-php .page-header {
  display: none;
}
.page-template-tpl-blocks .page-content,
.page-template-tpl-tools .page-content,
.page-template-tpl-tools-php .page-content,
.page-template-tpl-agencies .page-content,
.page-template-tpl-agencies-php .page-content,
.page-template-tpl-aboutus .page-content,
.page-template-tpl-aboutus-php .page-content {
  padding-top: 140px;
}

/* ========== ABOUT US PAGE ========== */
.about-hero {
  padding: 160px 0 60px;
  text-align: center;
  background: #fff;
}
.about-hero .hero-label {
  display: inline-block;
  font-size: 17px;
  font-weight: 400;
  color: #061B31;
  margin-bottom: 16px;
}
.about-hero h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 500;
  line-height: 1.1;
  color: #0a2540;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.about-hero-text {
  font-size: 19px;
  line-height: 1.6;
  color: #425466;
  max-width: 640px;
  margin: 0 auto;
}
.about-narrow {
  max-width: 720px;
  margin: 0 auto;
}
.about-section {
  padding: 64px 0;
}
.about-section-alt {
  background: #f6f9fc;
}
.about-section h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: #0a2540;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.about-section p {
  font-size: 18px;
  line-height: 1.75;
  color: #425466;
  margin-bottom: 20px;
}
.about-section p:last-child {
  margin-bottom: 0;
}
.about-lead {
  font-size: 20px;
  line-height: 1.7;
  color: #0a2540;
  font-weight: 400;
}
.about-subhead {
  font-size: 19px;
  color: #0a2540;
  font-weight: 500;
  margin-bottom: 24px;
}
.about-highlight {
  font-size: 22px;
  font-weight: 500;
  color: #0a2540;
  letter-spacing: -0.01em;
  margin-top: 28px;
}
.about-hq {
  padding: 80px 0;
  text-align: center;
}
.about-hq-text {
  font-size: 18px;
  font-weight: 500;
  color: #8898aa;
  letter-spacing: -0.01em;
}

/* ========== BLOG / ARCHIVE ========== */
.page-header {
  padding: 160px 0 60px;
  background: #f6f9fc;
}
.page-header h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  color: #0a2540;
  letter-spacing: -0.025em;
}
.page-content {
  padding: 80px 0;
}
.page-content p,
.page-content li {
  font-size: 18px;
  line-height: 1.7;
  color: #425466;
  margin-bottom: 20px;
}
.page-content h2 {
  font-size: 28px;
  font-weight: 500;
  color: #0a2540;
  margin: 40px 0 16px;
}
.page-content h3 {
  font-size: 22px;
  font-weight: 500;
  color: #0a2540;
  margin: 32px 0 12px;
}
.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}
.page-content a {
  color: #1300FC;
  text-decoration: underline;
}
.page-content a:hover {
  color: #2a1aff;
}

/* Post cards for archive */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.post-card {
  background: #fff;
  border: 1px solid #e6ebf1;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.post-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.post-card-image-link {
  display: block;
  text-decoration: none;
  overflow: hidden;
}
.page-content .post-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
  margin: 0;
  border-radius: 0;
}
.post-card:hover .post-card-image {
  transform: scale(1.03);
}
.post-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f6f9fc 0%, #e6ebf1 100%);
}
.placeholder-logo {
  font-size: 28px;
  font-weight: 600;
  color: #c4cdd5;
  letter-spacing: -0.02em;
}
.post-card-body {
  padding: 28px;
}
.post-card-body h2 {
  font-size: 20px;
  font-weight: 500;
  color: #0a2540;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.post-card-body h2 a {
  color: inherit;
  text-decoration: none;
}
.post-card-body h2 a:hover {
  color: #1300FC;
}
.post-card-meta {
  font-size: 13px;
  color: #8898aa;
  margin-bottom: 12px;
}
.post-card-excerpt {
  font-size: 15px;
  line-height: 1.65;
  color: #425466;
  margin-bottom: 16px;
}
.post-card-readmore {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #c9922e;
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.2s;
}
.post-card-readmore:hover {
  color: #a87720;
}

/* Back to blog link */
.back-to-blog {
  display: inline-block;
  font-size: 14px;
  color: #8898aa;
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.back-to-blog:hover {
  color: #0a2540;
}

/* Single post layout */
.single-featured-image {
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
}
.single-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}
.single-post-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #0a2540;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.single-post-date {
  font-size: 14px;
  color: #8898aa;
  margin-bottom: 32px;
}
/* Constrain heading sizes inside blog post content */
.single-post-content .page-content h1 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin: 32px 0 12px;
}
.single-post-content .page-content h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  margin: 28px 0 12px;
}
.single-post-content .page-content h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  margin: 24px 0 8px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}
.pagination a,
.pagination span {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  color: #425466;
  border: 1px solid #e6ebf1;
}
.pagination .current {
  background: #1300FC;
  color: #fff;
  border-color: #1300FC;
}
.pagination a:hover {
  background: #f6f9fc;
}

/* ========== GUTENBERG BLOCK OVERRIDES ========== */
/* Buttons: match Stripe-inspired theme */
.wp-block-button__link,
.wp-element-button {
  background: #1300FC !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-family: 'neue-haas-unica', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.2s;
}
.wp-block-button__link:hover,
.wp-element-button:hover {
  background: #2a1aff !important;
  transform: translateY(-1px);
}

/* Outlined / secondary button variant */
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
  color: #1300FC !important;
  border: 2px solid #1300FC;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: rgba(19, 0, 252, 0.06) !important;
}

/* Headings: theme font and weight */
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.wp-block-heading {
  font-family: 'neue-haas-unica', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  color: #0a2540;
  letter-spacing: -0.02em;
}

/* Cover & group block backgrounds */
.wp-block-cover,
.wp-block-group.has-background {
  border-radius: 16px;
}

/* Features page hero H1 — match homepage hero sizing */
body.page-id-16734 .page-content h1.wp-block-heading {
  font-size: clamp(40px, 5vw, 58px) !important;
  font-weight: 500 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.03em !important;
  margin-bottom: 24px !important;
}

/* Override cream/off-white Gutenberg backgrounds to match theme palette */
.page-content .wp-block-group.has-background {
  background-color: #f6f9fc !important;
}

/* Normalise Gutenberg paragraph weight to 400 (blocks often set 600) */
.page-content .wp-block-group p,
.page-content .wp-block-column p,
.page-content .wp-block-columns p {
  font-weight: 400 !important;
}

/* Separator / divider */
.wp-block-separator {
  border-color: #e6ebf1;
  opacity: 1;
}

/* Columns: consistent gap */
.wp-block-columns {
  gap: 40px;
}

/* Hide "[triangles]" and "What makes BB different?" on features page */
.page-template-tpl-blocks .page-content .wp-block-group__inner-container > h2.has-text-align-center + .wp-block-columns.track-real-people,
body.page-id-16734 .page-content p:empty {
  /* placeholder — JS handles the actual hiding */
}

/* ========== FEATURES PAGE: Stripe-style section intro ========== */

/* "Track real people" heading — large, left-aligned like Stripe */
.bb-cards-section-bg > h2.scroll-top,
.bb-cards-section-bg > h2.wp-block-heading.scroll-top {
  text-align: left !important;
  font-size: clamp(32px, 4vw, 46px) !important;
  font-weight: 400 !important;
  font-family: 'neue-haas-unica', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  color: #0a2540;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 16px !important;
}

/* Description paragraph directly after the heading */
.bb-cards-section-bg > p,
.bb-cards-section-bg > .wp-block-group.content-p,
.bb-cards-section-bg > .wp-block-group.content-p p {
  text-align: left !important;
  font-size: 18px !important;
  line-height: 1.6;
  color: #425466;
  font-weight: 400 !important;
  max-width: 700px;
}

/* ========== FEATURES PAGE: Stripe-style cards ========== */

/* Hide page title on features page */
body.page-id-16734 .page-header {
  display: none !important;
}

/* Full-bleed light section background via ::before pseudo-element */
.bb-cards-section-bg {
  position: relative;
  padding: 64px 0 !important;
}
.bb-cards-section-bg::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #f6f9fc;
  z-index: 0;
}
.bb-cards-section-bg > * {
  position: relative;
  z-index: 1;
}

/* Card grid */
.wp-block-columns.track-real-people {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(590px, auto);
  gap: 32px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
/* Individual cards — no border, white bg with subtle shadow */
.wp-block-columns.track-real-people > .wp-block-column {
  flex-basis: auto !important;
  align-self: stretch !important;
  background: #fff;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, transform 0.3s;
}
.wp-block-columns.track-real-people > .wp-block-column:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
/* Card titles — lighter weight like Stripe (400-500), larger size */
.wp-block-columns.track-real-people > .wp-block-column h3,
.wp-block-columns.track-real-people > .wp-block-column h3.has-text-align-center {
  font-size: clamp(22px, 2.4vw, 28px) !important;
  font-weight: 400 !important;
  font-family: 'neue-haas-unica', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  color: #0a2540;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-align: left !important;
  padding: 32px 56px 8px 32px;
  margin: 0;
  order: 1;
  position: relative;
}
/* Arrow icon — minimal outlined square like Stripe */
.wp-block-columns.track-real-people > .wp-block-column h3::after {
  content: '\2197';
  position: absolute;
  top: 32px;
  right: 24px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: transparent;
  border: 1.5px solid #d0d5dd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a2540;
  font-size: 14px;
  transition: all 0.2s;
}
.wp-block-columns.track-real-people > .wp-block-column:hover h3::after {
  border-color: #1300FC;
  color: #1300FC;
  background: transparent;
}
/* Card description text */
.wp-block-columns.track-real-people > .wp-block-column p,
.wp-block-columns.track-real-people > .wp-block-column p.has-text-align-center {
  font-size: 15px !important;
  line-height: 1.6;
  color: #425466;
  text-align: left !important;
  padding: 4px 32px 24px;
  margin: 0;
  order: 2;
}
/* Image area at bottom of card */
.wp-block-columns.track-real-people > .wp-block-column figure,
.wp-block-columns.track-real-people > .wp-block-column .wp-block-image {
  margin: 0 !important;
  width: 100%;
  flex: 1;
  min-height: 200px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: transparent;
  order: 3;
}
.wp-block-columns.track-real-people > .wp-block-column figure img,
.wp-block-columns.track-real-people > .wp-block-column .wp-block-image img {
  width: auto;
  height: auto;
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  margin: 0 !important;
  border-radius: 0;
}
/* Mobile: single column */
@media (max-width: 900px) {
  .wp-block-columns.track-real-people {
    grid-template-columns: 1fr;
  }
  .bb-cards-section-bg {
    padding: 40px 20px !important;
  }
}

/* ========== CARD ANIMATIONS (Features page) ========== */

/* Wrapper that replaces the figure/image — seamless with card above */
.bb-card-anim-wrap {
  margin: 0 !important;
  width: 100%;
  flex: 1;
  min-height: 260px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  order: 3;
  background: transparent;
}

/* Gradient container — fades from white at top into brand gradient */
.bb-card-anim {
  width: 100%;
  flex: 1;
  min-height: 260px;
  padding: 48px 20px 20px;
  border-radius: 0 0 16px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

/* White fade overlay at top for seamless blend */
.bb-card-anim::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.85) 40%, rgba(255,255,255,0) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ── Floating UI cards (Stripe-style) ── */
.bb-ui-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.bb-ui-card svg {
  width: 100%;
  height: auto;
  display: block;
}
.bb-ui-main {
  width: 88%;
  animation: bb-slide-up 0.8s ease-out both;
}
.bb-ui-stat {
  width: 55%;
  align-self: flex-start;
  margin-left: 6%;
  margin-top: -12px;
  z-index: 3;
  animation: bb-slide-up 0.8s ease-out 0.3s both;
}

/* Float classes — slide in only, no bob */
.bb-float-1 {
  animation: bb-slide-up 0.8s ease-out both;
}
.bb-float-2 {
  animation: bb-slide-up 0.8s ease-out 0.3s both;
}

@keyframes bb-slide-up {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


/* ── 1. Attribution bars (JS-driven cycling) ── */
.bb-bar {
  transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              y 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.bb-range-label,
.bb-conv-num,
.bb-conv-pct,
.bb-conv-sub,
.bb-step,
.bb-src-name,
.bb-src-tag,
.bb-lead-avatar,
.bb-lead-initial,
.bb-lead-name,
.bb-lead-loc,
.bb-lead-email,
.bb-lead-score,
.bb-lead-landing,
.bb-lead-event,
.bb-lead-visits,
.bb-lead-pages,
.bb-lead-title,
.bb-lead-company {
  transition: opacity 0.3s;
}
.bb-logo {
  opacity: 0;
  animation: bb-fade-in 0.5s ease-out forwards;
  animation-delay: 0.6s;
}

/* ── 2. Conversion path ── */
.bb-path-line {
  stroke-dasharray: 350;
  stroke-dashoffset: 350;
  animation: bb-draw-path 2s ease-out 0.5s forwards;
}
@keyframes bb-draw-path {
  to { stroke-dashoffset: 0; }
}
.bb-pulse {
  animation: bb-pulse-ring 2.5s ease-out infinite;
}
.bb-pulse-1 { animation-delay: 1.2s; }
.bb-pulse-2 { animation-delay: 1.8s; }
@keyframes bb-pulse-ring {
  0% { r: 7; opacity: 0.6; }
  100% { r: 20; opacity: 0; }
}
.bb-travel-dot { opacity: 0.9; }

/* ── 3. Engagement / visitor tracking ── */
.bb-score-ring {
  stroke-dasharray: 113;
  stroke-dashoffset: 113;
  animation: bb-score-fill 2s ease-out 0.5s forwards;
}
@keyframes bb-score-fill {
  to { stroke-dashoffset: 15; }
}
.bb-score-text {
  opacity: 0;
  animation: bb-fade-in 0.5s ease-out 1.8s forwards;
}
.bb-engage-bar {
  animation: bb-engage-grow 1.5s ease-out forwards;
}
.bb-engage-1 { animation-delay: 0.8s; animation-name: bb-engage-1-grow; }
.bb-engage-2 { animation-delay: 1.2s; animation-name: bb-engage-2-grow; }
@keyframes bb-engage-1-grow { to { width: 100; } }
@keyframes bb-engage-2-grow { to { width: 75; } }

/* ── 4. Reports / insights ── */
.bb-chart-line {
  stroke-dasharray: 350;
  stroke-dashoffset: 350;
  animation: bb-draw-chart 2s ease-out 0.6s forwards;
}
@keyframes bb-draw-chart {
  to { stroke-dashoffset: 0; }
}
.bb-chart-area {
  opacity: 0;
  animation: bb-fade-in 1s ease-out 1.8s forwards;
}
.bb-chart-dot {
  opacity: 0;
  animation: bb-dot-pop 0.4s ease-out forwards;
}
.bb-cd-1 { animation-delay: 1.2s; }
.bb-cd-2 { animation-delay: 1.6s; }
.bb-cd-3 { animation-delay: 2.0s; }
@keyframes bb-dot-pop {
  0% { opacity: 0; r: 0; }
  60% { r: 3.5; }
  100% { opacity: 1; r: 2.5; }
}

/* ── Report clipped container ── */
.bb-report-clip {
  max-height: 330px;
  overflow: hidden;
  position: relative;
}

/* ── Report scrolling animation ── */
.bb-report-scroll {
  animation: bb-report-scroll 8s ease-in-out infinite;
}
@keyframes bb-report-scroll {
  0%, 12% { transform: translateY(0); }
  44%, 56% { transform: translateY(-45%); }
  88%, 100% { transform: translateY(0); }
}

/* ── Shared keyframes ── */
@keyframes bb-fade-in {
  to { opacity: 1; }
}

/* ========== LANDING PAGE (.bb-landing) ========== */

/* Hide page title */
body.page-id-18202 .page-header {
  display: none !important;
}

/* Base — override container constraints for full-bleed sections */
.bb-landing {
  font-family: 'neue-haas-unica', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0a2540;
}
.bb-landing section {
  position: relative;
  overflow: visible;
}

/* --- Hero: Stripe-style full-viewport with animated gradient (v19) --- */
.bb-landing .hero {
  display: block !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  padding: 80px 0 120px !important;
  overflow: hidden !important;
  position: relative !important;
  background: transparent !important;
}
/* Canvas gradient behind hero */
.bb-landing .hero canvas#gradient {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  pointer-events: none !important;
}
/* Hero inner container */
.bb-landing .hero-inner {
  display: flex !important; align-items: center !important; gap: 48px !important;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
/* Text column */
.bb-landing .hero-text-col {
  max-width: 50% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}
/* Badge label */
.bb-landing .hero-label {
  display: block !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  color: #061b31 !important;
  line-height: 1.6 !important;
  margin-bottom: 20px !important;
}
/* Hide the old AI-powered pill badge */
.bb-landing .hero-badge {
  display: none !important;
}
/* Hero heading */
.bb-landing .hero h1,
.bb-landing section.hero h1 {
  font-size: 58px !important;
  font-weight: 400 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.025em !important;
  color: #0a2540 !important;
  margin-bottom: 28px !important;
  max-width: none !important;
  width: 100% !important;
}
/* Gradient text in h1 */
.bb-landing .hero h1 .gradient-text {
  background: linear-gradient(135deg, #1300FC 0%, #7B61FF 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
/* Hero body copy */
.bb-landing .hero .hero-sub {
  font-size: 19px !important;
  line-height: 1.6 !important;
  color: #425466 !important;
  max-width: 580px !important;
  margin-bottom: 36px !important;
}
/* Hero buttons */
.bb-landing .hero-buttons {
  display: flex !important;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.bb-landing .hero-buttons a,
.bb-landing .hero-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.bb-landing .hero-buttons a:first-child,
.bb-landing .hero-buttons .btn-primary {
  background: #1300FC;
  color: #fff;
  border: 2px solid #1300FC;
}
.bb-landing .hero-buttons a:first-child:hover {
  background: #0f00d4;
  transform: translateY(-1px);
}
/* Dashboard image — hidden (removed from content) */
.bb-landing .dashboard-wrap {
  display: none !important;
}

/* --- Sections: full-bleed alternating backgrounds --- */
.bb-landing .features,
.bb-landing .pricing {
  background: #f6f9fc !important;
  padding: 80px 0 !important;
}
.bb-landing .how-it-works,
.bb-landing .testimonials {
  background: #fff !important;
  padding: 80px 0 !important;
}
/* Full-bleed bg for alternating sections */
.bb-landing .features::before,
.bb-landing .how-it-works::before,
.bb-landing .pricing::before,
.bb-landing .testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 0;
}
.bb-landing .features::before,
.bb-landing .pricing::before {
  background: #f6f9fc;
}
.bb-landing .how-it-works::before,
.bb-landing .testimonials::before {
  background: #fff;
}
.bb-landing .features > *,
.bb-landing .how-it-works > *,
.bb-landing .pricing > *,
.bb-landing .testimonials > * {
  position: relative;
  z-index: 1;
}

/* --- Section headings (H2) — Stripe-style --- */
.bb-landing h2,
.bb-landing .section-title {
  font-size: clamp(28px, 3.5vw, 42px) !important;
  font-weight: 400 !important;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0a2540;
  margin-bottom: 16px;
}
.bb-landing .section-subtitle,
.bb-landing h2 + p {
  font-size: 18px;
  line-height: 1.6;
  color: #425466;
  max-width: 650px;
  margin-bottom: 40px;
}

/* --- Features inner: headline stacked above body copy --- */
.bb-landing .features-inner {
  display: block !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}
.bb-landing .features-inner .section-title {
  font-size: 46px !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
  color: #0a2540 !important;
  margin-bottom: 16px !important;
}
.bb-landing .features-inner .section-sub {
  font-size: 17px !important;
  line-height: 1.65 !important;
  color: #425466 !important;
  max-width: 680px !important;
  margin-bottom: 48px !important;
}

/* --- Feature cards: 4-column single row --- */
.bb-landing .feature-grid,
.bb-landing .features-grid,
.bb-landing .features > div:not(.section-title):not(.section-subtitle):not(.features-inner) {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}
.bb-landing .feature-card {
  background: #fff;
  border: none !important;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, transform 0.3s;
}
.bb-landing .feature-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.bb-landing .feature-card .icon,
.bb-landing .feature-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}
.bb-landing .feature-card h3 {
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #0a2540;
  margin-bottom: 8px;
  padding: 0;
  line-height: 1.4;
  margin-top: 16px;
}
.bb-landing .feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #425466;
  margin: 0;
  padding: 0;
}
.bb-landing .feature-card .feature-icon img {
  margin-top: 0;
}

/* --- How it works: steps --- */
.bb-landing .how-it-works .step,
.bb-landing .how-it-works h4,
.bb-landing .how-it-works h3 {
  font-weight: 500;
  color: #0a2540;
}
.bb-landing .step-number,
.bb-landing .how-it-works h4:first-of-type {
  font-size: 14px;
  font-weight: 600;
  color: #1300FC;
  margin-bottom: 4px;
}

/* --- How it works: animated card layout --- */
.hiw-animated-layout {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  align-items: flex-start;
}
.hiw-nav-col {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hiw-nav-item {
  padding: 20px 0;
  border-bottom: 1px solid #e6ebf1;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.hiw-nav-item.active {
  opacity: 1;
}
.hiw-nav-num {
  font-size: 13px;
  font-weight: 600;
  color: #1300FC;
  margin-bottom: 6px;
}
.hiw-nav-text h3 {
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #0a2540 !important;
  margin-bottom: 6px !important;
  line-height: 1.3 !important;
}
.hiw-nav-text p {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #425466 !important;
  margin: 0 !important;
}
.hiw-nav-progress {
  height: 2px;
  background: #e6ebf1;
  margin-top: 16px;
  border-radius: 2px;
  overflow: hidden;
}
.hiw-nav-item.active .hiw-nav-progress .hiw-nav-bar {
  height: 100%;
  background: #1300FC;
  width: 0%;
  animation: hiwProgress 4s linear forwards;
}
.hiw-nav-item:not(.active) .hiw-nav-progress .hiw-nav-bar {
  width: 0%;
  animation: none;
}
@keyframes hiwProgress {
  from { width: 0%; }
  to { width: 100%; }
}
.hiw-card-col {
  flex: 0 0 55%;
  position: relative;
}
.hiw-card-container {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  min-height: 400px;
  overflow: hidden;
}
.hiw-card {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.hiw-card.active-card {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.hiw-card-image {
  padding: 32px 32px 0;
}
.hiw-card-image svg {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.hiw-card-body {
  padding: 24px 32px 32px;
}
.hiw-card-num {
  font-size: 13px;
  font-weight: 600;
  color: #1300FC;
  margin-bottom: 8px;
}
.hiw-card-body h3 {
  font-size: 22px !important;
  font-weight: 400 !important;
  color: #0a2540 !important;
  margin-bottom: 8px !important;
}
.hiw-card-body p {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #425466 !important;
  margin: 0 !important;
}

/* --- Pricing section --- */
.bb-landing .pricing .pricing-card,
.bb-landing .pricing > div {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.bb-landing .pricing ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.bb-landing .pricing li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 16px;
  color: #425466;
}
.bb-landing .pricing li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #1300FC;
  font-weight: 600;
}
.bb-landing .pricing .btn,
.bb-landing .pricing a[class*="btn"],
.bb-landing .pricing a[href*="install"] {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: #1300FC;
  color: #fff !important;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.bb-landing .pricing .btn:hover,
.bb-landing .pricing a[class*="btn"]:hover {
  background: #0f00d4;
  transform: translateY(-1px);
}

/* --- Testimonials --- */
.bb-landing .testimonials blockquote,
.bb-landing .testimonials .testimonial {
  border: none;
  padding: 0;
  margin: 0 0 40px;
}
.bb-landing .testimonials .stars {
  color: #f4c150;
  font-size: 20px;
  margin-bottom: 12px;
}
.bb-landing .testimonials strong,
.bb-landing .testimonials .author {
  font-weight: 500;
  color: #0a2540;
}
.bb-landing .testimonials .role,
.bb-landing .testimonials .title {
  font-size: 14px;
  color: #425466;
}

/* --- Mobile --- */
@media (max-width: 900px) {
  .bb-landing .hero-text-col {
    max-width: 100% !important;
  }
  .bb-landing .hero h1 {
    font-size: 32px !important;
  }
  .bb-landing .hero .hero-sub {
    max-width: 100% !important;
  }
  .bb-landing .feature-grid,
  .bb-landing .features > div {
    grid-template-columns: 1fr;
  }
  .bb-landing section {
    padding: 60px 0 !important;
  }
}

/* ========== AGENCIES PAGE ========== */
.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-visual img {
  max-width: 100%;
  height: auto;
  margin-right: 40px;
}

.stats-section {
  background: #fff !important;
}
.stats-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.badge-top4 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5c518 0%, #f9d94e 100%);
  font-size: 36px;
  font-weight: 600;
  color: #0a2540;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(245, 197, 24, 0.2);
}
.stats-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #0a2540;
  margin-bottom: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.stats-header p {
  font-size: 18px;
  color: #425466;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}

.stats-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.stats-image {
  display: flex;
  justify-content: center;
}
.chart-placeholder {
  background: linear-gradient(135deg, #f6f9fc 0%, #e8f0fe 100%);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.chart-placeholder svg {
  margin-bottom: 20px;
}
.chart-placeholder p {
  font-size: 15px;
  font-weight: 500;
  color: #0a2540;
  margin: 0;
}

.stats-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.stats-list li {
  counter-increment: list-counter;
}
.stats-list li::before {
  content: counter(list-counter);
  display: block;
  width: 48px;
  height: 48px;
  background: #1300FC;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}
.stats-list h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0a2540;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}
.stats-list p {
  font-size: 15px;
  line-height: 1.65;
  color: #425466;
  margin: 0;
}

.split-visual img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.testimonial-logo {
  text-align: center;
  margin-bottom: 48px;
}
.testimonial-logo img {
  max-height: 60px;
  width: auto;
}

.page-template-tpl-agencies .testimonials-grid {
  max-width: 640px;
  margin: 0 auto;
}
.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.page-template-tpl-agencies .testimonial-quote {
  font-size: 18px;
  line-height: 1.7;
  color: #425466;
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
}

/* Counter for stats list */
.stats-list {
  counter-reset: list-counter;
}

/* ========== CONTACT PAGE ========== */
.contact-section {
  padding: 80px 0 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-col {
  background: #fff;
  border: 1px solid #e6ebf1;
  border-radius: 16px;
  padding: 32px;
}
.contact-field {
  margin-bottom: 16px;
}
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form-col input[type="text"],
.contact-form-col input[type="email"],
.contact-form-col textarea {
  width: 100%;
  font-family: 'neue-haas-unica', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  color: #0a2540;
  border: 1px solid #e6ebf1;
  border-radius: 8px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
  box-sizing: border-box;
}
.contact-form-col input:focus,
.contact-form-col textarea:focus {
  border-color: #1300FC;
  box-shadow: 0 0 0 3px rgba(19,0,252,0.1);
}
.contact-form-col textarea {
  resize: vertical;
  min-height: 160px;
}
.contact-form-col input::placeholder,
.contact-form-col textarea::placeholder {
  color: #8898aa;
  font-weight: 400;
}
.contact-select {
  width: 100%;
  font-family: 'neue-haas-unica', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  color: #8898aa;
  border: 1px solid #e6ebf1;
  border-radius: 8px;
  padding: 14px 16px;
  cursor: pointer;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238898aa' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.contact-select:hover {
  border-color: #1300FC;
}
.contact-submit-wrap .btn-primary {
  display: inline-block;
  background: #1300FC;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-submit-wrap .btn-primary:hover {
  background: #2a1aff;
}

/* Right column messaging */
.contact-message-col {
  padding-top: 24px;
}
.contact-heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  color: #0a2540;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.contact-subtext {
  font-size: 18px;
  line-height: 1.6;
  color: #425466;
  margin-bottom: 32px;
}
.contact-arrow-cta {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-arrow {
  font-size: 32px;
  color: #0a2540;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-arrow-cta p {
  font-size: 15px;
  line-height: 1.6;
  color: #425466;
}

/* Hide page-header on contact template */
.page-template-tpl-contact .page-header {
  display: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .powered-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  /* Show hamburger, hide nav links by default */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-top: 1px solid #e6ebf1;
  }
  .nav-links.mobile-open {
    display: flex;
  }
  .nav-links li {
    border-bottom: 1px solid #f0f3f7;
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    color: #0a2540;
  }
  .nav-links a:hover {
    color: #1300FC;
  }
  .nav-links .nav-cta {
    margin-top: 8px;
    text-align: center;
    border-radius: 8px;
    padding: 12px 0;
  }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta, .hero-cta-outline { justify-content: center; }
  footer .container { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .posts-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-content { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-message-col { order: -1; padding-top: 0; }
  .contact-section { padding: 48px 0 60px; }
}

/* --- CTA section: bold blue block (attribution page) --- */
.bb-landing section.cta {
  background: #1300FC !important;
  text-align: center !important;
  padding: 120px 24px !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  border-radius: 0 !important;
}
.bb-landing section.cta .section-title {
  color: #fff !important;
  font-size: 48px !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
  margin-bottom: 20px !important;
  max-width: none !important;
  white-space: nowrap !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.bb-landing section.cta .section-title .gradient-text {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #fff !important;
}
.bb-landing section.cta .section-sub {
  color: rgba(255,255,255,0.7) !important;
  font-size: 18px !important;
  max-width: 600px !important;
  margin: 0 auto 40px !important;
  line-height: 1.6 !important;
}
.bb-landing section.cta .btn.btn-primary {
  background: #fff !important;
  color: #1300FC !important;
  padding: 16px 32px !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  border: none !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.bb-landing section.cta .btn.btn-primary:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2) !important;
}
.bb-landing section.cta .cta-note {
  color: rgba(255,255,255,0.6) !important;
  font-size: 14px !important;
  margin-top: 20px !important;
}
@media (max-width: 768px) {
  .bb-landing section.cta .section-title {
    font-size: 32px !important;
  }
}

/* --- Hero viz column: dashboard image + animated lead cards --- */
.bb-landing .hero-viz-col {
  flex: 1 1 55% !important;
  position: relative !important;
  min-height: 400px !important;
}
.bb-landing .hero-db-img {
  width: 100% !important;
  border-radius: 12px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
}
/* --- Animated lead notification cards --- */
.bb-landing .hero-lead-card {
  position: absolute !important;
  background: #fff !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12) !important;
  padding: 12px 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease !important;
  z-index: 2 !important;
  min-width: 220px !important;
}
.bb-landing .hero-lead-card-0 { top: 8% !important; right: -20px !important; }
.bb-landing .hero-lead-card-1 { top: 40% !important; left: -30px !important; }
.bb-landing .hero-lead-card-2 { bottom: 12% !important; right: -10px !important; }
.bb-landing .hero-lead-card.hlc-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}


}
.bb-landing .hlc-score {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}
.bb-landing .hlc-body {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}
.bb-landing .hlc-type {
  font-size: 11px !important;
  color: #7b61ff !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}
.bb-landing .hlc-loc {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #0a2540 !important;
}
.bb-landing .hlc-src {
  font-size: 12px !important;
  color: #6b7c93 !important;
}
/* --- Hero responsive: stack on mobile --- */
@media (max-width: 768px) {
  .bb-landing .hero-inner { flex-direction: column !important; gap: 32px !important; }
  .bb-landing .hero-text-col { max-width: 100% !important; flex: none !important; }
  .bb-landing .hero-viz-col { min-height: auto !important; }
  .bb-landing .hero-lead-card { display: none !important; }
}


/* =============================================
   Section: Improve Lead Conversion (Slide Animation)
   ============================================= */
.section-lead-conversion {
  background: #f7f7f8 !important;
  border-radius: 20px !important;
  padding: 56px 48px !important;
  gap: 48px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

/* Column layout: text left (order 1), slides right (order 2) */
.section-lead-conversion > .wp-block-column:first-child {
  order: 2 !important;
  flex: 0 0 50% !important;
  max-width: 50% !important;
  min-width: 50% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}
.section-lead-conversion > .wp-block-column:last-child {
  order: 1 !important;
  flex: 0 0 46% !important;
  max-width: 46% !important;
}

/* Hide spacers */
.section-lead-conversion > .wp-block-column > .wp-block-spacer {
  display: none !important;
}

/* Section heading */
.section-lead-conversion h2 {
  font-size: 46px !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
  margin-bottom: 12px !important;
  color: #0a2540 !important;
}

/* Subtitle */
.section-lead-conversion > .wp-block-column:last-child > p:first-of-type {
  font-size: 18px !important;
  line-height: 1.5 !important;
  color: #425466 !important;
  margin-bottom: 8px !important;
}

/* Body text */
.section-lead-conversion .content-p,
.section-lead-conversion > .wp-block-column:last-child > p.content-p {
  font-size: 17px !important;
  line-height: 1.65 !important;
  color: #425466 !important;
}

/* Slide container */
.feature-slides-container {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  min-height: 380px;
  width: 100%;
  overflow: hidden;
}

/* Individual slides */
.feature-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.feature-slide.active-slide {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Slide icon */
.feature-slide .slide-icon {
  margin-bottom: 24px;
}
.feature-slide .slide-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* Slide title */
.feature-slide .slide-title {
  font-size: 22px !important;
  font-weight: 400 !important;
  color: #0a2540 !important;
  line-height: 1.3 !important;
}

/* Slide description (hidden) */
.feature-slide .slide-desc {
  display: none !important;
}

/* CTA button */
.section-lead-conversion .wp-block-buttons {
  margin-top: 20px !important;
}
.section-lead-conversion .wp-block-button__link {
  border-radius: 10px !important;
  padding: 13px 24px !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  box-shadow: 0 2px 8px rgba(0,68,196,0.25) !important;
  transition: all 0.2s ease !important;
}

/* =============================================
   Section: LeadScore AI
   ============================================= */
.section-leadscore {
  background: #f7f7f8 !important;
  border-radius: 20px !important;
  padding: 56px 48px !important;
  gap: 48px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}
.section-leadscore h2 {
  font-size: 46px !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
  color: #0a2540 !important;
  margin-bottom: 12px !important;
}
.section-leadscore p {
  font-size: 17px !important;
  line-height: 1.65 !important;
  color: #425466 !important;
}
.section-leadscore .wp-block-button__link {
  border-radius: 10px !important;
  padding: 13px 24px !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  box-shadow: 0 2px 8px rgba(0,68,196,0.25) !important;
}
/* =============================================
   Section: Nurture / Data Doesn't Drive Revenue
   Stripe-style layout with accent-bar cards
   ============================================= */

/* Make section single-column flow */
.section-nurture {
  flex-direction: column !important;
  align-items: flex-start !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 80px 48px !important;
  gap: 0 !important;
}

/* Hide the empty first column */
.section-nurture > .wp-block-column:first-child {
  display: none !important;
}

/* Make content column full width */
.section-nurture > .wp-block-column:last-child {
  flex: 1 1 100% !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Heading */
.section-nurture h2 {
  text-align: left !important;
  font-size: 42px !important;
  font-weight: 400 !important;
  color: #0a2540 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 16px !important;
}

/* Description paragraphs */
.section-nurture .content-p {
  text-align: left !important;
  max-width: 680px !important;
  margin: 0 0 48px 0 !important;
}
.section-nurture .content-p p {
  text-align: left !important;
  color: #425466 !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
}

/* Hide the spacer */
.section-nurture .wp-block-spacer {
  display: none !important;
}

/* 3-column grid */
.section-nurture .wp-block-columns.img-text {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  width: 100% !important;
  margin-bottom: 40px !important;
  border: none !important;
  border-top: 1px solid #e3e8ee !important;
  border-bottom: 1px solid #e3e8ee !important;
}

/* Each card */
.section-nurture .img-text > .wp-block-column {
  padding: 32px 32px 32px 28px !important;
  border-left: 3px solid #635bff !important;
  position: relative !important;
  flex-basis: auto !important;
  text-align: left !important;
}

/* Vertical dividers */
.section-nurture .img-text > .wp-block-column + .wp-block-column {
  box-shadow: -1px 0 0 #e3e8ee !important;
}

/* Hide images */
.section-nurture .img-text .wp-block-image,
.section-nurture .img-text figure {
  display: none !important;
}

/* Card titles - regular weight */
.section-nurture .img-text h2,
.section-nurture .img-text h3,
.section-nurture .img-text h4,
.section-nurture .img-text .wp-block-heading,
.section-nurture .img-text strong {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #0a2540 !important;
  margin-bottom: 10px !important;
  line-height: 1.4 !important;
  display: block !important;
  text-align: left !important;
}

/* Card descriptions - regular weight */
.section-nurture .img-text p {
  font-size: 14.5px !important;
  color: #425466 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  font-weight: 400 !important;
  text-align: left !important;
}

/* CTA button */
.section-nurture .wp-block-buttons {
  justify-content: flex-start !important;
  width: 100% !important;
}
.section-nurture .wp-block-button__link {
  border-radius: 10px !important;
  padding: 13px 24px !important;
  font-size: 14.5px !important;
  font-weight: 400 !important;
  letter-spacing: -0.01em !important;
  box-shadow: 0 2px 8px rgba(0,68,196,0.25) !important;
  transition: all 0.2s ease !important;
}

/* =============================================
   Section: Testimonials + CTA (Features Page)
   ============================================= */

/* Remove bottom padding — blue CTA band handles spacing */
.section-testimonials {
  padding-bottom: 0 !important;
}

/* Testimonial cards row */
.section-testimonials .wp-block-columns:first-of-type {
  margin-bottom: 0 !important;
}

/* Hide spacer between testimonials and CTA */
/* Hide all spacers in testimonial section */
.section-testimonials > .wp-block-group__inner-container > .wp-block-spacer {
  display: none !important;
}

/* ---- Full-bleed blue CTA band ---- */

/* Shared full-bleed styles for all CTA elements */
.section-testimonials > .wp-block-group__inner-container > h2.wp-block-heading,
.section-testimonials > .wp-block-group__inner-container > .content-p,
.section-testimonials > .wp-block-group__inner-container > .wp-block-buttons {
  background: rgb(19, 0, 252) !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  box-sizing: border-box !important;
}

/* CTA heading */
.section-testimonials > .wp-block-group__inner-container > h2.wp-block-heading {
  color: #fff !important;
  text-align: center !important;
  font-size: 42px !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
  padding: 120px 24px 16px 24px !important;
}

/* CTA description group */
.section-testimonials > .wp-block-group__inner-container > .content-p {
  padding: 0 24px 40px 24px !important;
  text-align: center !important;
}

.section-testimonials > .wp-block-group__inner-container > .content-p p {
  color: rgba(255, 255, 255, 0.75) !important;
  text-align: center !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  max-width: 700px !important;
  margin: 0 auto 12px auto !important;
}

/* CTA buttons */
.section-testimonials > .wp-block-group__inner-container > .wp-block-buttons {
  padding: 0 24px 120px 24px !important;
  justify-content: center !important;
}

/* CTA button — white bg, blue text */
.section-testimonials .wp-block-buttons .wp-block-button__link {
  background: #fff !important;
  color: rgb(19, 0, 252) !important;
  border-radius: 10px !important;
  padding: 16px 32px !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  box-shadow: none !important;
  transition: all 0.2s ease !important;
}
.section-testimonials .wp-block-buttons .wp-block-button__link:hover {
  opacity: 0.9 !important;
}


/* ---- Testimonial cards: simple quote style (match HP) ---- */

/* Card container: remove shadow, add border, match HP padding/radius */
.section-testimonials .wp-block-columns:first-of-type .wp-block-group.rounded.shadow-3 {
  box-shadow: none !important;
  border: 1px solid rgb(230, 235, 241) !important;
  border-radius: 16px !important;
  padding: 36px !important;
}

/* Card inner: flex column so we can reorder quote above name */
.section-testimonials .wp-block-columns:first-of-type .wp-block-group.rounded.shadow-3 > .wp-block-group__inner-container {
  display: flex !important;
  flex-direction: column !important;
}

/* Quote block (.content-p): move to top, remove background */
.section-testimonials .wp-block-columns:first-of-type .wp-block-group.rounded .content-p {
  order: -1 !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-grow: 1 !important;
}

/* Quote text paragraphs: match HP style */
.section-testimonials .wp-block-columns:first-of-type .wp-block-group.rounded .content-p p {
  color: rgb(66, 84, 102) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  text-align: left !important;
}

/* Hide company logo */
.section-testimonials .wp-block-columns:first-of-type .wp-block-group.rounded .content-p figure.wp-block-image {
  display: none !important;
}

/* Hide spacers inside content-p */
.section-testimonials .wp-block-columns:first-of-type .wp-block-group.rounded .content-p .wp-block-spacer {
  display: none !important;
}

/* Profile section: style as author area with divider */
.section-testimonials .wp-block-columns:first-of-type .wp-block-columns.profile {
  border-top: 1px solid rgb(230, 235, 241) !important;
  padding-top: 16px !important;
  margin-top: auto !important;
  margin-bottom: 0 !important;
}

/* Hide avatar image column */
.section-testimonials .wp-block-columns:first-of-type .wp-block-columns.profile > .wp-block-column:first-child {
  display: none !important;
}

/* Name column: take full width */
.section-testimonials .wp-block-columns:first-of-type .wp-block-columns.profile > .wp-block-column:last-child {
  flex-basis: 100% !important;
}

/* Name text styling */
.section-testimonials .wp-block-columns:first-of-type .wp-block-columns.profile p {
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: rgb(136, 152, 170) !important;
  font-weight: 400 !important;
}

.section-testimonials .wp-block-columns:first-of-type .wp-block-columns.profile p strong {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: rgb(10, 37, 64) !important;
  display: block !important;
  margin-bottom: 2px !important;
}


/* Testimonials section heading */
.section-testimonials .testimonials-section-heading {
  font-size: 42px !important;
  font-weight: 500 !important;
  color: rgb(10, 37, 64) !important;
  text-align: center !important;
  letter-spacing: -0.025em !important;
  margin: 0 0 56px 0 !important;
  padding: 0 !important;
}

/* Extra spacing between cards and blue CTA band */
.section-testimonials .wp-block-columns:first-of-type {
  margin-bottom: 80px !important;
}

/* ===== VIDEO THEATER MODE ===== */
.bb-video-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #e8ecf1;
  box-shadow: 0 4px 24px rgba(10, 37, 64, 0.08);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  aspect-ratio: 16 / 9;
}
.bb-video-wrap:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 40px rgba(10, 37, 64, 0.14);
}
.bb-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bb-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 37, 64, 0.25);
  transition: background 0.3s;
}
.bb-video-wrap:hover .bb-video-play {
  background: rgba(10, 37, 64, 0.35);
}
.bb-video-play-btn {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.25s, box-shadow 0.25s;
}
.bb-video-wrap:hover .bb-video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(0,0,0,0.2);
}
.bb-video-play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
  fill: #0a2540;
}
.bb-video-caption {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: #8898aa;
  font-weight: 500;
}
/* Theater overlay */
.bb-theater-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 37, 64, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bb-theater-overlay.active {
  background: rgba(10, 37, 64, 0.88);
  pointer-events: all;
}
.bb-theater-video {
  width: 0;
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s;
  opacity: 0;
  position: relative;
}
.bb-theater-overlay.active .bb-theater-video {
  width: min(90vw, 1120px);
  height: min(50.6vw, 630px);
  opacity: 1;
}
.bb-theater-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.bb-theater-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}
.bb-theater-close:hover {
  background: rgba(255,255,255,0.3);
}
.bb-theater-close svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}


/* ===== PRICING TABLE - MERGED PLAN HEADERS ===== */

/* Switch table to border-separate for border-radius + gaps between header cols */
.compare-table {
  border-collapse: separate !important;
  border-spacing: 8px 0 !important;
}

/* Header row */
.compare-table thead tr.plan-header-row { vertical-align: top; }
.compare-table thead th.feature-label-header {
  vertical-align: bottom !important;
  padding-bottom: 20px !important;
  padding-left: 8px !important;
  border: none !important;
  background: transparent !important;
  text-align: left !important;
}

/* Plan header cells */
.compare-table thead th.plan-header {
  position: relative !important;
  padding: 24px 24px 20px !important;
  vertical-align: top !important;
  border: 1px solid #e3e8ee !important;
  border-bottom: 1px solid #e3e8ee !important;
  border-radius: 12px 12px 0 0 !important;
  background: #fff !important;
  text-align: left !important;
}

/* Plan card header content — all regular 400 weight */
.plan-card-header h3 {
  font-family: "neue-haas-unica", sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  color: #0a2540 !important;
  margin: 0 0 8px !important;
  text-align: left !important;
}
.plan-card-header .plan-desc {
  font-size: 14px !important;
  color: #596980 !important;
  line-height: 1.5 !important;
  margin: 0 0 20px !important;
  min-height: 42px;
  font-weight: 400 !important;
  text-align: left !important;
}
.plan-card-header .plan-price {
  font-family: "neue-haas-unica", sans-serif !important;
  font-size: 40px !important;
  font-weight: 400 !important;
  color: #0a2540 !important;
  line-height: 1 !important;
  margin: 0 0 36px !important;
  text-align: left !important;
}
.plan-card-header .plan-price span {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #8898aa !important;
}
.plan-card-header .plan-best-for {
  font-size: 13px !important;
  color: #8898aa !important;
  border-top: 1px solid #e3e8ee !important;
  padding-top: 12px !important;
  text-align: left !important;
  font-weight: 400 !important;
}
.plan-card-header .plan-best-for span {
  display: block !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  color: #8898aa !important;
  margin-bottom: 2px !important;
}

/* Featured plan (Optimize) - blue outline */
.compare-table thead th.plan-header.plan-featured {
  border: 2px solid #2D50E6 !important;
  border-bottom: 1px solid #e3e8ee !important;
  background: #fff !important;
}
.plan-badge {
  position: absolute !important;
  top: -12px !important;
  right: 16px !important;
  background: #2D50E6 !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  padding: 4px 14px !important;
  border-radius: 20px !important;
  white-space: nowrap !important;
  z-index: 1 !important;
}

/* Optimize column blue side borders through tbody */
.compare-table tbody tr td:last-child {
  border-left: 2px solid #2D50E6 !important;
  border-right: 2px solid #2D50E6 !important;
}
.compare-table tbody tr:last-child td:last-child {
  border-bottom: 2px solid #2D50E6 !important;
  border-radius: 0 0 12px 12px !important;
}

/* Fix tbody cell borders for border-separate */
.compare-table tbody tr td,
.compare-table tbody tr th {
  border-bottom: 1px solid #e6ebf1 !important;
  border-top: none !important;
}

/* Left column — flush left alignment, no extra padding */
.compare-table thead th:first-child,
.compare-table tbody td:first-child,
.compare-table tbody th:first-child {
  padding-left: 8px !important;
  text-align: left !important;
}

/* Section header rows — NO blue left border, just text aligned left */
.compare-table tbody tr td[colspan] {
  border-left: none !important;
  border-right: none !important;
  border-bottom: 2px solid #e6ebf1 !important;
  padding-top: 24px !important;
  padding-bottom: 12px !important;
  padding-left: 8px !important;
  background-color: transparent !important;
  text-align: left !important;
  font-weight: 400 !important;
}

/* Alternating row backgrounds */
.compare-table tbody tr:nth-child(even) td {
  background-color: rgba(45, 80, 230, 0.03) !important;
}
.compare-table tbody tr:nth-child(even) td:last-child {
  background-color: rgba(45, 80, 230, 0.05) !important;
}
.compare-table tbody tr td[colspan],
.compare-table tbody tr:nth-child(even) td[colspan] {
  background-color: transparent !important;
}
.compare-table tbody tr:last-child td {
  background-color: transparent !important;
}

/* Hide old elements (safety) */
.pricing-cards { display: none !important; }
.section-intro { display: none !important; }
.pricing-trial-note { display: none !important; }

/* ── Attribution Page Video (20% larger) ── */
.page-id-18202 .hero-viz-col .bb-video-wrap {
  width: 528px !important;
  max-width: 100%;
}
.page-id-18202 .hero-viz-col .bb-video-caption {
  text-align: center;
}
.page-id-18202 .hero-viz-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
