/* ============================================================
   EstateSail — B2B Landing Page
   Uses site design tokens from theme.css.
   Font: Inter (--font). Brand: --brand (#155DFC) / --brand-teal (#0092B8).
   ============================================================ */

/* Icon stroke colors (inline SVG uses stroke="var(--b2b-…)" in home_b2b.php) */
:root {
  --b2b-gold: #e8c547;
  --b2b-blue: var(--brand, #155dfc);
}

/* ---- Scroll Animation ------------------------------------- */
.b2b-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.b2b-animate.b2b-visible {
  opacity: 1;
  transform: none;
}
.b2b-delay-1 { transition-delay: 0.10s; }
.b2b-delay-2 { transition-delay: 0.20s; }
.b2b-delay-3 { transition-delay: 0.30s; }
.b2b-delay-4 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .b2b-animate { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   HERO  (dark cinematic — matches existing hero pattern)
   ============================================================ */
.b2b-hero {
  position: relative;
  min-height: clamp(680px, 90vh, 940px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(100px, 14vh, 140px) var(--sp-8) 100px;
  background-color: var(--n-900);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: calc(-1 * var(--sp-8));
  overflow: hidden;
}

/* Overlay using brand dark tones */
.b2b-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 43, 0.92) 0%,
    rgba(15, 23, 43, 0.75) 45%,
    rgba(15, 23, 43, 0.96) 100%
  );
  z-index: 0;
}

/* Brand blue glow */
.b2b-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 55%, rgba(21, 93, 252, 0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.b2b-hero > * { position: relative; z-index: 1; }

/* Hero badge */
.b2b-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid rgba(21, 93, 252, 0.45);
  background: rgba(21, 93, 252, 0.10);
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #93B8FF;
  margin-bottom: 36px;
}

.b2b-hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #05DF72;
  flex-shrink: 0;
  animation: b2b-pulse 2.8s ease-in-out infinite;
}

@keyframes b2b-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.75); }
}

/* Hero headline */
.b2b-hero-h1 {
  font-family: var(--font);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: #fff;
  margin: 0;
  width: 100%;
  max-width: 100%;
}

/* Accent text — brand gradient */
/* B2B hero h1 uses a tight line-height; viewport must not undercut theme or descenders clip */
.b2b-hero .lp-hero-h1-accent-viewport {
  min-height: 2.55em;
  padding-block: 0.2em 0.38em;
  margin-block: -0.2em -0.38em;
}
.b2b-hero .lp-hero-h1-accent {
  line-height: 1.24;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero subtext */
.b2b-hero-sub {
  font-family: var(--font);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 400;
  color: rgba(203, 213, 225, 0.85);
  max-width: 46rem;
  margin: 28px auto 0;
  line-height: 1.72;
}

/* CTAs */
.b2b-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0 60px;
}

/* Primary button — brand blue */
.b2b-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 3.125rem;
  padding: 0 30px;
  border-radius: var(--r);
  background: var(--brand);
  color: #fff;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.015em;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: 0 4px 24px rgba(21, 93, 252, 0.35);
  white-space: nowrap;
}
.b2b-btn-primary:hover {
  background: var(--brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(21, 93, 252, 0.45);
  color: #fff;
}
.b2b-btn-primary svg { flex-shrink: 0; }

/* Ghost button */
.b2b-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 3.125rem;
  padding: 0 26px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.015em;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.b2b-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}
.b2b-btn-ghost svg { flex-shrink: 0; }

/* Floating metric chips */
.b2b-hero-metrics {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.b2b-hero-metric {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: var(--r);
  background: rgba(30, 41, 59, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.b2b-hero-metric-num {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  flex-shrink: 0;
}
.b2b-hero-metric-lbl {
  font-family: var(--font);
  font-size: 0.8125rem;
  color: var(--n-400);
  line-height: 1.4;
  text-align: left;
  max-width: 10rem;
}

/* Scroll indicator */
.b2b-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  z-index: 1;
}
.b2b-hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  animation: b2b-scroll-drop 2.2s ease infinite;
}
@keyframes b2b-scroll-drop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  55%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}
.b2b-hero-scroll-label {
  font-family: var(--font);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

/* ============================================================
   MANIFESTO / CORE POSITIONING
   ============================================================ */
.b2b-manifesto {
  background: var(--n-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 88px 0;
}
.b2b-manifesto__inner {
  max-width: 58rem;
  margin: 0 auto;
  padding-inline: var(--sp-8);
  text-align: center;
}
.b2b-manifesto-quote {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 28px;
}
.b2b-manifesto-quote em {
  font-style: normal;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.b2b-manifesto-divider {
  width: 56px;
  height: 2px;
  background: var(--brand-gradient);
  margin: 0 auto 28px;
}
.b2b-manifesto-body {
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--n-400);
  line-height: 1.8;
  max-width: 44rem;
  margin: 0 auto;
}

/* ============================================================
   SHARED SECTION HEADER
   ============================================================ */
.b2b-section-tag {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.b2b-section-head { margin-bottom: 52px; }
.b2b-section-h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.b2b-section-sub {
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 44rem;
}

/* Dark-bg section header overrides */
.b2b-pillar--operate .b2b-section-h2,
.b2b-insight .b2b-section-h2,
.b2b-process .b2b-section-h2,
.b2b-metrics .b2b-section-h2 {
  color: #fff;
}
.b2b-pillar--operate .b2b-section-sub,
.b2b-insight .b2b-section-sub,
.b2b-process .b2b-section-sub,
.b2b-metrics .b2b-section-sub {
  color: var(--n-400);
}
.b2b-pillar--operate .b2b-section-tag,
.b2b-insight .b2b-section-tag,
.b2b-process .b2b-section-tag,
.b2b-metrics .b2b-section-tag {
  color: #93B8FF;
}

/* ============================================================
   PILLAR: OPERATE (dark bg, dot grid)
   ============================================================ */
.b2b-pillar {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.b2b-pillar--operate {
  background: var(--n-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.b2b-pillar--operate::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}
.b2b-pillar--operate > .lp-wrap { position: relative; z-index: 1; }

/* PILLAR: GROW (light bg) */
.b2b-pillar--grow { background: var(--n-50); }

/* --- Bento Grid (Operate) --- */
.b2b-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.b2b-bento-card {
  background: var(--n-800);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  cursor: default;
}
.b2b-bento-card:hover {
  border-color: rgba(21, 93, 252, 0.40);
  transform: translateY(-3px);
}
.b2b-bento-card--wide { grid-column: span 2; }
.b2b-bento-card--featured {
  background: linear-gradient(135deg, rgba(21, 93, 252, 0.14) 0%, var(--n-800) 100%);
  border-color: rgba(21, 93, 252, 0.24);
}
.b2b-bento-num {
  font-family: var(--font);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93B8FF;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.b2b-bento-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  max-width: 36px;
}
.b2b-bento-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 93, 252, 0.10);
  border: 1px solid rgba(21, 93, 252, 0.22);
  margin-bottom: 18px;
  color: var(--b2b-gold);
}
.b2b-bento-icon svg {
  display: block;
  flex-shrink: 0;
  stroke: var(--b2b-gold);
}
.b2b-bento-h3 {
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 14px;
}
.b2b-bento-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.b2b-bento-list li {
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--n-400);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.b2b-bento-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.55;
}

/* ============================================================
   2×2 FEATURE GRID (Grow — light bg)
   ============================================================ */
.b2b-feat-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.b2b-feat-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.b2b-feat-item:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
}
.b2b-feat-icon-ring {
  width: 46px;
  height: 46px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--brand-light);
  border: 1px solid rgba(21, 93, 252, 0.18);
  color: var(--b2b-blue);
}
.b2b-feat-icon-ring svg {
  display: block;
  flex-shrink: 0;
  stroke: var(--b2b-blue);
}
.b2b-feat-h3 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.b2b-feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.b2b-feat-list li {
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 15px;
  position: relative;
  line-height: 1.55;
}
.b2b-feat-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.65;
}

/* ============================================================
   INSIGHT (dark bg)
   ============================================================ */
.b2b-insight {
  background: var(--n-900);
  padding: 96px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.b2b-insight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(21, 93, 252, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.b2b-insight > .lp-wrap { position: relative; z-index: 1; }

.b2b-insight-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.b2b-insight-metric-card {
  background: var(--n-800);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--dur) var(--ease);
}
.b2b-insight-metric-card:hover { border-color: rgba(21, 93, 252, 0.35); }
.b2b-insight-metric-card--gold {
  border-color: rgba(21, 93, 252, 0.22);
  background: linear-gradient(135deg, rgba(21, 93, 252, 0.08), var(--n-800));
}
.b2b-insight-num {
  font-family: var(--font);
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.b2b-insight-num--blue {
  background: linear-gradient(135deg, #0092B8, #155DFC);
  -webkit-background-clip: text;
  background-clip: text;
}
.b2b-insight-lbl {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--n-400);
  line-height: 1.6;
}
.b2b-insight-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.b2b-insight-list li {
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--n-500);
  padding-left: 15px;
  position: relative;
  line-height: 1.5;
}
.b2b-insight-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.5;
}

/* Value grid */
.b2b-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.b2b-value-card {
  background: var(--n-800);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r);
  padding: 32px;
  transition: border-color var(--dur) var(--ease);
}
.b2b-value-card:hover { border-color: rgba(21, 93, 252, 0.35); }
.b2b-value-h3 {
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.b2b-value-sub {
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--n-500);
  margin-bottom: 18px;
}
.b2b-value-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.b2b-value-list li {
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--n-400);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
}
.b2b-value-check {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--green);
}

/* ============================================================
   PROCESS / HOW IT WORKS (dark bg)
   ============================================================ */
.b2b-process {
  background: var(--n-800);
  padding: 96px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.b2b-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 12px;
}
/* Connecting line */
.b2b-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 6px);
  right: calc(12.5% + 6px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(21, 93, 252, 0.35) 15%,
    rgba(21, 93, 252, 0.35) 85%,
    transparent 100%);
  z-index: 0;
}
.b2b-step {
  padding: 0 22px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.b2b-step-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 800;
  margin-bottom: 26px;
  flex-shrink: 0;
}
.b2b-step:nth-child(1) .b2b-step-badge { background: var(--brand); color: #fff; }
.b2b-step:nth-child(2) .b2b-step-badge { background: var(--brand-teal); color: #fff; }
.b2b-step:nth-child(3) .b2b-step-badge { background: var(--brand-dark); color: #fff; }
.b2b-step:nth-child(4) .b2b-step-badge { background: var(--green); color: #fff; }
.b2b-step-h3 {
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.35;
}
.b2b-step-body {
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--n-400);
  line-height: 1.65;
}

/* ============================================================
   PROOF / TESTIMONIALS (light bg)
   ============================================================ */
.b2b-proof {
  background: var(--n-50);
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.b2b-proof .b2b-section-h2 { color: var(--primary); }
.b2b-proof .b2b-section-sub { color: var(--text-muted); }
.b2b-proof .b2b-section-tag { color: var(--brand); }

/* Anchor quote */
.b2b-anchor-quote {
  background: linear-gradient(135deg, var(--brand-light) 0%, rgba(0, 146, 184, 0.05) 100%);
  border: 1px solid rgba(21, 93, 252, 0.18);
  border-radius: var(--r);
  padding: 52px 56px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.b2b-anchor-quote::before {
  content: '\201C';
  position: absolute;
  top: -12px;
  left: 40px;
  font-size: 9rem;
  line-height: 1;
  color: var(--brand);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}
.b2b-anchor-stars {
  font-size: 0.9375rem;
  color: var(--amber);
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.b2b-anchor-text {
  font-family: var(--font);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  font-style: italic;
  color: var(--primary);
  line-height: 1.45;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.b2b-anchor-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.b2b-anchor-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.b2b-anchor-name {
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
}
.b2b-anchor-role {
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* Supporting testimonial grid */
.b2b-test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.b2b-test-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.b2b-test-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
}
.b2b-test-stars {
  font-size: 0.875rem;
  color: var(--amber);
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.b2b-test-quote {
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.68;
  flex: 1;
  margin-bottom: 20px;
}
.b2b-test-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.b2b-test-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.b2b-test-name {
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
}
.b2b-test-role {
  font-family: var(--font);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================================
   METRICS BENTO (dark bg)
   ============================================================ */
.b2b-metrics {
  background: var(--n-900);
  padding: 96px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.b2b-metrics-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.b2b-metric-tile {
  background: var(--n-800);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r);
  padding: 36px 24px;
  text-align: center;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.b2b-metric-tile:hover {
  border-color: rgba(21, 93, 252, 0.35);
  transform: translateY(-3px);
}
.b2b-metric-tile:nth-child(1) { border-top: 2px solid var(--brand); }
.b2b-metric-tile:nth-child(2) { border-top: 2px solid var(--brand-teal); }
.b2b-metric-tile:nth-child(3) { border-top: 2px solid var(--brand-dark); }
.b2b-metric-tile:nth-child(4) { border-top: 2px solid var(--green); }
.b2b-metric-num {
  font-family: var(--font);
  font-size: clamp(2.75rem, 4.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}
.b2b-metric-tile:nth-child(2) .b2b-metric-num {
  background: linear-gradient(135deg, #0092B8, #155DFC);
  -webkit-background-clip: text;
  background-clip: text;
}
.b2b-metric-tile:nth-child(3) .b2b-metric-num {
  background: linear-gradient(135deg, #155DFC, #0A3DBF);
  -webkit-background-clip: text;
  background-clip: text;
}
.b2b-metric-tile:nth-child(4) .b2b-metric-num {
  background: linear-gradient(135deg, #059669, #047857);
  -webkit-background-clip: text;
  background-clip: text;
}
.b2b-metric-lbl {
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--n-400);
  line-height: 1.5;
}

/* ============================================================
   NEXT STEPS / LINKS (light bg)
   ============================================================ */
.b2b-links {
  background: var(--surface);
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.b2b-links-head { margin-bottom: 28px; }
.b2b-links-title {
  font-family: var(--font);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.b2b-links-sub {
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.b2b-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.b2b-pill {
  display: inline-flex;
  align-items: center;
  height: 2.5rem;
  padding: 0 22px;
  border-radius: 100px;
  background: var(--n-100);
  border: 1px solid var(--border);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.b2b-pill:hover {
  background: var(--brand-light);
  border-color: var(--brand);
  color: var(--brand);
}

/* ============================================================
   FINAL CTA (dark bg, brand glow)
   ============================================================ */
.b2b-cta {
  background: var(--n-900);
  padding: 108px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.b2b-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 65% at 50% 50%, rgba(21, 93, 252, 0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.b2b-cta > .lp-wrap { position: relative; z-index: 1; }
.b2b-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid rgba(21, 93, 252, 0.35);
  background: rgba(21, 93, 252, 0.08);
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #93B8FF;
  margin-bottom: 36px;
}
.b2b-cta-badge svg {
  display: block;
  flex-shrink: 0;
  stroke: var(--b2b-gold);
}
.b2b-cta-h2 {
  font-family: var(--font);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 22px;
}
.b2b-cta-sub {
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--n-400);
  max-width: 44rem;
  margin: 0 auto 52px;
  line-height: 1.75;
}
.b2b-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.b2b-cta-bullets {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.b2b-cta-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.8125rem;
  color: var(--n-500);
  font-weight: 600;
}
.b2b-cta-bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .b2b-bento { grid-template-columns: repeat(2, 1fr); }
  .b2b-bento-card--wide { grid-column: span 2; }
  .b2b-feat-grid-2x2 { grid-template-columns: 1fr; }
  .b2b-insight-metrics { grid-template-columns: 1fr; }
  .b2b-value-grid { grid-template-columns: 1fr; }
  .b2b-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .b2b-steps::before { display: none; }
  .b2b-test-grid { grid-template-columns: repeat(2, 1fr); }
  .b2b-metrics-bento { grid-template-columns: repeat(2, 1fr); }
  .b2b-anchor-quote { padding: 40px 36px; }
}

@media (max-width: 600px) {
  .b2b-hero-ctas { flex-direction: column; align-items: stretch; }
  .b2b-hero-ctas a { justify-content: center; }
  .b2b-hero-metrics { flex-direction: column; align-items: stretch; }
  .b2b-hero-metric { justify-content: flex-start; }
  .b2b-bento { grid-template-columns: 1fr; }
  .b2b-bento-card--wide { grid-column: span 1; }
  .b2b-steps { grid-template-columns: 1fr; }
  .b2b-test-grid { grid-template-columns: 1fr; }
  .b2b-metrics-bento { grid-template-columns: 1fr; }
  .b2b-anchor-quote { padding: 32px 24px; }
  .b2b-anchor-quote::before { font-size: 5rem; }
  .b2b-cta-bullets { flex-direction: column; align-items: center; gap: 14px; }
}
