/* =============================================================
   Arbitrail — Ota Page Styles
   Page-specific styles. Global styles are in /css/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: #fff;
  border-top: 1px solid var(--line);
  padding: 0 0 28px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0.85;
}

/* 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: 18px;
  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; }

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