/* verify.css — page-specific styles only. Global styles in global.css */

/* 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,.55) 0%, rgba(11,10,31,.15) 50%, rgba(124,58,237,.35) 100%),
    radial-gradient(ellipse 60% 50% at 30% 30%, rgba(199,191,255,.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,.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,.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: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  z-index: 3;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,.22); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,.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: -.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 */
.regions-sub-hd {
  margin-bottom: 24px;
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px;
}
.regions-sub-hd h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
}
.regions-sub-hd p {
  font-size: 14px; color: var(--text-2);
  max-width: 460px;
  text-align: right;
}

/* Markets grid */
.regions-markets-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 80px;
}
.market-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: all .25s var(--ease);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.market-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--indigo-3);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.market-card:hover {
  border-color: var(--indigo-100);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.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-flag {
  font-size: 28px;
  line-height: 1;
}
.market-card-status {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.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 h4 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.market-card-why {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.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 */
.regions-journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}
.journey-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px 24px;
  transition: all .3s var(--ease);
  z-index: 1;
  display: flex; flex-direction: column;
  overflow: hidden;
  --jp: var(--indigo);
  --jp-soft: rgba(79,70,229,.10);
  --jp-glow: rgba(79,70,229,.20);
}
.journey-card[data-phase="2"] {
  --jp: var(--purple);
  --jp-soft: rgba(124,58,237,.10);
  --jp-glow: rgba(124,58,237,.20);
}
.journey-card[data-phase="3"] {
  --jp: var(--coral);
  --jp-soft: rgba(244,114,182,.12);
  --jp-glow: rgba(244,114,182,.20);
}
.journey-card[data-phase="4"] {
  --jp: var(--teal);
  --jp-soft: rgba(6,182,212,.12);
  --jp-glow: rgba(6,182,212,.22);
}
.journey-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--jp);
  opacity: 0.9;
}
.journey-card::after {
  content: '';
  position: absolute;
  top: 3px; left: 0; right: 0; height: 60px;
  background: linear-gradient(180deg, var(--jp-soft) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.journey-card:hover {
  border-color: var(--jp);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px var(--jp-glow);
}
.journey-card:hover::after { opacity: 1; }

.journey-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.journey-card-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--jp);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 6px 16px var(--jp-glow);
}
.journey-card-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--jp-soft);
  color: var(--jp);
  display: flex; align-items: center; justify-content: center;
}
.journey-card-icon svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.journey-card h4 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -.01em;
  position: relative; z-index: 1;
}
.journey-card-duration {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: .04em;
  color: var(--jp);
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.journey-card-duration::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--jp);
}
.journey-card ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 9px;
  position: relative; z-index: 1;
}
.journey-card ul li {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}
.journey-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 1px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--jp-soft);
}
.journey-card ul li::after {
  content: '';
  position: absolute;
  left: 4px; top: 5px;
  width: 7px; height: 4px;
  border-left: 1.6px solid var(--jp);
  border-bottom: 1.6px solid var(--jp);
  transform: rotate(-45deg);
}

/* === TESTIMONIALS / PROOF === */
.proof {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}
.proof-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.proof-card {
  position: relative;
  padding: 32px 28px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .3s var(--ease);
  display: flex; flex-direction: column;
  overflow: hidden;
  --pc: var(--indigo);
  --pc-soft: rgba(79,70,229,.10);
  --pc-glow: rgba(79,70,229,.18);
}
.proof-card[data-color="2"] { --pc: var(--purple); --pc-soft: rgba(124,58,237,.10); --pc-glow: rgba(124,58,237,.18); }
.proof-card[data-color="3"] { --pc: var(--teal); --pc-soft: rgba(6,182,212,.12); --pc-glow: rgba(6,182,212,.20); }
.proof-card::before {
  content: '\201C';
  position: absolute;
  top: -54px; right: -16px;
  font-family: 'Inter Tight', Georgia, serif;
  font-size: 220px; font-weight: 700;
  line-height: 1;
  color: var(--pc-soft);
  z-index: 0;
  pointer-events: none;
  letter-spacing: -.04em;
}
.proof-card:hover {
  border-color: var(--pc);
  box-shadow: 0 14px 32px var(--pc-glow);
  transform: translateY(-4px);
}
.proof-industry {
  display: inline-flex; align-items: center;
  font-family: var(--font-display);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pc);
  padding: 5px 12px;
  background: var(--pc-soft);
  border-radius: var(--radius-pill);
  align-self: flex-start;
  position: relative; z-index: 1;
}
.proof-metric {
  margin-top: 22px;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.proof-metric-num {
  font-family: var(--font-display);
  font-size: 50px; font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--pc);
}
.proof-metric-label {
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 600;
  color: var(--text-2);
  margin-top: 8px;
  line-height: 1.35;
}
.proof-quote-mark { display: none; }
.proof-quote {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 22px;
  font-weight: 400;
  flex: 1;
  position: relative; z-index: 1;
}
.proof-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  position: relative; z-index: 1;
}
.proof-av {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700; color: #fff;
  background: var(--pc);
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--pc-glow);
}
.proof-name {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700; color: var(--text);
}
.proof-role {
  font-size: 12px; color: var(--text-3);
  margin-top: 1px;
}
.proof-author > div:not(.proof-av) { flex: 1; }
.proof-link {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--pc);
  white-space: nowrap;
  transition: opacity .2s var(--ease);
  margin-left: auto;
}
.proof-link:hover { opacity: 0.75; }

/* Logo strip */
.proof-logos {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center;
  gap: 22px;
}
.proof-logos-label {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.proof-logos-row {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 56px;
}
.proof-logo {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text-3);
  opacity: 0.65;
  transition: opacity .25s var(--ease), color .25s var(--ease);
}
.proof-logo:hover { opacity: 1; color: var(--text-2); }

/* === VALUES STRIP === */
.values-strip-wrap {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
}
.values-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.values-strip-item {
  position: relative;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .3s var(--ease);
  text-align: left;
  overflow: hidden;
  --vc: var(--indigo);
  --vc-soft: rgba(79,70,229,.10);
  --vc-glow: rgba(79,70,229,.16);
}
.values-strip-item[data-color="2"] { --vc: var(--purple); --vc-soft: rgba(124,58,237,.10); --vc-glow: rgba(124,58,237,.16); }
.values-strip-item[data-color="3"] { --vc: var(--teal); --vc-soft: rgba(6,182,212,.12); --vc-glow: rgba(6,182,212,.20); }
.values-strip-item[data-color="4"] { --vc: var(--coral); --vc-soft: rgba(244,114,182,.12); --vc-glow: rgba(244,114,182,.18); }
.values-strip-item[data-color="5"] { --vc: var(--amber); --vc-soft: rgba(245,158,11,.12); --vc-glow: rgba(245,158,11,.20); }
.values-strip-item[data-color="6"] { --vc: var(--green); --vc-soft: rgba(16,185,129,.12); --vc-glow: rgba(16,185,129,.20); }
.values-strip-item::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle at top right, var(--vc-soft) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.values-strip-item:hover {
  border-color: var(--vc);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px var(--vc-glow);
}
.values-strip-item:last-child { border-right: 1px solid var(--line); }
.values-strip-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--vc-soft);
  color: var(--vc);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 0;
  position: relative; z-index: 1;
}
.values-strip-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.values-strip-item h4 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -.01em;
  position: relative; z-index: 1;
}
.values-strip-item p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  position: relative; z-index: 1;
}

/* === FINAL CTA === */
.final-cta {
  padding: 100px 0;
  background: var(--bg);
}
.final-cta-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-orb {
  position: absolute;
  width: 600px; height: 400px;
  border-radius: 50%;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(199,191,255,.25), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.final-cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -1.8px;
  line-height: 1.05;
  margin-bottom: 20px;
  position: relative;
}
.final-cta-card h2 .accent {
  background: linear-gradient(90deg, #C7BFFF 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.final-cta-card > p {
  font-size: 18px; color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  max-width: 540px; margin-left: auto; margin-right: auto;
  position: relative;
}
.final-cta-actions {
  display: flex; justify-content: center; gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  position: relative;
}
.btn-white-xl {
  background: #fff; color: var(--ink);
  padding: 16px 32px;
  font-size: 15px; font-weight: 600;
  border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .25s var(--ease);
}
.btn-white-xl:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,255,255,.25);
}
.btn-ghost-white {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.2);
  padding: 15px 30px;
  font-size: 15px; font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all .25s var(--ease);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.35); }
.final-cta-trust {
  display: flex; justify-content: center; gap: 24px;
  flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.55);
  position: relative;
}
.final-cta-trust span { display: inline-flex; align-items: center; gap: 5px; }
.final-cta-trust span::before {
  content: '✓'; font-weight: 700; color: var(--green);
}

/* === FAQ === */
.faq {
  padding: 100px 0;
  background: var(--bg);
}
.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
  display: flex; flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item[open] {
  border-color: var(--indigo-100);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 15.5px; font-weight: 600;
  color: var(--text);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 12px; height: 12px;
  border-right: 1.8px solid var(--text-3);
  border-bottom: 1.8px solid var(--text-3);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .25s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}
.faq-item summary:hover { color: var(--indigo); }
.faq-body {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}
@media (max-width: 600px) {
  .faq-item summary { font-size: 14px; padding: 16px 18px; }
  .faq-body { padding: 0 18px 18px; font-size: 13.5px; }
}

/* === FOOTER === */
footer {
  background: #EEF0F8;
  border-top: 1px solid #E0E2EE;
  padding: 0 0 28px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0.9;
  z-index: 2;
}
footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 0%, rgba(124,58,237,0.08), transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(79,70,229,0.07), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
footer > * { position: relative; z-index: 1; }

/* Newsletter strip */
.footer-newsletter {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 36px 40px;
  margin-top: 56px;
  margin-bottom: 56px;
  background: linear-gradient(135deg, var(--lilac-soft) 0%, var(--indigo-50) 100%);
  border: 1px solid var(--indigo-100);
  border-radius: var(--radius-lg);
}
.footer-newsletter-text h4 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.footer-newsletter-text p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}
.footer-newsletter-form {
  display: flex;
  gap: 8px;
}
.footer-newsletter-form input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  background: #fff;
  color: var(--text);
}
.footer-newsletter-form input:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(79,70,229,.12);
}
.footer-newsletter-form button {
  padding: 13px 24px;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: filter .2s var(--ease), transform .2s var(--ease);
}
.footer-newsletter-form button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.footer-newsletter.sent .footer-newsletter-form { display: none; }
.footer-newsletter.sent .footer-newsletter-text h4 { color: var(--green); }

/* Footer grid */
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 28px;
  margin-bottom: 20px;
  width: auto;
  display: block;
  filter: brightness(0);
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 320px;
  margin-bottom: 18px;
}
.footer-live {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 18px;
  padding: 6px 12px;
  background: var(--green-50);
  border: 1px solid rgba(16,185,129,.25);
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  color: var(--text-2);
  font-weight: 500;
}
.footer-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16,185,129,.22);
  animation: pulseDot 2.4s ease-in-out infinite;
}
.footer-contact {
  display: flex; flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--text-2);
}
.footer-contact-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: baseline;
}
.footer-contact-label {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.footer-contact a { color: var(--text-2); transition: color .2s var(--ease); }
.footer-contact a:hover { color: var(--indigo); }
.footer-addr {
  font-size: 13px; color: var(--text-3);
  line-height: 1.7;
}

/* Footer columns */
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  color: var(--text); margin-bottom: 16px;
  letter-spacing: -.2px;
}
.footer-col ul { list-style: none; }
.footer-col li + li { margin-top: 10px; }
.footer-col a {
  font-size: 14px; color: var(--text-2);
  transition: color .2s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-col a:hover { color: var(--indigo); }
.footer-tag {
  font-family: var(--font-display);
  font-size: 9.5px; font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 2px 7px;
  background: var(--green-50);
  color: var(--green);
  border-radius: var(--radius-pill);
}

/* Trust badges row */
.footer-badges {
  display: flex; flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.footer-badges-label {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-right: 8px;
}
.footer-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  color: var(--text-2);
}
.footer-badge svg {
  width: 18px; height: 18px;
  color: var(--indigo);
  flex-shrink: 0;
}
.footer-badge-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
}
.footer-badge-status {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 1px;
}
.footer-badge.in-progress .footer-badge-status { color: var(--amber); }
.footer-badge.live .footer-badge-status { color: var(--green); }

/* Bottom bar */
.footer-bot {
  padding-top: 4px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bot-left {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 20px;
}
.footer-bot p {
  font-size: 12.5px; color: var(--text-3);
}
.footer-legal {
  display: flex; gap: 16px;
}
.footer-legal a {
  font-size: 12.5px;
  color: var(--text-3);
  transition: color .2s var(--ease);
}
.footer-legal a:hover { color: var(--indigo); }
.footer-bot-right {
  display: flex; align-items: center;
  gap: 18px;
}
.footer-totop {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  color: var(--text-3);
  display: inline-flex; align-items: center; gap: 4px;
  transition: color .2s var(--ease);
  cursor: pointer;
}
.footer-totop:hover { color: var(--indigo); }
.footer-social {
  display: flex; gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  transition: all .2s var(--ease);
}
.footer-social a:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  transform: translateY(-1px);
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }

/* === 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; }
  /* dropdown in mobile nav */
  .nav-dropdown-trigger {
    width: 100%; font-size: 15px; padding: 12px 16px;
    justify-content: space-between;
    border-radius: 8px;
  }
  .nav-dropdown-menu {
    position: static; border: none; box-shadow: none;
    padding: 0 0 4px 16px; background: transparent;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a { font-size: 14px; padding: 9px 14px; }


  .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; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .values-strip { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .btn-primary-xl, .btn-secondary-xl { width: 100%; justify-content: center; }
}

/* === OTA PAGE HERO === */
.ota-page-hero {
  background: var(--ink);
  color: #fff;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.ota-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(199,191,255,.16) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(245,158,11,.08) 0%, transparent 55%);
  pointer-events: none;
}
.ota-page-hero-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.ota-page-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
}
.ota-page-eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: #38B6FF;
  box-shadow: 0 0 0 3px rgba(56,182,255,.25);
}
.ota-page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -2px;
  margin: 0 0 20px;
  color: #fff;
  text-wrap: balance;
}
.ota-page-hero h1 .ota-accent {
  background: linear-gradient(180deg, #C7BFFF 0%, #818CF8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ota-page-hero p {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,.65);
  max-width: 720px;
  margin: 0 auto 40px;
}

/* Lifecycle stage strip */
.ota-stages {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.ota-stage {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  padding: 14px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  text-align: left;
  min-width: 180px;
  transition: all .25s var(--ease);
  position: relative;
}
.ota-stage:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.20);
  transform: translateY(-2px);
}
.ota-stage-num {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em;
  color: rgba(255,255,255,.45);
}
.ota-stage[data-stage="1"] .ota-stage-num { color: #F59E0B; }
.ota-stage[data-stage="2"] .ota-stage-num { color: #38B6FF; }
.ota-stage[data-stage="3"] .ota-stage-num { color: rgba(255,255,255,.35); }
.ota-stage-name {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}
.ota-stage-service {
  font-size: 12px;
  color: rgba(255,255,255,.55);
}
.ota-stage-service em {
  font-style: normal;
  color: rgba(255,255,255,.4);
  font-size: 11px;
}
.ota-stage.soon {
  opacity: 0.7;
  cursor: default;
}
.ota-stage-arrow {
  display: flex; align-items: center;
  color: rgba(255,255,255,.25);
  font-family: var(--font-display);
  font-size: 18px;
  padding: 0 4px;
}

/* === STAGE 01, HRS === */
.hrs {
  position: relative;
  padding: 100px 0 120px;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.hrs::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 70% 20%, rgba(124,58,237,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(245,158,11,.10) 0%, transparent 55%);
  pointer-events: none;
}
.hrs::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,.3), transparent);
}
.hrs-wrap {
  position: relative; z-index: 1;
  max-width: 1180px;
}

.hrs-hero {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 72px;
  padding: 0 16px;
}
.hrs-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  border: 1px solid rgba(245,158,11,.25);
  background: rgba(245,158,11,.08);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 24px;
}
.hrs-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #F59E0B;
  box-shadow: 0 0 0 3px rgba(245,158,11,.25);
}
.hrs-stage-tag {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em;
  color: #C7BFFF;
  margin-right: 2px;
}
.hrs-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -1.8px;
  color: #fff;
  margin: 0 0 22px;
  text-wrap: balance;
  padding-bottom: .12em;
}
.hrs-headline em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(180deg, #FFD580 0%, #F59E0B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hrs-kicker {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,.62);
  max-width: 680px;
  margin: 0 auto;
}

/* HRS stats */
.hrs-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto 64px;
  padding: 0 16px;
}
.hrs-stat-card {
  position: relative;
  padding: 40px 32px 32px;
  background: linear-gradient(135deg, rgba(124,58,237,.18) 0%, rgba(124,58,237,.04) 100%);
  border: 1px solid rgba(124,58,237,.30);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hrs-stat-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -20px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(245,158,11,.18) 0%, transparent 65%);
  pointer-events: none;
}
.hrs-stat-num {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(80px, 9vw, 124px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -4px;
  background: linear-gradient(180deg, #FFD580 0%, #F59E0B 55%, #D97706 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.hrs-stat-num sup {
  font-size: 0.55em;
  vertical-align: 0.2em;
  margin-left: 2px;
}
.hrs-stat-label {
  position: relative;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -.005em;
}
.hrs-stat-card p {
  position: relative;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  max-width: 360px;
}

/* HRS capabilities */
.hrs-capabilities {
  max-width: 880px;
  margin: 0 auto 56px;
  padding: 36px 32px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
}
.hrs-capabilities-hd {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.hrs-capabilities h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}
.hrs-capabilities-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #F59E0B;
}
.hrs-capability-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.hrs-capability-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}
.hrs-capability-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(245,158,11,.22);
}
.hrs-capability-list li::after {
  content: '';
  position: absolute;
  left: 5px; top: 7px;
  width: 8px; height: 4px;
  border-left: 1.8px solid #F59E0B;
  border-bottom: 1.8px solid #F59E0B;
  transform: rotate(-45deg);
}

/* HRS CTA */
.hrs-cta-row {
  text-align: center;
  padding: 0 16px;
}
.hrs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: filter .25s var(--ease), transform .25s var(--ease);
  box-shadow: 0 8px 24px rgba(124,58,237,.35), 0 2px 6px rgba(124,58,237,.2);
}
.hrs-btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.hrs-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  margin-left: 8px;
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.18);
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.hrs-btn-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.30);
}

/* === STAGE 03, CS & BACKOFFICE TEASER === */
.cs-teaser {
  position: relative;
  background: var(--ink);
  padding: 80px 0 100px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cs-teaser::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(6,182,212,.10) 0%, transparent 60%);
  pointer-events: none;
}
.cs-teaser-inner {
  position: relative; z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 32px;
  background: rgba(255,255,255,.025);
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
}
.cs-teaser-stage {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 12px;
  background: rgba(6,182,212,.12);
  border: 1px solid rgba(6,182,212,.30);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #06B6D4;
  margin-bottom: 18px;
}
.cs-teaser h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.cs-teaser p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.62);
  max-width: 540px;
  margin: 0 auto 24px;
}
.cs-teaser a {
  color: #06B6D4;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(6,182,212,.5);
}
.cs-teaser a:hover {
  text-decoration-color: #06B6D4;
}

@media (max-width: 768px) {
  .ota-stages { flex-direction: column; gap: 8px; }
  .ota-stage { width: 100%; }
  .ota-stage-arrow { transform: rotate(90deg); }
  .hrs-stats { grid-template-columns: 1fr; gap: 14px; }
  .hrs-stat-card { padding: 28px 24px 24px; }
  .hrs-capability-list { grid-template-columns: 1fr; gap: 10px; }
  .hrs-capabilities { padding: 28px 22px; }
  .hrs-btn-ghost { display: block; margin: 12px auto 0; }
}


/* === OTA HERO (new big home-page-style hero) === */
.ota-hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: 140px 0 80px;
  overflow: hidden;
}
.ota-hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.ota-hero-bg-grad {
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 1400px; height: 900px;
  background:
    radial-gradient(ellipse 45% 55% at 50% 0%, rgba(124,58,237,.30) 0%, transparent 60%),
    radial-gradient(ellipse 35% 45% at 25% 50%, rgba(56,182,255,.18) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 75% 50%, rgba(245,158,11,.15) 0%, transparent 55%);
  filter: blur(40px);
}
.ota-hero-bg-dots {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(124,58,237,.45) 1.6px, transparent 2.2px),
    radial-gradient(circle, rgba(56,182,255,.40) 1.4px, transparent 2px),
    radial-gradient(circle, rgba(245,158,11,.40) 1.2px, transparent 1.8px),
    radial-gradient(circle, rgba(6,182,212,.35) 1.6px, transparent 2.2px),
    radial-gradient(circle, rgba(124,58,237,.25) 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;
  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);
}
.ota-hero-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 16px;
}
.ota-hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
}
.ota-hero-pill::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: #38B6FF;
  box-shadow: 0 0 0 3px rgba(56,182,255,.25);
  animation: pulse 2s infinite;
}
.ota-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.04;
  letter-spacing: -2.5px;
  color: #fff;
  margin: 0 0 22px;
  text-wrap: balance;
  padding-bottom: .1em;
}
.ota-hero h1 em {
  font-style: normal;
  background: linear-gradient(180deg, #C7BFFF 0%, #818CF8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ota-hero-sub {
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.65;
  color: rgba(255,255,255,.72);
  max-width: 720px;
  margin: 0 auto 36px;
}
.ota-hero-cta {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.ota-hero-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  border-radius: var(--radius-pill);
  transition: filter .25s var(--ease), transform .25s var(--ease);
  box-shadow: 0 12px 32px rgba(79,70,229,.4);
}
.ota-hero-btn-primary:hover { filter: brightness(1.08); transform: translateY(-2px); }
.ota-hero-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px;
  background: transparent;
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.18);
  font-family: var(--font-display);
  font-size: 15px; font-weight: 500;
  border-radius: var(--radius-pill);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.ota-hero-btn-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.30);
}

/* Hero stat strip */
.ota-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.ota-hero-stat {
  text-align: center;
  position: relative;
  padding: 0 16px;
}
.ota-hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 32px;
  background: rgba(255,255,255,.10);
}
.ota-hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: #fff;
}
.ota-hero-stat-num.purple { background: linear-gradient(180deg, #C7BFFF 0%, #818CF8 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ota-hero-stat-num.amber  { background: linear-gradient(180deg, #FFD580 0%, #F59E0B 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ota-hero-stat-num.blue   { background: linear-gradient(180deg, #7DD0FF 0%, #38B6FF 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ota-hero-stat-num.teal   { background: linear-gradient(180deg, #67E8F9 0%, #06B6D4 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ota-hero-stat-l {
  display: block;
  font-size: 11.5px;
  color: rgba(255,255,255,.55);
  margin-top: 6px;
  font-weight: 500;
}

/* === OTA FINAL CTA === */
.ota-final-cta {
  background: var(--ink);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.ota-final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(124,58,237,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 100%, rgba(56,182,255,.10) 0%, transparent 55%);
  pointer-events: none;
}
.ota-final-cta-inner {
  position: relative; z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.ota-final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #fff;
  margin: 0 0 18px;
  text-wrap: balance;
}
.ota-final-cta h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #C7BFFF 0%, #818CF8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ota-final-cta p {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin: 0 auto 32px;
}
.ota-final-cta-actions {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.ota-final-trust {
  display: flex; gap: 24px; justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.50);
}
.ota-final-trust span {
  display: inline-flex; align-items: center; gap: 5px;
}
.ota-final-trust span::before {
  content: '✓';
  color: #06B6D4;
  font-weight: 700;
}

@media (max-width: 768px) {
  .ota-hero { padding: 100px 0 60px; }
  .ota-hero-stats { grid-template-columns: 1fr 1fr; gap: 16px 0; padding: 18px 0; }
  .ota-hero-stat:nth-child(2)::after { display: none; }
  .ota-hero-stat { padding: 8px 0; }
  .ota-hero-cta { flex-direction: column; align-items: stretch; }
  .ota-hero-cta a { justify-content: center; }
  .ota-final-cta-actions { flex-direction: column; align-items: stretch; }
}


/* ============ UNIFIED DESIGN SYSTEM OVERRIDES ============ */
/* Lock the dark editorial palette across ALL OTA sections so they read as one page */

/* 1. ALL primary CTA buttons share the same brand gradient + shadow shape */
.hrs-btn-primary,
.ota-hero-btn-primary {
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 12px 32px -6px rgba(79,70,229,.55);
}
.hrs-btn-primary:hover,
.ota-hero-btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.12) inset,
    0 16px 40px -6px rgba(79,70,229,.7);
}

/* 2. Unified ghost buttons, same border, padding, hover */
.hrs-btn-ghost,
.ota-hero-btn-ghost {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
  padding: 14px 26px;
  transition: background .2s, border-color .2s, transform .2s;
}
.hrs-btn-ghost:hover,
.ota-hero-btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-1px);
}

/* 3. Standardize ALL service-section vertical padding */
.hrs { padding: 100px 0 110px; }
.otacs { padding: 110px 0 110px; }
.cs-teaser { padding: 100px 0 100px; }
.ota-final-cta { padding: 100px 0; }

/* 4. Unified service-section deep background, single dark base with section accent overlays */
.hrs, .otacs, .cs-teaser, .ota-final-cta { background: #07071A; }

/* 5. Unified eyebrow chip pattern, shared template, only the dot color changes per stage */
.hrs-eyebrow, .otacs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 24px;
}
.hrs-eyebrow-dot, .otacs-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
}
.hrs-eyebrow-dot { background: #F59E0B; box-shadow: 0 0 0 3px rgba(245,158,11,.22); }
.otacs-eyebrow-dot { background: #38B6FF; box-shadow: 0 0 0 3px rgba(56,182,255,.22); }

/* 6. Stage tag standardized, small uppercase label inside the eyebrow */
.hrs-stage-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  margin-right: 4px;
}

/* 7. Unified hairline at top of each service section in its stage accent color, gives identity without fragmenting the layout */
.hrs::after,
.otacs::after,
.cs-teaser::after,
.ota-final-cta::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  z-index: 4;
  pointer-events: none;
}
.hrs::after        { background: linear-gradient(90deg, transparent, rgba(245,158,11,.45), transparent); }
.otacs::after      { background: linear-gradient(90deg, transparent, rgba(56,182,255,.45), transparent); }
.cs-teaser::after  { background: linear-gradient(90deg, transparent, rgba(6,182,212,.45), transparent); }
.ota-final-cta::after { background: linear-gradient(90deg, transparent, rgba(124,58,237,.45), transparent); }

/* 8. Lifecycle flow indicator, subtle vertical line between service sections
   creates a visual "thread" through the page */
.hrs::before {
  content: '';
  position: absolute;
  bottom: -28px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 56px;
  background: linear-gradient(180deg, rgba(245,158,11,.5), rgba(56,182,255,.3));
  z-index: 4;
  pointer-events: none;
}
.otacs::before {
  content: '';
  position: absolute;
  bottom: -28px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 56px;
  background: linear-gradient(180deg, rgba(56,182,255,.4), rgba(6,182,212,.3));
  z-index: 4;
  pointer-events: none;
}
.cs-teaser::before {
  content: '';
  position: absolute;
  bottom: -28px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 56px;
  background: linear-gradient(180deg, rgba(6,182,212,.4), rgba(124,58,237,.3));
  z-index: 4;
  pointer-events: none;
}

/* 9. Unify big-stat number visual treatment, same font weight, letter-spacing, line-height
   only the gradient color shifts to match the stage */
.hrs-stat-num, .otacs-rd-num {
  letter-spacing: -.025em;
}

/* 10. Unify capability/list bullet sizing across HRS and HCN */
.hrs-capability-list li::before,
.hrs-capability-list li::after { transition: none; }

/* 11. Hero stat-strip dividers, match the lifecycle navigator border style */
.ota-hero-stats {
  border-top-color: rgba(255,255,255,.08);
  border-bottom-color: rgba(255,255,255,.08);
}
.ota-hero-stat:not(:last-child)::after {
  background: rgba(255,255,255,.08);
}

/* 12. Lifecycle navigator, unified card style matching the rest of the page */
.ota-stages .ota-stage {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  transition: background .25s, border-color .25s, transform .25s;
}
.ota-stages .ota-stage:hover:not(.soon) {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-2px);
}

/* 13. CS teaser stage chip restyled to match other stage indicators */
.cs-teaser-stage {
  background: rgba(6,182,212,.10);
  border: 1px solid rgba(6,182,212,.25);
}

/* 14. Standardize headline padding-bottom across all dark editorial sections
   so descenders don't get clipped on gradient text */
.hrs-headline,
.otacs-headline,
.ota-hero h1,
.ota-final-cta h2 {
  padding-bottom: .12em;
}

/* 15. Add intentional max-width to the inner of each service section
   so they all share the same content rhythm */
.hrs-wrap,
.otacs-wrap {
  max-width: 1180px;
  padding: 0 24px;
}

/* 16. Soften the dotted hero pattern slightly so the rest of the page reads more unified
   (the dotted hero has been the loudest element) */
.ota-hero-bg-dots {
  opacity: 0.85;
}


/* === OTA PILLARS, three-card service grid (replaces separate HRS/HCN/CS sections) === */
.ota-pillars {
  background: #07071A;
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
}
.ota-pillars::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(124,58,237,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 0% 30%, rgba(245,158,11,.05) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 100% 30%, rgba(56,182,255,.05) 0%, transparent 55%);
  pointer-events: none;
}
.ota-pillars-hd {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  padding: 0 24px;
}
.ota-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 22px;
}
.ota-eyebrow-pill::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: #C7BFFF;
}
.ota-pillars-hd h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #fff;
  margin: 0 0 16px;
  text-wrap: balance;
  padding-bottom: .08em;
}
.ota-pillars-hd h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #C7BFFF 0%, #818CF8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ota-pillars-hd p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
}
.ota-pillars-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.ota-pillar {
  position: relative;
  padding: 32px 28px 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  --pc: #818CF8;
  --pc-soft: rgba(124,58,237,.10);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  overflow: hidden;
}
.ota-pillar[data-stage="1"] { --pc: #F59E0B; --pc-soft: rgba(245,158,11,.10); }
.ota-pillar[data-stage="2"] { --pc: #38B6FF; --pc-soft: rgba(56,182,255,.10); }
.ota-pillar[data-stage="3"] { --pc: #06B6D4; --pc-soft: rgba(6,182,212,.10); }
.ota-pillar:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-3px);
}
.ota-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 2px;
  background: var(--pc);
  opacity: .7;
  border-radius: 0 0 2px 2px;
}
.ota-pillar-stage {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pc);
  margin-bottom: 14px;
  margin-top: 4px;
}
.ota-pillar-name {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}
.ota-pillar-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  margin-bottom: 22px;
  font-weight: 500;
}
.ota-pillar-stat {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 24px;
  padding: 18px 20px;
  background: var(--pc-soft);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
}
.ota-pillar-stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  color: var(--pc);
  flex-shrink: 0;
}
.ota-pillar-stat-l {
  font-size: 12.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.35;
}
.ota-pillar-desc {
  font-size: 14px;
  color: rgba(255,255,255,.70);
  line-height: 1.6;
  margin-bottom: 18px;
}
.ota-pillar ul {
  list-style: none;
  margin-bottom: 26px;
  flex: 1;
  padding: 0;
  display: flex; flex-direction: column;
  gap: 9px;
}
.ota-pillar ul li {
  position: relative;
  padding-left: 24px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
}
.ota-pillar ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--pc-soft);
  border: 1px solid rgba(255,255,255,.04);
}
.ota-pillar ul li::after {
  content: '';
  position: absolute;
  left: 4px; top: 7px;
  width: 7px; height: 3px;
  border-left: 1.6px solid var(--pc);
  border-bottom: 1.6px solid var(--pc);
  transform: rotate(-45deg);
}
.ota-pillar-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-size: 13.5px; font-weight: 600;
  color: var(--pc);
  margin-top: auto;
  transition: gap .25s var(--ease), color .2s;
}
.ota-pillar-cta:hover { gap: 10px; }
.ota-pillar.soon .ota-pillar-cta {
  color: rgba(255,255,255,.45);
  cursor: default;
}
.ota-pillar.soon .ota-pillar-stat { opacity: .7; }

/* === DEMO SECTION (calculator-only) === */
.ota-demo {
  background: #07071A;
  padding: 70px 0 110px;
  position: relative;
  overflow: hidden;
}
.ota-demo::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(56,182,255,.14) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 50% 100%, rgba(124,58,237,.08) 0%, transparent 60%);
  pointer-events: none;
}
.ota-demo-inner {
  position: relative; z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.ota-demo-hd {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.ota-demo-hd .ota-eyebrow-pill::before { background: #38B6FF; }
.ota-demo-hd h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #fff;
  margin: 0 0 12px;
  text-wrap: balance;
}
.ota-demo-hd h3 em {
  font-style: normal;
  background: linear-gradient(180deg, #7DD0FF 0%, #38B6FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ota-demo-hd p {
  font-size: 15px;
  color: rgba(255,255,255,.62);
  line-height: 1.6;
}
.ota-demo-hint {
  text-align: center;
  margin-top: 28px;
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
}
.ota-demo-hint a {
  color: #38B6FF;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Override the calculator widget so it sits in this new wrapper without the heavy edged styling */
.ota-demo .otacs-instrument {
  margin: 0 auto;
  max-width: 980px;
}

@media (max-width: 1024px) {
  .ota-pillars-grid { grid-template-columns: 1fr; max-width: 540px; }
}
@media (max-width: 768px) {
  .ota-pillars { padding: 80px 0 70px; }
  .ota-demo { padding: 50px 0 80px; }
}


/* === OTA INTEGRATIONS STRIP === */
.ota-integrations {
  background: #07071A;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.ota-integrations::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(124,58,237,.08) 0%, transparent 60%);
  pointer-events: none;
}
.ota-integrations::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
}
.ota-integrations-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
  position: relative; z-index: 1;
}
.ota-integrations h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -.6px;
  color: #fff;
  margin: 14px 0 12px;
  text-wrap: balance;
}
.ota-integrations h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #C7BFFF 0%, #818CF8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ota-integrations p {
  font-size: 14.5px;
  color: rgba(255,255,255,.62);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 36px;
}
.ota-logos {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 28px 48px;
  margin-bottom: 22px;
}
.ota-logo {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: rgba(255,255,255,.55);
  transition: color .2s var(--ease);
}
.ota-logo:hover { color: rgba(255,255,255,.95); }
.ota-logos-note {
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
  font-style: italic;
}

/* === OTA FAQ === */
.ota-faq {
  background: #07071A;
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.ota-faq::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(56,182,255,.10) 0%, transparent 60%);
  pointer-events: none;
}
.ota-faq::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,182,255,.30), transparent);
}
.ota-faq-hd {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 0 24px;
  position: relative; z-index: 1;
}
.ota-faq-hd .ota-eyebrow-pill::before { background: #38B6FF; }
.ota-faq-hd h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
  margin: 14px 0 12px;
  text-wrap: balance;
}
.ota-faq-hd h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #7DD0FF 0%, #38B6FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ota-faq-hd p {
  font-size: 15px;
  color: rgba(255,255,255,.62);
  line-height: 1.6;
}
.ota-faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex; flex-direction: column;
  gap: 10px;
  position: relative; z-index: 1;
}
.ota-faq-item {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.ota-faq-item[open] {
  background: rgba(255,255,255,.05);
  border-color: rgba(56,182,255,.30);
}
.ota-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  letter-spacing: -.005em;
}
.ota-faq-item summary::-webkit-details-marker { display: none; }
.ota-faq-item summary::after {
  content: '';
  width: 11px; height: 11px;
  border-right: 1.8px solid rgba(255,255,255,.55);
  border-bottom: 1.8px solid rgba(255,255,255,.55);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
  flex-shrink: 0;
}
.ota-faq-item[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
  border-color: #38B6FF;
}
.ota-faq-item summary:hover { color: #C7BFFF; }
.ota-faq-body {
  padding: 0 22px 20px;
  font-size: 14px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .ota-logos { gap: 20px 32px; }
  .ota-logo { font-size: 15px; }
  .ota-faq-item summary { font-size: 14px; padding: 16px 18px; }
  .ota-faq-body { padding: 0 18px 16px; font-size: 13.5px; }
}


/* === HCN DEEP DIVE, 3 blocks === */
.hcn-dive {
  background: #07071A;
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
}
.hcn-dive::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 30% 0%, rgba(56,182,255,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 70% 60%, rgba(244,114,182,.06) 0%, transparent 55%);
  pointer-events: none;
}
.hcn-dive::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,182,255,.30), transparent);
}
.hcn-dive-inner {
  position: relative; z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Shared block layout */
.hcn-block { margin-bottom: 88px; }
.hcn-block:last-child { margin-bottom: 0; }
.hcn-block-hd { text-align: center; max-width: 740px; margin: 0 auto 36px; }
.hcn-block-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 18px;
}
.hcn-block-eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: #38B6FF;
}
.hcn-block-eyebrow.warn::before { background: #F472B6; }
.hcn-block-eyebrow.win::before { background: #10B981; }
.hcn-block-hd h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.1;
  text-wrap: balance;
}
.hcn-block-hd h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #7DD0FF 0%, #38B6FF 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hcn-block-hd h2 em.warn {
  background: linear-gradient(180deg, #FBA5C9 0%, #F472B6 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hcn-block-hd p {
  font-size: 15px;
  color: rgba(255,255,255,.62);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}

/* Block 1: supplier-chain diagram */
.hcn-chain-wrap {
  margin: 32px auto 0;
  padding: 36px 24px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  max-width: 920px;
}
.hcn-chain {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.hcn-chain-node {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex: 0 0 auto;
}
.hcn-chain-node-dot {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(56,182,255,.12);
  border: 1px solid rgba(56,182,255,.30);
  display: flex; align-items: center; justify-content: center;
  color: #7DD0FF;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
}
.hcn-chain-node-dot.endpoint {
  background: rgba(124,58,237,.18);
  border-color: rgba(124,58,237,.40);
  color: #C7BFFF;
  width: 44px; height: 44px;
}
.hcn-chain-node-label {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
  white-space: nowrap;
}
.hcn-chain-arrow {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(56,182,255,.4), rgba(56,182,255,.2));
  position: relative;
  min-width: 18px;
}
.hcn-chain-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translate(2px, -50%) rotate(45deg);
  width: 5px; height: 5px;
  border-right: 1px solid rgba(56,182,255,.45);
  border-top: 1px solid rgba(56,182,255,.45);
}
.hcn-chain-caption {
  margin-top: 18px;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  font-style: italic;
}
.hcn-chain-tail {
  margin: 26px auto 0;
  max-width: 700px;
  padding: 18px 22px;
  background: rgba(244,114,182,.08);
  border-left: 3px solid #F472B6;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
}
.hcn-chain-tail strong { color: #fff; font-weight: 600; }
.hcn-chain-tail em { font-style: italic; color: #FBA5C9; }

/* Block 2: failure modes + cascade */
.hcn-fails-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.hcn-fail {
  padding: 26px 22px;
  background: rgba(244,114,182,.05);
  border: 1px solid rgba(244,114,182,.20);
  border-radius: var(--radius-lg);
  position: relative;
}
.hcn-fail-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(244,114,182,.15);
  color: #F472B6;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  margin-bottom: 14px;
}
.hcn-fail h4 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.hcn-fail p {
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
}

.hcn-cascade {
  margin-top: 8px;
  padding: 28px 28px 20px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
}
.hcn-cascade-label {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #F472B6;
  margin-bottom: 10px;
  display: inline-flex; align-items: center; gap: 8px;
}
.hcn-cascade-label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #F472B6;
}
.hcn-cascade h4 {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.hcn-cascade p {
  font-size: 14.5px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  margin-bottom: 12px;
}
.hcn-cascade p:last-child { margin-bottom: 0; }
.hcn-cascade p strong { color: #fff; font-weight: 600; }

/* Block 3: proactive flip + dividends */
.hcn-flip-body {
  max-width: 740px;
  margin: 0 auto 40px;
  text-align: center;
}
.hcn-flip-body p {
  font-size: 15.5px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 14px;
}
.hcn-flip-body p:last-child { margin-bottom: 0; }
.hcn-flip-body strong { color: #fff; font-weight: 600; }

.hcn-dividends {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.hcn-dividend {
  padding: 24px 22px;
  background: rgba(16,185,129,.05);
  border: 1px solid rgba(16,185,129,.18);
  border-radius: var(--radius);
  text-align: left;
  --dv: #10B981;
}
.hcn-dividend[data-c="2"] { background: rgba(56,182,255,.05); border-color: rgba(56,182,255,.18); --dv: #38B6FF; }
.hcn-dividend[data-c="3"] { background: rgba(124,58,237,.05); border-color: rgba(124,58,237,.18); --dv: #A78BFA; }
.hcn-dividend[data-c="4"] { background: rgba(245,158,11,.05); border-color: rgba(245,158,11,.18); --dv: #F59E0B; }
.hcn-dividend-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--dv);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.hcn-dividend-icon svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.hcn-dividend h5 {
  font-family: var(--font-display);
  font-size: 14.5px; font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -.005em;
}
.hcn-dividend p {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}

.hcn-flip-quote {
  margin-top: 40px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(16,185,129,.08), rgba(56,182,255,.08));
  border: 1px solid rgba(16,185,129,.20);
  border-radius: var(--radius-lg);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  letter-spacing: -.005em;
}
.hcn-flip-quote em { color: #6EE7B7; font-style: normal; }

@media (max-width: 900px) {
  .hcn-fails-grid { grid-template-columns: 1fr; }
  .hcn-dividends { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hcn-chain { gap: 4px; }
  .hcn-chain-node-label { font-size: 10px; }
  .hcn-chain-node-dot { width: 32px; height: 32px; font-size: 11px; }
  .hcn-chain-node-dot.endpoint { width: 38px; height: 38px; }
  .hcn-dividends { grid-template-columns: 1fr; }
}


/* ============ VERIFY PAGE (.vf-*) ============ */
:root {
  --vf-emerald: #1E3A8A;
  --vf-emerald-2: #15296B;
  --vf-mint: #10B981;
  --vf-mint-soft: rgba(16,185,129,0.10);
  --vf-mint-bg: #ECFDF5;
  --vf-blue-bg: #EFF6FF;
  --vf-cream: #EFF6FF;
  --vf-bg: #F8FAFC;
  --vf-text: #0F172A;
  --vf-text-2: #475569;
  --vf-text-3: #94A3B8;
  --vf-line: #E2E8F0;
  --vf-line-2: #DBEAFE;
}

/* HERO */
.vf-hero {
  background: linear-gradient(160deg, #15296B 0%, #1E3A8A 60%, #1E40AF 100%);
  color: #fff;
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.vf-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(16,185,129,0.18) 0%, transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(52,211,153,0.12) 0%, transparent 40%);
  pointer-events: none;
}
.vf-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(110,231,183,0.55) 1.6px, transparent 2.2px),
    radial-gradient(circle, rgba(110,231,183,0.42) 1.4px, transparent 2px),
    radial-gradient(circle, rgba(110,231,183,0.45) 1.2px, transparent 1.8px),
    radial-gradient(circle, rgba(110,231,183,0.45) 1.6px, transparent 2.2px),
    radial-gradient(circle, rgba(110,231,183,0.30) 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;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  pointer-events: none;
  z-index: 1;
}
.vf-hero-inner {
  position: relative; z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.vf-hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,0.16);
  color: #6EE7B7;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(16,185,129,0.30);
}
.vf-hero-pill::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 3px rgba(52,211,153,.25);
  animation: vfPulse 2.4s ease-in-out infinite;
}
@keyframes vfPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(52,211,153,.25); }
  50%     { box-shadow: 0 0 0 7px rgba(52,211,153,.05); }
}
.vf-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 60px);
  font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 1.05;
  margin: 0 0 22px;
  color: #fff;
  text-wrap: balance;
  padding-bottom: 0.05em;
}
.vf-hero h1 em {
  color: #6EE7B7;
  font-style: normal;
  background: linear-gradient(135deg, #6EE7B7 0%, #10B981 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vf-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 0 32px;
  line-height: 1.6;
}
.vf-hero-cta {
  display: flex; gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.vf-btn-primary,
.vf-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: all .2s ease;
}
.vf-btn-primary {
  background: var(--vf-mint);
  color: #15296B;
  box-shadow: 0 8px 24px rgba(16,185,129,0.30);
}
.vf-btn-primary:hover {
  transform: translateY(-2px);
  background: #34D399;
  box-shadow: 0 12px 28px rgba(16,185,129,0.40);
}
.vf-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.32);
  padding: 12.5px 22px;
}
.vf-btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.55);
}
.vf-hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 560px;
}
.vf-hero-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 14px 16px;
}
.vf-hero-stat-num {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: #6EE7B7;
  letter-spacing: -.5px;
  line-height: 1.1;
  margin-bottom: 2px;
}
.vf-hero-stat-l {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* HERO RIGHT, stylised video call frame */
.vf-hero-call {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(8px);
}
.vf-hero-call::before, .vf-hero-call::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  border: 2px solid rgba(110,231,183,0.7);
}
.vf-hero-call::before {
  top: -2px; left: -2px;
  border-right: none; border-bottom: none;
  border-radius: 8px 0 0 0;
}
.vf-hero-call::after {
  bottom: -2px; right: -2px;
  border-left: none; border-top: none;
  border-radius: 0 0 8px 0;
}
.vf-call-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}
.vf-call-bar-left { display: inline-flex; align-items: center; gap: 8px; }
.vf-call-rec {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  color: #FCA5A5;
  letter-spacing: .04em;
}
.vf-call-rec::before {
  content: ''; width: 7px; height: 7px;
  border-radius: 50%;
  background: #F87171;
  animation: vfPulse 1.8s ease-in-out infinite;
}
.vf-call-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.vf-call-feed {
  background: linear-gradient(135deg, #162447, #1E2D5F);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex; align-items: end; justify-content: start;
  padding: 12px;
}
.vf-call-feed-self { aspect-ratio: 4 / 3; }

.vf-call-avatar {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(110,231,183,0.22);
}
.vf-call-avatar.client { background: #4F46E5; }
.vf-call-avatar.agent  { background: var(--vf-mint); color: #15296B; }
.vf-call-feed-name {
  position: relative;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.4);
  padding: 3px 8px;
  border-radius: 999px;
}
.vf-call-doc {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 12px 14px;
  display: grid; grid-template-columns: 32px 1fr auto;
  gap: 10px;
  align-items: center;
  font-family: var(--font-display);
}
.vf-call-doc + .vf-call-doc { margin-top: 8px; }
.vf-call-doc-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(110,231,183,0.18);
  display: flex; align-items: center; justify-content: center;
  color: #6EE7B7;
}
.vf-call-doc-icon svg { width: 16px; height: 16px; stroke-width: 1.8; }
.vf-call-doc-name {
  font-size: 12px; font-weight: 600;
  color: #fff;
}
.vf-call-doc-sub {
  font-size: 10.5px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.vf-call-doc-status {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #6EE7B7;
}
.vf-call-doc-status svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2.4; }
.vf-call-stamp {
  position: absolute;
  top: -16px; right: 16px;
  background: var(--vf-mint);
  color: #15296B;
  border: 2px solid #15296B;
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--font-display);
  font-size: 10.5px; font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: rotate(-4deg);
  box-shadow: 0 6px 18px rgba(16,185,129,0.30);
}

/* Section header common */
.vf-section-hd {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 56px;
}
.vf-eyebrow {
  display: inline-block;
  background: var(--vf-mint-soft);
  color: var(--vf-emerald);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.vf-section-hd h2 {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--vf-text);
  margin-bottom: 16px;
  text-wrap: balance;
}
.vf-section-hd h2 em {
  color: var(--vf-emerald); font-style: normal;
}
.vf-section-hd p {
  font-size: 17px;
  color: var(--vf-text-2);
  line-height: 1.6;
}

/* ================== PROBLEM (light section, red accents) ================== */
.vf-problem {
  background: linear-gradient(180deg, #FFFBFA 0%, #FEF2F2 100%);
  color: var(--vf-text);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.vf-problem::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(248,113,113,0.18) 0%, transparent 38%),
    radial-gradient(circle at 88% 82%, rgba(248,113,113,0.10) 0%, transparent 40%);
  pointer-events: none;
}
.vf-problem-inner {
  position: relative; z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.vf-problem .vf-section-hd h2 { color: var(--vf-text); }
.vf-problem .vf-section-hd p  { color: var(--vf-text-2); }
.vf-problem .vf-section-hd h2 em { color: #DC2626; font-style: normal; }
.vf-problem .vf-eyebrow {
  background: rgba(220,38,38,0.10);
  color: #B91C1C;
  border: 1px solid rgba(220,38,38,0.22);
}
.vf-problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.vf-prob-card {
  background: #fff;
  border: 1px solid rgba(220,38,38,0.14);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 6px 24px rgba(220,38,38,0.05);
  transition: all .25s ease;
}
.vf-prob-card:hover {
  border-color: rgba(220,38,38,0.30);
  box-shadow: 0 10px 32px rgba(220,38,38,0.08);
  transform: translateY(-2px);
}
.vf-prob-tag {
  display: inline-block;
  background: rgba(220,38,38,0.08);
  color: #B91C1C;
  border: 1px solid rgba(220,38,38,0.22);
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.vf-prob-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  color: var(--vf-text);
  margin-bottom: 10px;
  letter-spacing: -.4px;
}
.vf-prob-body {
  font-size: 14.5px;
  color: var(--vf-text-2);
  line-height: 1.65;
  margin-bottom: 18px;
}
.vf-prob-fix {
  display: flex; gap: 10px; align-items: flex-start;
  border-top: 1px solid var(--vf-line);
  padding-top: 14px;
  font-size: 13px;
  color: var(--vf-text);
  line-height: 1.55;
}
.vf-prob-fix-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--vf-mint-soft);
  color: var(--vf-mint);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.vf-prob-fix-icon svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2.6; fill: none; }
.vf-prob-fix b { color: var(--vf-emerald); font-weight: 700; }

/* USE CASES (light) */
.vf-uses {
  background: #fff;
  padding: 96px 0;
}
.vf-uses-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.vf-use-card {
  background: #fff;
  border: 1px solid var(--vf-line);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all .25s ease;
}
.vf-use-card:hover {
  transform: translateY(-3px);
  border-color: var(--vf-mint);
  box-shadow: 0 14px 36px rgba(30,58,138,0.10);
}
.vf-use-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--vf-mint-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.vf-use-icon svg {
  width: 22px; height: 22px;
  color: var(--vf-emerald);
  stroke-width: 1.8;
}
.vf-use-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vf-mint);
  margin-bottom: 6px;
}
.vf-use-name {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  letter-spacing: -.3px;
  color: var(--vf-text);
  margin-bottom: 8px;
}
.vf-use-desc {
  font-size: 13.5px;
  color: var(--vf-text-2);
  line-height: 1.55;
  margin-bottom: 14px;
}
.vf-use-meta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 600;
  color: var(--vf-emerald);
  background: var(--vf-bg);
  border: 1px solid var(--vf-line);
  padding: 5px 10px;
  border-radius: 999px;
}
.vf-use-meta svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2; fill: none; }

/* CALL WALK-THROUGH */
.vf-flow {
  background: var(--vf-bg);
  padding: 96px 0;
  border-top: 1px solid var(--vf-line);
  border-bottom: 1px solid var(--vf-line);
}
.vf-flow-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.vf-flow-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16,185,129,0.40), rgba(16,185,129,0.40), transparent);
  z-index: 0;
}
.vf-flow-step {
  background: #fff;
  border: 1px solid var(--vf-line);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  z-index: 1;
}
.vf-flow-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--vf-emerald);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(30,58,138,0.22);
}
.vf-flow-step:last-child .vf-flow-num {
  background: var(--vf-mint); color: #15296B;
}
.vf-flow-time {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  color: var(--vf-emerald);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.vf-flow-name {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  color: var(--vf-text);
  margin-bottom: 8px;
  letter-spacing: -.3px;
}
.vf-flow-desc {
  font-size: 13.5px;
  color: var(--vf-text-2);
  line-height: 1.55;
}

/* ================== VS AUTOMATED IDV (the wedge) ================== */
.vf-vs {
  background: var(--vf-blue-bg);
  padding: 96px 0;
}
.vf-vs-table {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.vf-vs-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--vf-line);
  padding: 0 0 18px;
  margin-bottom: 6px;
}
.vf-vs-head > div {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.2px;
}
.vf-vs-h-label { color: var(--vf-text-3); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; padding: 6px 22px 6px 0; }
.vf-vs-h-them {
  background: #fff;
  color: var(--vf-text);
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 12px 12px 0 0;
  text-align: center;
  border: 1px solid var(--vf-line);
  border-bottom: none;
}
.vf-vs-h-us {
  background: linear-gradient(160deg, #15296B 0%, #1E3A8A 100%);
  color: #fff;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 12px 12px 0 0;
  text-align: center;
  position: relative;
}
.vf-vs-h-us::after {
  content: '';
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 3px;
  background: linear-gradient(90deg, #6EE7B7, #10B981);
  border-radius: 12px 12px 0 0;
}
.vf-vs-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border-bottom: 1px solid var(--vf-line);
}
.vf-vs-row > div { padding: 18px 22px; font-size: 14px; line-height: 1.55; }
.vf-vs-row .vf-vs-label {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--vf-text);
  font-size: 14px;
  letter-spacing: -.1px;
}
.vf-vs-row .vf-vs-them {
  color: var(--vf-text-2);
  background: #fff;
  border-left: 1px solid var(--vf-line);
  border-right: 1px solid var(--vf-line);
}
.vf-vs-row .vf-vs-us {
  color: var(--vf-text);
  font-weight: 500;
  background: var(--vf-mint-bg);
  border-left: 1px solid rgba(16,185,129,0.22);
  border-right: 1px solid rgba(16,185,129,0.22);
  position: relative;
}
.vf-vs-row .vf-vs-us::before {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  background: rgba(16,185,129,0.18);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2310B981" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M5 13l4 4L19 7"/></svg>');
  background-size: 10px 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.vf-vs-row:last-child { border-bottom: none; }
.vf-vs-row:last-child .vf-vs-them { border-radius: 0 0 0 12px; border-bottom: 1px solid var(--vf-line); }
.vf-vs-row:last-child .vf-vs-us   { border-radius: 0 0 12px 0; border-bottom: 1px solid rgba(16,185,129,0.22); }
.vf-vs-foot {
  margin-top: 22px;
  text-align: center;
  font-size: 12.5px;
  color: var(--vf-text-3);
  font-style: italic;
}

/* CAPABILITIES */
.vf-caps {
  background: #fff;
  padding: 96px 0;
}
.vf-caps-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.vf-cap-card {
  background: var(--vf-bg);
  border: 1px solid var(--vf-line);
  border-radius: 14px;
  padding: 26px 24px;
  display: flex; gap: 14px;
  align-items: flex-start;
  transition: all .25s ease;
}
.vf-cap-card:hover {
  border-color: var(--vf-mint);
  background: #fff;
  box-shadow: 0 8px 24px rgba(30,58,138,0.06);
}
.vf-cap-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--vf-mint-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.vf-cap-icon svg {
  width: 18px; height: 18px;
  color: var(--vf-emerald);
  stroke-width: 1.9;
}
.vf-cap-name {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--vf-text);
  margin-bottom: 4px;
  letter-spacing: -.2px;
}
.vf-cap-desc {
  font-size: 13px;
  color: var(--vf-text-2);
  line-height: 1.5;
}

/* ================== COMPLIANCE STRIP ================== */
.vf-compliance {
  background: var(--vf-mint-bg);
  padding: 96px 0;
}
.vf-comp-badges {
  max-width: 1080px;
  margin: 0 auto 36px;
  padding: 0 32px;
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.vf-comp-badge {
  background: #fff;
  border: 1px solid rgba(16,185,129,0.18);
  border-radius: 12px;
  padding: 22px 14px 18px;
  text-align: center;
  transition: all .2s ease;
}
.vf-comp-badge:hover {
  border-color: var(--vf-mint);
  box-shadow: 0 6px 20px rgba(16,185,129,0.12);
  transform: translateY(-2px);
}
.vf-comp-badge-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--vf-mint-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.vf-comp-badge-icon svg {
  width: 22px; height: 22px;
  color: var(--vf-emerald);
  stroke-width: 1.8;
}
.vf-comp-badge-name {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 800;
  color: var(--vf-text);
  letter-spacing: -.2px;
  margin-bottom: 2px;
}
.vf-comp-badge-sub {
  font-size: 10.5px;
  color: var(--vf-text-3);
  font-weight: 500;
}
.vf-comp-bullets {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
}
.vf-comp-bullet {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px;
  color: var(--vf-text-2);
  line-height: 1.55;
}
.vf-comp-bullet-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--vf-mint-soft);
  color: var(--vf-mint);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.vf-comp-bullet-dot svg { width: 10px; height: 10px; stroke: currentColor; stroke-width: 3; fill: none; }
.vf-comp-bullet b { color: var(--vf-text); font-weight: 700; }

/* MANIFESTO, "Why Arbitrail" */
.vf-manifesto {
  background: var(--vf-emerald-2);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.vf-manifesto::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 30%, rgba(16,185,129,0.12), transparent 70%);
  pointer-events: none;
}
.vf-manifesto-inner {
  position: relative; z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.vf-manifesto .vf-section-hd h2 { color: #fff; }
.vf-manifesto .vf-section-hd p  { color: rgba(255,255,255,0.72); }
.vf-manifesto .vf-section-hd h2 em { color: #6EE7B7; }
.vf-manifesto .vf-eyebrow {
  background: rgba(16,185,129,0.18);
  color: #6EE7B7;
}
.vf-manifesto-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.vf-mani-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 28px 24px;
}
.vf-mani-q {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -.3px;
}
.vf-mani-q-mark {
  display: inline-block;
  color: #6EE7B7;
  font-weight: 800;
  margin-right: 6px;
}
.vf-mani-a {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

/* ================== KNOWLEDGE / PLAYBOOK (article) ================== */
.vf-kb {
  background: #fff;
  padding: 96px 0;
}
.vf-kb-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: start;
}
.vf-kb-main h2 {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.12;
  color: var(--vf-text);
  margin: 8px 0 18px;
  text-wrap: balance;
}
.vf-kb-main h2 em { color: var(--vf-emerald); font-style: normal; }
.vf-kb-eyebrow {
  display: inline-block;
  background: var(--vf-mint-soft);
  color: var(--vf-emerald);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  border: 1px solid rgba(16,185,129,0.18);
}
.vf-kb-lead {
  font-size: 18px;
  color: var(--vf-text);
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 500;
  border-left: 3px solid var(--vf-mint);
  padding-left: 22px;
}
.vf-kb-body h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--vf-text);
  letter-spacing: -.5px;
  margin: 36px 0 14px;
  scroll-margin-top: 80px;
}
.vf-kb-body h4 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--vf-emerald);
  letter-spacing: -.2px;
  margin: 22px 0 8px;
}
.vf-kb-body p {
  font-size: 15.5px;
  color: var(--vf-text-2);
  line-height: 1.78;
  margin-bottom: 14px;
}
.vf-kb-body b, .vf-kb-body strong { color: var(--vf-text); font-weight: 700; }
.vf-kb-body em { font-style: italic; color: var(--vf-text); }
.vf-kb-callout {
  background: var(--vf-mint-bg);
  border: 1px solid rgba(16,185,129,0.22);
  border-left: 4px solid var(--vf-mint);
  border-radius: 8px;
  padding: 22px 26px;
  margin: 28px 0;
}
.vf-kb-callout-title {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  color: var(--vf-emerald);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.vf-kb-callout p { margin: 0; font-size: 15px; color: var(--vf-text); }
.vf-kb-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.vf-kb-stat {
  background: var(--vf-bg);
  border: 1px solid var(--vf-line);
  border-radius: 10px;
  padding: 20px;
}
.vf-kb-stat-num {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 800;
  color: var(--vf-emerald);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}
.vf-kb-stat-l { font-size: 13px; color: var(--vf-text-2); line-height: 1.4; }
.vf-kb-toc {
  position: sticky;
  top: 100px;
  background: var(--vf-bg);
  border: 1px solid var(--vf-line);
  border-radius: 12px;
  padding: 24px 22px;
}
.vf-kb-toc-title {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  color: var(--vf-text-3);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--vf-line);
}
.vf-kb-toc ul { list-style: none; padding: 0; margin: 0; }
.vf-kb-toc li { padding: 8px 0; border-bottom: 1px solid var(--vf-line); }
.vf-kb-toc li:last-child { border-bottom: none; }
.vf-kb-toc a {
  display: block;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: var(--vf-text-2);
  text-decoration: none;
  line-height: 1.4;
  transition: color .15s ease;
}
.vf-kb-toc a:hover { color: var(--vf-emerald); }
.vf-kb-toc-num {
  display: inline-block;
  width: 22px;
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--vf-text-3);
  font-weight: 700;
}

/* Compliance map table inside KB */
.vf-kb-table {
  border: 1px solid var(--vf-line);
  border-radius: 8px;
  overflow: hidden;
  margin: 22px 0;
}
.vf-kb-table-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-bottom: 1px solid var(--vf-line);
}
.vf-kb-table-row:last-child { border-bottom: none; }
.vf-kb-table-row.head {
  background: var(--vf-bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--vf-text-3);
}
.vf-kb-table-row > div { padding: 12px 18px; font-size: 14px; line-height: 1.5; }
.vf-kb-table-row > div:first-child {
  font-weight: 700;
  color: var(--vf-text);
  border-right: 1px solid var(--vf-line);
}
.vf-kb-table-row > div:last-child { color: var(--vf-text-2); }

@media (max-width: 980px) {
  .vf-kb-inner { grid-template-columns: 1fr; gap: 32px; }
  .vf-kb-toc { position: static; }
  .vf-kb-stats { grid-template-columns: 1fr; }
  .vf-kb-main h2 { font-size: 28px; }
}

/* ================== POC OFFER ================== */
.vf-poc {
  background: linear-gradient(180deg, var(--vf-mint-bg) 0%, var(--vf-bg) 100%);
  padding: 96px 0;
}
.vf-poc-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.vf-poc-inner {
  background: #fff;
  border: 1px solid var(--vf-line);
  border-radius: 18px;
  padding: 48px 52px;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 18px 48px rgba(30,58,138,0.08);
  position: relative;
  overflow: hidden;
}
.vf-poc-inner::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 220px; height: 100%;
  background: radial-gradient(circle at 100% 50%, rgba(16,185,129,0.10), transparent 70%);
  pointer-events: none;
}
.vf-poc-eyebrow {
  display: inline-block;
  background: var(--vf-mint-soft);
  color: var(--vf-emerald);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.vf-poc-h2 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--vf-text);
  margin-bottom: 14px;
  text-wrap: balance;
}
.vf-poc-h2 em { color: var(--vf-emerald); font-style: normal; }
.vf-poc-sub {
  font-size: 15.5px;
  color: var(--vf-text-2);
  line-height: 1.6;
  margin-bottom: 22px;
}
.vf-poc-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 22px;
}
.vf-poc-list li {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 13.5px;
  color: var(--vf-text);
  line-height: 1.5;
}
.vf-poc-list li svg {
  width: 16px; height: 16px;
  color: var(--vf-mint);
  stroke-width: 2.6;
  flex-shrink: 0;
  margin-top: 2px;
}
.vf-poc-right { text-align: center; }
.vf-poc-num {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 900;
  letter-spacing: -3px;
  background: linear-gradient(135deg, #1E3A8A 0%, #10B981 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.vf-poc-num-l {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  color: var(--vf-text);
  letter-spacing: .04em;
  margin-top: 4px;
  margin-bottom: 22px;
}
.vf-poc-cta { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.vf-poc-cta .vf-btn-primary,
.vf-poc-cta .vf-btn-ghost { justify-content: center; }
.vf-poc-cta .vf-btn-ghost {
  color: var(--vf-emerald);
  border-color: var(--vf-line);
}
.vf-poc-cta .vf-btn-ghost:hover { border-color: var(--vf-emerald); background: var(--vf-bg); }

/* FAQ */
.vf-faq {
  background: var(--vf-bg);
  padding: 96px 0;
}
.vf-faq-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex; flex-direction: column;
  gap: 10px;
}
.vf-faq-list .faq-item {
  background: #fff;
  border: 1px solid var(--vf-line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.vf-faq-list .faq-item[open] { border-color: var(--vf-mint); }
.vf-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(--vf-text);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.vf-faq-list .faq-item summary::-webkit-details-marker { display: none; }
.vf-faq-list .faq-item summary::after {
  content: '+';
  color: var(--vf-emerald);
  font-size: 22px; font-weight: 600;
  flex-shrink: 0;
}
.vf-faq-list .faq-item[open] summary::after { content: '\2212'; }
.vf-faq-list .faq-body {
  padding: 0 22px 20px;
  color: var(--vf-text-2);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ================== TALK / GET IN TOUCH ================== */
.vf-talk { background: var(--vf-bg); padding: 96px 0; border-top: 1px solid var(--vf-line); }
.vf-talk-hd { text-align: center; max-width: 720px; margin: 0 auto 48px; padding: 0 32px; }
.vf-talk-hd h2 { font-family: var(--font-display); font-size: 42px; font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; color: var(--vf-text); margin-bottom: 16px; text-wrap: balance; }
.vf-talk-hd h2 em { color: var(--vf-emerald); font-style: normal; }
.vf-talk-hd p { font-size: 17px; color: var(--vf-text-2); line-height: 1.6; }
.vf-talk-grid { max-width: 1080px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: start; }
.vf-form { background: #fff; border: 1px solid var(--vf-line); border-radius: 16px; padding: 36px 36px 28px; position: relative; box-shadow: 0 4px 24px rgba(15,30,61,0.04); }
.vf-form-fields h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--vf-text); margin-bottom: 8px; letter-spacing: -.4px; }
.vf-form-sub { font-size: 14.5px; color: var(--vf-text-2); line-height: 1.6; margin-bottom: 24px; }
.vf-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.vf-field { margin-bottom: 18px; }
.vf-field label { display: block; font-family: var(--font-display); font-size: 12.5px; font-weight: 600; color: var(--vf-text); letter-spacing: .02em; margin-bottom: 6px; }
.vf-field .req { color: var(--vf-mint); margin-left: 2px; }
.vf-field input, .vf-field textarea { width: 100%; font-family: var(--font-body); font-size: 14.5px; padding: 12px 14px; border: 1px solid var(--vf-line); border-radius: 8px; background: #fff; color: var(--vf-text); transition: border-color .15s ease, box-shadow .15s ease; box-sizing: border-box; }
.vf-field input:focus, .vf-field textarea:focus { outline: none; border-color: var(--vf-mint); box-shadow: 0 0 0 3px var(--vf-mint-soft); }
.vf-field textarea { resize: vertical; min-height: 110px; font-family: var(--font-body); }
.vf-honeypot { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.vf-submit { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: var(--vf-mint); color: var(--vf-emerald-2); font-family: var(--font-display); font-size: 15px; font-weight: 700; padding: 14px 22px; border: none; border-radius: 999px; cursor: pointer; transition: all .2s ease; box-shadow: 0 8px 24px rgba(16,185,129,0.25); }
.vf-submit:hover { background: #34D399; transform: translateY(-1px); box-shadow: 0 12px 28px rgba(16,185,129,0.35); }
.vf-form-fineprint { font-size: 12px; color: var(--vf-text-3); text-align: center; margin: 14px 0 0; line-height: 1.5; }
.vf-form-fineprint a { color: var(--vf-text-2); text-decoration: underline; }
.vf-form-success { display: none; text-align: center; padding: 28px 24px; }
.vf-form-success-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--vf-mint-bg); border: 2px solid var(--vf-mint); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.vf-form-success-icon svg { width: 28px; height: 28px; color: var(--vf-mint); stroke: currentColor; stroke-width: 3; fill: none; }
.vf-form-success h4 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--vf-text); margin-bottom: 8px; }
.vf-form-success p { font-size: 14.5px; color: var(--vf-text-2); line-height: 1.55; }
.vf-form.sent .vf-form-fields { display: none; }
.vf-form.sent .vf-form-success { display: block; }
.vf-side { display: flex; flex-direction: column; gap: 16px; }
.vf-side-card { background: #fff; border: 1px solid var(--vf-line); border-radius: 16px; padding: 26px 28px; }
.vf-side-card.dark { background: linear-gradient(160deg, var(--vf-emerald-2) 0%, var(--vf-emerald) 100%); color: #fff; border-color: var(--vf-emerald-2); position: relative; overflow: hidden; }
.vf-side-card.dark::before { content: ''; position: absolute; top: 0; right: 0; width: 220px; height: 100%; background: radial-gradient(circle at 100% 0%, rgba(110,231,183,0.20), transparent 65%); pointer-events: none; }
.vf-side-eyebrow { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--vf-emerald); margin-bottom: 10px; }
.vf-side-card.dark .vf-side-eyebrow { color: #6EE7B7; }
.vf-side-card h4 { font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--vf-text); letter-spacing: -.3px; margin-bottom: 8px; }
.vf-side-card.dark h4 { color: #fff; }
.vf-side-card p { font-size: 14px; color: var(--vf-text-2); line-height: 1.6; margin-bottom: 16px; }
.vf-side-card.dark p { color: rgba(255,255,255,0.78); }
.vf-side-cta { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--vf-emerald-2); font-family: var(--font-display); font-size: 14px; font-weight: 700; padding: 11px 18px; border-radius: 999px; text-decoration: none; transition: all .2s ease; position: relative; z-index: 1; }
.vf-side-cta:hover { background: var(--vf-mint-bg); transform: translateX(2px); }
.vf-info-row { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--vf-text-2); padding: 7px 0; }
.vf-info-row svg { width: 18px; height: 18px; color: var(--vf-mint); flex-shrink: 0; }
.vf-info-row a { color: var(--vf-text); text-decoration: none; font-weight: 600; }
.vf-info-row a:hover { color: var(--vf-mint); }
@media (max-width: 980px) {
  .vf-talk-grid { grid-template-columns: 1fr; }
  .vf-field-row { grid-template-columns: 1fr; }
  .vf-talk-hd h2 { font-size: 32px; }
}

/* FINAL CTA */
.vf-cta {
  background: linear-gradient(180deg, var(--vf-emerald-2) 0%, var(--vf-emerald) 100%);
  color: #fff;
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vf-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(110,231,183,0.18), transparent 70%);
}
.vf-cta-inner {
  position: relative; z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}
.vf-cta h2 {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: #fff;
}
.vf-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin-bottom: 28px;
}
.vf-cta-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* CxaS family microcopy under hero */
.vf-family {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 600;
  color: rgba(255,255,255,0.50);
  letter-spacing: .04em;
}
.vf-family svg { width: 14px; height: 14px; opacity: 0.65; }

/* Mobile */
@media (max-width: 980px) {
  .vf-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .vf-hero h1 { font-size: 38px; }
  .vf-section-hd h2 { font-size: 32px; }
  .vf-uses-grid { grid-template-columns: repeat(2, 1fr); }
  .vf-flow-grid { grid-template-columns: repeat(2, 1fr); }
  .vf-flow-grid::before { display: none; }
  .vf-caps-grid { grid-template-columns: repeat(2, 1fr); }
  .vf-manifesto-grid,
  .vf-problem-grid { grid-template-columns: 1fr; }
  .vf-comp-badges { grid-template-columns: repeat(3, 1fr); }
  .vf-comp-bullets { grid-template-columns: 1fr; }
  .vf-poc-inner { grid-template-columns: 1fr; gap: 32px; padding: 36px 32px; }
  .vf-poc-list { grid-template-columns: 1fr; }
  .vf-vs-head, .vf-vs-row { grid-template-columns: 1fr; }
  .vf-vs-h-label { display: none; }
  .vf-vs-row .vf-vs-label { font-size: 12px; color: var(--vf-text-3); text-transform: uppercase; letter-spacing: .1em; padding-bottom: 0; }
  .vf-vs-row .vf-vs-them, .vf-vs-row .vf-vs-us { border-left: none; border-right: none; border-radius: 0; }
}
@media (max-width: 600px) {
  .vf-hero { padding: 72px 0 56px; }
  .vf-hero h1 { font-size: 30px; }
  .vf-uses-grid,
  .vf-flow-grid,
  .vf-caps-grid,
  .vf-manifesto-grid,
  .vf-problem-grid { grid-template-columns: 1fr; }
  .vf-hero-stats { grid-template-columns: 1fr 1fr; }
  .vf-section-hd h2 { font-size: 26px; }
  .vf-comp-badges { grid-template-columns: repeat(2, 1fr); }
  .vf-poc-h2 { font-size: 26px; }
  .vf-poc-num { font-size: 48px; }
}

