/* Feature: photo + stats */
.regions-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
  align-items: stretch;
}
.regions-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(
      160deg,
      rgba(11, 10, 31, 0.55) 0%,
      rgba(11, 10, 31, 0.15) 50%,
      rgba(124, 58, 237, 0.35) 100%
    ),
    radial-gradient(
      ellipse 60% 50% at 30% 30%,
      rgba(199, 191, 255, 0.45) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, #1a1a3a 0%, #2d2d5f 60%, #4f46e5 100%);
}
.regions-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.regions-photo-deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.regions-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(11, 10, 31, 0.55) 100%
  );
  z-index: 2;
}
.regions-photo-tag {
  position: absolute;
  bottom: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  z-index: 3;
}
.regions-photo-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22);
  animation: pulseDot 2.4s ease-in-out infinite;
}
.regions-photo-caption {
  position: absolute;
  bottom: 22px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  z-index: 3;
}
@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.08);
  }
}

.regions-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.regions-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.regions-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.regions-stat-l {
  font-size: 12.5px;
  color: var(--text-2);
  margin-top: 6px;
  font-weight: 500;
}

/* Section sub-headers */

/* Markets grid */
.market-card:hover::before {
  opacity: 1;
}
.market-card.market-card-hq::before {
  background: var(--green);
  opacity: 1;
}
.market-card.market-card-ops::before {
  background: var(--indigo);
  opacity: 1;
}
.market-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.market-card-status.hq {
  background: var(--green-50);
  color: var(--green);
}
.market-card-status.ops {
  background: var(--indigo-50);
  color: var(--indigo);
}
.market-card-status.av {
  background: var(--bg-3);
  color: var(--text-3);
}
.market-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 11.5px;
  color: var(--text-3);
  font-weight: 500;
}

/* Service journey */

/* Footer grid */

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .values-grid,
  .segments-grid,
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid::before {
    left: 25%;
    right: 25%;
  }
  .values-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .calc-inner,
  .ava-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .regions-feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .regions-photo {
    min-height: 260px;
  }
  .regions-markets-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .regions-markets-grid .market-card:nth-child(4),
  .regions-markets-grid .market-card:nth-child(5) {
    grid-column: span 1;
  }
  .regions-journey {
    grid-template-columns: repeat(2, 1fr);
  }
  .regions-journey::before {
    display: none;
  }
  .regions-sub-hd {
    flex-direction: column;
    align-items: start;
  }
  .regions-sub-hd p {
    text-align: left;
  }
  .mockup-body {
    grid-template-columns: 1fr;
  }
  .mockup-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 20px;
  }
  .nav-links,
  .btn-ghost {
    display: none;
  }
  .nav-ham {
    display: flex;
  }
  .nav-actions > .btn-primary {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px 20px;
    gap: 4px;
    z-index: 99;
    box-shadow: var(--shadow);
  }
  .nav-links.open a {
    font-size: 15px;
    padding: 12px 16px;
  }

  .hero {
    padding: 120px 0 60px;
  }
  .hero-mockup {
    margin-top: 48px;
  }
  .mockup-float {
    display: none;
  }

  .section,
  .values,
  .segments,
  .calculator,
  .ava-section,
  .process,
  .regions,
  .proof,
  .values-strip-wrap,
  .faq,
  .final-cta {
    padding: 72px 0;
  }

  .values-grid,
  .segments-grid,
  .proof-grid,
  .ava-agents {
    grid-template-columns: 1fr;
  }
  .proof-logos-row {
    gap: 32px;
  }
  .proof-logo {
    font-size: 15px;
  }
  .proof-metric-num {
    font-size: 44px;
  }
  .regions-stats {
    grid-template-columns: 1fr 1fr;
  }
  .regions-markets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .regions-markets-grid .market-card:nth-child(5) {
    grid-column: span 2;
  }
  .regions-journey {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 0;
  }
  .process-grid::before {
    display: none;
  }
  .process-phases {
    gap: 56px;
  }
  .process-phase-header {
    margin-bottom: 24px;
  }
  .values-strip {
    grid-template-columns: 1fr 1fr;
  }

  .mockup-stats {
    grid-template-columns: 1fr 1fr;
  }
  .mockup-activity {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-newsletter {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    gap: 20px;
    margin: 32px 0;
  }
  .footer-newsletter-text h4 {
    font-size: 18px;
  }
  .footer-newsletter-form {
    flex-direction: column;
  }
  .footer-newsletter-form button {
    width: 100%;
  }
  .footer-bot {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-bot-right {
    width: 100%;
    justify-content: space-between;
  }
  .footer-badges {
    gap: 10px;
    padding: 20px 0;
  }
  .footer-badge {
    padding: 6px 10px;
    font-size: 11.5px;
    gap: 8px;
  }

  .clients-grid {
    gap: 24px;
  }
  .client-logo {
    font-size: 18px;
  }

  .seg-card {
    padding: 32px 24px;
  }
  .final-cta-card {
    padding: 56px 28px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }
  .hero-sub {
    font-size: 17px;
  }
}

/* ============ CAREERS PAGE ============ */
.careers-hero {
  padding: 140px 0 60px;
  background:
    radial-gradient(
      ellipse 50% 40% at 50% 0%,
      rgba(199, 191, 255, 0.32) 0%,
      transparent 60%
    ),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.careers-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(79, 70, 229, 0.1) 1.4px, transparent 2px),
    radial-gradient(circle, rgba(124, 58, 237, 0.08) 1.2px, transparent 1.8px);
  background-size:
    89px 71px,
    113px 97px;
  background-position:
    0 0,
    47px 31px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    black,
    transparent
  );
  pointer-events: none;
}
.careers-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.careers-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: var(--green-50);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 26px;
}
.careers-hero-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22);
  animation: pulseDot 2.4s ease-in-out infinite;
}
.careers-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.06;
  letter-spacing: -2.5px;
  color: var(--text);
  margin: 0 0 20px;
  padding-bottom: 0.08em;
}
.careers-hero h1 .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.careers-hero p {
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--text-2);
  max-width: 680px;
  margin: 0 auto 32px;
}
.careers-hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Stats strip below hero */
.careers-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.careers-stat {
  text-align: center;
  position: relative;
  padding: 0 16px;
}
.careers-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: var(--line);
}
.careers-stat-num {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.careers-stat-l {
  display: block;
  font-size: 11.5px;
  color: var(--text-2);
  margin-top: 4px;
  font-weight: 500;
}

/* Why work here */
.careers-why {
  padding: 100px 0 80px;
  background: var(--bg-2);
}
.careers-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 48px auto 0;
  padding: 0 24px;
}
.careers-why-card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition:
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.careers-why-card:hover {
  border-color: var(--indigo-100);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.careers-why-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--lilac-soft);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.careers-why-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.careers-why-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.careers-why-card p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
}

/* Open roles */
.careers-roles {
  padding: 100px 0;
  background: var(--bg);
}
.careers-roles-hd-wrap {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto 36px;
  padding: 0 24px;
}
.careers-roles-hd-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -1.2px;
  color: var(--text);
  margin: 0 0 6px;
}
.careers-roles-hd-wrap p {
  font-size: 14.5px;
  color: var(--text-2);
}
.careers-roles-count {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  padding: 6px 12px;
  background: var(--indigo-50);
  border-radius: var(--radius-pill);
}

/* Role placeholder banner */
.careers-placeholder-note {
  max-width: 1180px;
  margin: 0 auto 24px;
  padding: 14px 20px;
  background: var(--amber);
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px dashed #d97706;
  border-radius: var(--radius);
  font-size: 13px;
  color: #78350f;
  text-align: center;
}
.careers-placeholder-note strong {
  color: #78350f;
  font-weight: 700;
}

.careers-roles-list {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.role-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
}
.role-card:hover {
  border-color: var(--indigo-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.role-card-main {
  min-width: 0;
}
.role-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.role-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.role-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}
.role-card-tag.dept {
  background: var(--indigo-50);
  color: var(--indigo);
}
.role-card-tag.loc {
  background: var(--lilac-soft);
  color: var(--purple);
}
.role-card-tag.type {
  background: var(--bg-3);
  color: var(--text-2);
}
.role-card-desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
  max-width: 760px;
}
.role-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 18px;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    filter 0.2s,
    transform 0.2s;
}
.role-card-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.role-card.placeholder {
  border-style: dashed;
  border-color: var(--line-2);
  background: var(--bg-2);
}
.role-card.placeholder .role-card-title {
  color: var(--text-3);
}

/* No-role-fits block */
.careers-no-role {
  padding: 90px 0 110px;
  background: var(--bg-2);
}
.careers-no-role-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 40px;
  background: var(--ink);
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.careers-no-role-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 50% at 50% 0%,
      rgba(124, 58, 237, 0.3) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 40% at 80% 100%,
      rgba(56, 182, 255, 0.18) 0%,
      transparent 55%
    );
  pointer-events: none;
}
.careers-no-role-card > * {
  position: relative;
  z-index: 1;
}
.careers-no-role-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
  margin: 0 0 12px;
}
.careers-no-role-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0 auto 24px;
  max-width: 480px;
}
.careers-no-role-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.careers-no-role-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .careers-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px 0;
    padding: 14px 0;
  }
  .careers-stat:nth-child(2)::after {
    display: none;
  }
  .careers-why-grid {
    grid-template-columns: 1fr;
  }
  .role-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 22px;
  }
  .role-card-cta {
    width: 100%;
    justify-content: center;
  }
  .careers-no-role-card {
    padding: 36px 24px;
  }
}

/* ============ SEGMENT LANDING PAGES (Scale / CxaS / Ava / Core) ============ */
.lp-hero {
  padding: 130px 0 70px;
  background:
    radial-gradient(
      ellipse 50% 40% at 50% 0%,
      var(--lp-soft-bg) 0%,
      transparent 60%
    ),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, var(--lp-dot-1) 1.4px, transparent 2px),
    radial-gradient(circle, var(--lp-dot-2) 1.2px, transparent 1.8px);
  background-size:
    89px 71px,
    113px 97px;
  background-position:
    0 0,
    47px 31px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    black,
    transparent
  );
  pointer-events: none;
}
.lp-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.lp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: var(--lp-soft);
  border: 1px solid var(--lp-border);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-color);
  margin-bottom: 26px;
}
.lp-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-color);
  box-shadow: 0 0 0 3px var(--lp-soft);
  animation: pulseDot 2.4s ease-in-out infinite;
}
.lp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 64px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -2px;
  color: var(--text);
  margin: 0 0 18px;
  text-wrap: balance;
  padding-bottom: 0.08em;
}
.lp-hero h1 em {
  font-style: normal;
  color: var(--lp-color);
}
.lp-hero p {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--text-2);
  max-width: 680px;
  margin: 0 auto 30px;
}
.lp-hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.lp-hero-cta .btn-primary-xl {
  background: var(--lp-color);
}
.lp-hero-cta .btn-primary-xl:hover {
  background: var(--lp-color);
  filter: brightness(1.08);
}

.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lp-stat {
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.lp-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: var(--line);
}
.lp-stat-num {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lp-color);
}
.lp-stat-l {
  display: block;
  font-size: 11.5px;
  color: var(--text-2);
  margin-top: 4px;
  font-weight: 500;
}

/* Section: details */
.lp-details {
  padding: 100px 0;
  background: var(--bg-2);
}
.lp-details-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.lp-details-hd {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.lp-details-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-color);
  margin-bottom: 12px;
}
.lp-details-hd h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -1.2px;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.15;
  text-wrap: balance;
}
.lp-details-hd p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
}

.lp-cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.lp-cap {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.lp-cap:hover {
  border-color: var(--lp-border);
  transform: translateY(-1px);
}
.lp-cap-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--lp-soft);
  color: var(--lp-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.lp-cap-name {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
  letter-spacing: -0.005em;
}
.lp-cap-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

/* Section: challenges */
.lp-challenges {
  padding: 100px 0;
  background: var(--bg);
}
.lp-challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 48px auto 0;
  padding: 0 24px;
}
.lp-challenge {
  position: relative;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  overflow: hidden;
}
.lp-challenge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lp-color);
  opacity: 0.85;
}
.lp-challenge:hover {
  border-color: var(--lp-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.lp-challenge-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--lp-color);
  margin-bottom: 10px;
}
.lp-challenge h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.lp-challenge p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
}
.lp-challenge-fix {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--lp-color);
  font-weight: 600;
}

/* Section: how it works */
.lp-process {
  padding: 100px 0;
  background: var(--bg-2);
}
.lp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 48px auto 0;
  padding: 0 24px;
  position: relative;
}
.lp-step {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.lp-step:hover {
  border-color: var(--lp-border);
  transform: translateY(-2px);
}
.lp-step-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--lp-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px var(--lp-soft-bg);
}
.lp-step h4 {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.lp-step p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}

/* Section: get in touch */
.lp-cta {
  padding: 90px 0 110px;
  background: var(--bg);
}
.lp-cta-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 56px 40px;
  background: var(--ink);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.lp-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 30% 0%, var(--lp-glow), transparent 60%),
    radial-gradient(
      ellipse 40% 40% at 80% 100%,
      var(--lp-glow),
      transparent 55%
    );
  pointer-events: none;
  opacity: 0.55;
}
.lp-cta-card > * {
  position: relative;
  z-index: 1;
}
.lp-cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -1.2px;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.1;
  text-wrap: balance;
}
.lp-cta-card h2 em {
  font-style: normal;
  color: var(--lp-color-light);
}
.lp-cta-card p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin: 0 auto 28px;
  max-width: 560px;
}
.lp-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.lp-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--lp-color);
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  transition:
    filter 0.2s,
    transform 0.2s;
}
.lp-cta-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.lp-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.lp-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.32);
}
.lp-cta-trust {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}
.lp-cta-trust span::before {
  content: "✓ ";
  color: var(--lp-color-light);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .lp-process-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .lp-stats {
    grid-template-columns: 1fr 1fr;
    gap: 14px 0;
  }
  .lp-stat:nth-child(2)::after {
    display: none;
  }
  .lp-cap-grid {
    grid-template-columns: 1fr;
  }
  .lp-challenges-grid {
    grid-template-columns: 1fr;
  }
  .lp-process-grid {
    grid-template-columns: 1fr;
  }
  .lp-cta-card {
    padding: 40px 24px;
  }
}

/* === LANDING PAGE: LET'S TALK section (replaces simple CTA card) === */
.lp-talk {
  padding: 100px 0 110px;
  background: var(--bg-2);
}
.lp-talk-hd {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.lp-talk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: var(--lp-soft);
  border: 1px solid var(--lp-border);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-color);
  margin-bottom: 22px;
}
.lp-talk-hd h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.1;
  text-wrap: balance;
}
.lp-talk-hd h2 em {
  font-style: normal;
  color: var(--lp-color);
}
.lp-talk-hd p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.6;
}
.lp-talk-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.lp-form {
  padding: 36px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.lp-form h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.lp-form-sub {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 24px;
}
.lp-field {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-field label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.lp-field label .req {
  color: #f472b6;
  margin-left: 2px;
}
.lp-field input,
.lp-field select,
.lp-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  background: #fff;
  color: var(--text);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.lp-field textarea {
  min-height: 110px;
  resize: vertical;
}
.lp-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237B7C9B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.lp-field input:focus,
.lp-field select:focus,
.lp-field textarea:focus {
  outline: none;
  border-color: var(--lp-color);
  box-shadow: 0 0 0 3px var(--lp-soft);
}
.lp-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lp-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.lp-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 24px;
  background: var(--lp-color);
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition:
    filter 0.2s,
    transform 0.2s;
  margin-top: 8px;
}
.lp-submit:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.lp-form-fineprint {
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 12px;
  text-align: center;
}
.lp-form.sent .lp-form-fields {
  display: none;
}
.lp-form-success {
  display: none;
  text-align: center;
  padding: 40px 16px;
}
.lp-form.sent .lp-form-success {
  display: block;
}
.lp-form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.lp-form-success-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lp-form-success h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.lp-form-success p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.lp-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-side-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.lp-side-card.dark {
  background: var(--ink);
  border-color: transparent;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.lp-side-card.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 100% 0%,
    var(--lp-glow),
    transparent 60%
  );
  pointer-events: none;
}
.lp-side-card.dark > * {
  position: relative;
  z-index: 1;
}
.lp-side-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-color);
  margin-bottom: 12px;
}
.lp-side-card.dark .lp-side-eyebrow {
  color: var(--lp-color-light);
}
.lp-side-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.lp-side-card.dark h4 {
  color: #fff;
}
.lp-side-card p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.lp-side-card.dark p {
  color: rgba(255, 255, 255, 0.7);
}
.lp-side-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--lp-color);
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  transition:
    filter 0.2s,
    transform 0.2s;
}
.lp-side-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.lp-side-card.dark .lp-side-cta {
  background: #fff;
  color: var(--ink);
}
.lp-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.lp-info-row:first-of-type {
  border-top: none;
  padding-top: 0;
}
.lp-info-row svg {
  width: 16px;
  height: 16px;
  color: var(--text-3);
  flex-shrink: 0;
}
.lp-info-row a {
  color: var(--text);
  font-weight: 600;
}
.lp-info-row a:hover {
  color: var(--lp-color);
}
.lp-info-row span {
  color: var(--text-2);
}

@media (max-width: 768px) {
  .lp-talk-grid {
    grid-template-columns: 1fr;
  }
  .lp-field-row {
    grid-template-columns: 1fr;
  }
  .lp-form {
    padding: 28px 22px;
  }
}

/* === CXAS PAGE POLISH === */
/* .lp-stats .lp-stat:first-child .lp-stat-num {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
} */
.lp-trust {
  margin: 36px auto 0;
  max-width: 880px;
  text-align: center;
  padding: 0 24px;
}
.lp-trust-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.lp-trust-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  overflow-x: auto;
}
.lp-trust-row .client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  flex-shrink: 0;
  filter: grayscale(100%);
  opacity: 0.55;
  transition:
    opacity 0.25s var(--ease),
    filter 0.25s var(--ease);
}
.lp-trust-row .client-logo:first-child {
  margin-bottom: 5px;
}
.lp-trust-row .client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.lp-trust-row .client-logo svg,
.lp-trust-row .client-logo img {
  height: 20px;
  width: auto;
  max-width: 110px;
  display: block;
}
.lp-trust-row .client-logo svg[viewBox="0 0 94 32"] {
  height: 24px;
}

@media (min-width: 1080px) {
  .lp-cap-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.lp-cap-icon {
  background: var(--lp-soft);
}
.lp-cap-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--lp-color);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-challenge-fix {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-2);
}
.lp-challenge-fix-label {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-color);
  flex-shrink: 0;
  padding-top: 1px;
}

.lp-process-grid {
  position: relative;
}
.lp-process-grid::before {
  content: "";
  position: absolute;
  top: 44px;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--lp-soft-bg),
    var(--lp-color),
    var(--lp-soft-bg)
  );
  opacity: 0.35;
  z-index: 0;
}
.lp-step {
  position: relative;
  z-index: 1;
}
.lp-step-timing {
  display: inline-block;
  margin-bottom: 12px;
  padding: 3px 9px;
  background: var(--lp-soft);
  color: var(--lp-color);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lp-step.outcome {
  background: linear-gradient(135deg, var(--lp-soft) 0%, #fff 100%);
  border-color: var(--lp-color);
}
.lp-step.outcome .lp-step-badge {
  background: var(--lp-color);
  box-shadow: 0 6px 18px var(--lp-soft-bg);
}
@media (max-width: 1024px) {
  .lp-process-grid::before {
    display: none;
  }
}
@media (max-width: 900px) {
  .lp-trust-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .lp-trust-row .client-logo svg,
  .lp-trust-row .client-logo img {
    height: 18px;
    max-width: 96px;
  }
}

/* === LP FAQ section (segment-page common questions) ==================== */
.lp-faq {
  padding: 96px 0 88px;
  background: var(--bg-2, #fafafe);
}
.lp-faq-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}
.lp-faq-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-color);
  text-align: center;
  margin-bottom: 14px;
}
.lp-faq-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  text-align: center;
  color: var(--text);
  margin: 0 auto 12px;
  max-width: 640px;
}
.lp-faq-sub {
  text-align: center;
  color: var(--text-2);
  font-size: 15px;
  margin-bottom: 36px;
}
.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-faq-list .faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.lp-faq-list .faq-item:hover {
  border-color: var(--lp-soft, rgba(11, 10, 31, 0.18));
}
.lp-faq-list .faq-item[open] {
  border-color: var(--lp-color);
  box-shadow: 0 6px 20px rgba(11, 10, 31, 0.06);
}
.lp-faq-list .faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.lp-faq-list .faq-body {
  padding: 0 22px 20px;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.65;
}
@media (max-width: 720px) {
  .lp-faq {
    padding: 72px 0 64px;
  }
  .lp-faq-title {
    font-size: 30px;
  }
  .lp-faq-list .faq-item summary {
    padding: 16px 18px;
    font-size: 14.5px;
  }
  .lp-faq-list .faq-body {
    padding: 0 18px 18px;
  }
}

:root {
  --lp-color: #fea115;
  --lp-color-light: #ffc062;
  --lp-soft: rgba(254, 161, 21, 0.08);
  --lp-border: rgba(254, 161, 21, 0.3);
  --lp-soft-bg: rgba(254, 161, 21, 0.18);
  --lp-glow: rgba(254, 161, 21, 0.25);
  --lp-dot-1: rgba(254, 161, 21, 0.1);
  --lp-dot-2: rgba(254, 161, 21, 0.06);
}
.lp-hero::before {
  background-image:
    radial-gradient(circle, rgba(254, 161, 21, 0.55) 1.6px, transparent 2.2px),
    radial-gradient(circle, rgba(254, 161, 21, 0.42) 1.4px, transparent 2px),
    radial-gradient(circle, rgba(254, 161, 21, 0.4) 1.2px, transparent 1.8px),
    radial-gradient(circle, rgba(254, 161, 21, 0.45) 1.6px, transparent 2.2px),
    radial-gradient(circle, rgba(254, 161, 21, 0.28) 1px, transparent 1.6px);
  background-size:
    113px 97px,
    89px 71px,
    67px 53px,
    131px 109px,
    53px 79px;
  background-position:
    0 0,
    47px 31px,
    19px 41px,
    73px 17px,
    31px 5px;
}

.cx-kb {
  background: #fff;
  padding: 96px 0;
  border-top: 1px solid var(--line);
}
.cx-kb-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: start;
}
.cx-kb-main h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.12;
  color: var(--text);
  margin: 8px 0 18px;
  text-wrap: balance;
}
.cx-kb-main h2 em {
  color: var(--indigo);
  font-style: normal;
}
.cx-kb-main p {
  text-align: justify;
  margin-bottom: 10px;
}
.cx-kb-eyebrow {
  display: inline-block;
  background: var(--indigo-50);
  color: var(--indigo);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  border: 1px solid var(--indigo-100);
}
.cx-kb-lead {
  font-size: 18px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 500;
  border-left: 3px solid var(--indigo);
  padding-left: 22px;
}
.cx-kb-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  margin: 36px 0 14px;
  scroll-margin-top: 80px;
}
.cx-kb-body h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: -0.2px;
  margin: 22px 0 8px;
}
.cx-kb-body p {
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.78;
  margin-bottom: 14px;
}
.cx-kb-body b,
.cx-kb-body strong {
  color: var(--text);
  font-weight: 700;
}
.cx-kb-body em {
  font-style: italic;
  color: var(--text);
}
.cx-kb-body a {
  color: var(--indigo);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 0.15s ease;
}
.cx-kb-body a:hover {
  color: var(--purple);
}
.cx-kb-callout {
  background: var(--lilac-soft);
  border: 1px solid var(--lilac);
  border-left: 4px solid var(--purple);
  border-radius: 8px;
  padding: 22px 26px;
  margin: 28px 0;
}
.cx-kb-callout-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cx-kb-callout p {
  margin: 0;
  font-size: 15px;
  color: var(--text);
}
.cx-kb-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.cx-kb-stat {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
}
.cx-kb-stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--indigo);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}
.cx-kb-stat-l {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.4;
}
.cx-kb-toc {
  position: sticky;
  top: 100px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 22px;
}
.cx-kb-toc-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.cx-kb-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cx-kb-toc li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.cx-kb-toc li:last-child {
  border-bottom: none;
}
.cx-kb-toc a {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.15s ease;
}
.cx-kb-toc a:hover {
  color: var(--indigo);
}
.cx-kb-toc-num {
  display: inline-block;
  width: 22px;
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--text-3);
  font-weight: 700;
}
.cx-kb-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin: 22px 0;
}
.cx-kb-table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.cx-kb-table-row:last-child {
  border-bottom: none;
}
.cx-kb-table-row.head {
  background: var(--bg-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
}
.cx-kb-table-row > div {
  padding: 12px 14px;
  font-size: 13.5px;
  line-height: 1.5;
}
.cx-kb-table-row > div:first-child {
  font-weight: 700;
  color: var(--text);
  border-right: 1px solid var(--line);
}
.cx-kb-table-row > div:not(:first-child) {
  color: var(--text-2);
  border-right: 1px solid var(--line);
}
.cx-kb-table-row > div:last-child {
  border-right: none;
}
/* Cross-link cards */
.cx-kb-link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 22px 0;
}
.cx-kb-link-card {
  display: block;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none !important;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.cx-kb-link-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent, var(--indigo));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.cx-kb-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11, 10, 31, 0.08);
  border-color: var(--accent, var(--indigo));
}
.cx-kb-link-card:hover::before {
  transform: scaleX(1);
}
.cx-kb-link-card.verify {
  --accent: #10b981;
}
.cx-kb-link-card.hcn {
  --accent: #6366f1;
}
.cx-kb-link-card-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent, var(--indigo));
  margin-bottom: 8px;
}
.cx-kb-link-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.cx-kb-link-card p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}
.cx-kb-link-card-arrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent, var(--indigo));
  margin-top: 10px;
}
@media (max-width: 980px) {
  .cx-kb-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cx-kb-toc {
    position: static;
  }
  .cx-kb-stats {
    grid-template-columns: 1fr;
  }
  .cx-kb-main h2 {
    font-size: 28px;
  }
  .cx-kb-table-row {
    grid-template-columns: 1.5fr 1fr;
  }
  .cx-kb-table-row > div:nth-child(n + 3) {
    display: none;
  }
  .cx-kb-link-grid {
    grid-template-columns: 1fr;
  }
}
