:root {
  --ink: #0b0a1f;
  --ink-2: #1a1a3a;
  --ink-3: #2d2d5f;
  --text: #0b0a1f;
  --text-2: #4a4b6e;
  --text-3: #7b7c9b;
  --text-muted: #a5a6bf;
  --line: #eeeef6;
  --line-2: #e2e3ee;
  --bg: #ffffff;
  --bg-2: #fafafe;
  --bg-3: #f4f4fb;
  --indigo: #4f46e5;
  --indigo-2: #6366f1;
  --indigo-3: #818cf8;
  --indigo-50: #eef2ff;
  --indigo-100: #e0e7ff;
  --purple: #7c3aed;
  --lilac: #c7bfff;
  --lilac-soft: #f3f0ff;
  --green: #10b981;
  --green-50: #ecfdf5;
  --amber: #f59e0b;
  --coral: #f472b6;
  --teal: #06b6d4;
  --gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
  --gradient-soft: linear-gradient(135deg, #eef2ff 0%, #f3f0ff 100%);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-xs: 0 1px 2px rgba(11, 10, 31, 0.04);
  --shadow-sm:
    0 2px 8px rgba(11, 10, 31, 0.05), 0 1px 2px rgba(11, 10, 31, 0.03);
  --shadow: 0 8px 32px rgba(11, 10, 31, 0.08), 0 2px 8px rgba(11, 10, 31, 0.04);
  --shadow-lg:
    0 24px 64px rgba(11, 10, 31, 0.12), 0 8px 24px rgba(11, 10, 31, 0.06);
  --shadow-indigo:
    0 8px 32px rgba(79, 70, 229, 0.25), 0 2px 8px rgba(79, 70, 229, 0.12);
  --font-display: "Inter Tight", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.nav.pinned {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
.nav-logo img {
  height: 24px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s var(--ease);
}
.nav-links a:hover {
  color: var(--text);
  background: var(--bg-3);
}
.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-ghost {
  color: var(--text-2);
}
.btn-ghost:hover {
  color: var(--text);
  background: var(--bg-3);
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  padding: 10px 22px;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-indigo);
  filter: brightness(1.08);
}
.btn-primary .arrow {
  transition: transform 0.25s var(--ease);
}
.btn-primary:hover .arrow {
  transform: translateX(3px);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 15px;
}

.nav-ham {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
}
.nav-ham:hover {
  background: var(--bg-3);
}
.nav-ham-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-ham-bars span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* === HERO === */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Ambient backdrop */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-gradient {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: 900px;
  background:
    radial-gradient(
      ellipse 45% 55% at 50% 0%,
      rgba(199, 191, 255, 0.45) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 35% 45% at 25% 40%,
      rgba(129, 140, 248, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 30% 40% at 75% 45%,
      rgba(236, 72, 153, 0.1) 0%,
      transparent 55%
    );
  filter: blur(40px);
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(56, 182, 255, 0.55) 1.6px, transparent 2.2px),
    radial-gradient(circle, rgba(254, 161, 21, 0.42) 1.4px, transparent 2px),
    radial-gradient(circle, rgba(252, 178, 17, 0.45) 1.2px, transparent 1.8px),
    radial-gradient(circle, rgba(255, 86, 89, 0.45) 1.6px, transparent 2.2px),
    radial-gradient(circle, rgba(56, 182, 255, 0.3) 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
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px 5px 5px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  animation: fadeUp 0.7s var(--ease-out) both;
  box-shadow: var(--shadow-xs);
}
.hero-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero-pill-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -3px;
  color: var(--ink);
  margin-bottom: 24px;
  animation: fadeUp 0.7s var(--ease-out) 0.05s both;
}
.hero h1 .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 780px;
  margin: 0 auto 40px;
  font-weight: 400;
  animation: fadeUp 0.7s var(--ease-out) 0.1s both;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.7s var(--ease-out) 0.15s both;
}

.btn-primary-xl {
  background: var(--gradient);
  color: #fff;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-indigo);
}
.btn-primary-xl:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(79, 70, 229, 0.4);
  filter: brightness(1.08);
}

.btn-secondary-xl {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  color: var(--text);
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s var(--ease);
}
.btn-secondary-xl:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  background: rgba(255, 255, 255, 0.9);
}

.hero-metric-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 0 auto 28px;
  max-width: 880px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  animation: fadeUp 0.7s var(--ease-out) 0.18s both;
}
.hero-metric-item {
  flex: 1 1 0;
  min-width: 140px;
  text-align: center;
  position: relative;
  padding: 0 16px;
}
.hero-metric-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: var(--line);
}
.hero-metric-num {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.05;
}
.hero-metric-l {
  display: block;
  font-size: 11.5px;
  color: var(--text-2);
  margin-top: 4px;
  font-weight: 500;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-3);
  animation: fadeUp 0.7s var(--ease-out) 0.22s both;
}
.trust-avatars {
  display: flex;
}
.trust-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  margin-left: -7px;
  border: 2px solid #fff;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}
.trust-av:first-child {
  margin-left: 0;
}

/* Sticky scroll CTA */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.sticky-cta.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  box-shadow:
    0 12px 32px rgba(79, 70, 229, 0.35),
    0 4px 12px rgba(11, 10, 31, 0.15);
  transition:
    transform 0.25s var(--ease),
    filter 0.25s var(--ease);
}
.sticky-cta a:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
@media (max-width: 768px) {
  .sticky-cta {
    bottom: 16px;
    right: 16px;
  }
  .sticky-cta a {
    padding: 12px 18px;
    font-size: 13px;
  }
}

/* === HERO DASHBOARD MOCKUP === */
.hero-mockup {
  margin-top: 72px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  animation: fadeUp 0.9s var(--ease-out) 0.3s both;
}
.hero-mockup-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    ellipse 60% 80% at 50% 100%,
    rgba(79, 70, 229, 0.3),
    transparent 70%
  );
  filter: blur(40px);
  z-index: -1;
}
.mockup-frame {
  background: linear-gradient(180deg, #ffffff 0%, #fafafe 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(11, 10, 31, 0.04),
    0 30px 80px rgba(11, 10, 31, 0.12),
    0 8px 24px rgba(11, 10, 31, 0.06);
}
.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.mockup-dots {
  display: flex;
  gap: 6px;
}
.mockup-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.mockup-dot.r {
  background: #ff5f57;
}
.mockup-dot.y {
  background: #febc2e;
}
.mockup-dot.g {
  background: #28c840;
}
.mockup-url {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-body);
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mockup-url::before {
  content: "";
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6V4a2 2 0 114 0v2m-6 0h8v5H3V6z' stroke='%2310B981' stroke-width='1.2'/%3E%3C/svg%3E")
    no-repeat center;
}

.mockup-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 420px;
}
.mockup-sidebar {
  background: var(--bg-2);
  border-right: 1px solid var(--line);
  padding: 20px 14px;
}
.mockup-brand-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  margin-bottom: 20px;
}
.mockup-brand-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.mockup-brand-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.mockup-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mockup-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}
.mockup-nav-item.active {
  background: var(--indigo-50);
  color: var(--indigo);
}
.mockup-nav-item-ic {
  width: 15px;
  height: 15px;
  display: inline-block;
}

.mockup-main {
  padding: 24px;
}
.mockup-main-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.mockup-main-hd h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}
.mockup-period {
  display: flex;
  gap: 0;
  background: var(--bg-3);
  border-radius: 7px;
  padding: 3px;
}
.mockup-period button {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 5px;
  font-weight: 600;
  color: var(--text-3);
  background: transparent;
  cursor: default;
}
.mockup-period button.active {
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-xs);
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.mockup-stat {
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.mockup-stat-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.mockup-stat-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.8px;
  line-height: 1;
}
.mockup-stat-trend {
  font-size: 11px;
  font-weight: 600;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.mockup-stat-trend.up {
  color: var(--green);
}
.mockup-stat-trend.neutral {
  color: var(--text-3);
}

.mockup-chart {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 14px;
  position: relative;
}
.mockup-chart-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.mockup-chart-hd h5 {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.mockup-chart-legend {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--text-3);
}
.mockup-chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.mockup-chart-legend .dot {
  width: 7px;
  height: 7px;
  border-radius: 2px;
}

.mockup-chart-svg {
  width: 100%;
  height: 80px;
}

.mockup-activity {
  display: flex;
  gap: 8px;
}
.mockup-activity-item {
  flex: 1;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-av {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
}
.mockup-a-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
}
.mockup-a-status {
  font-size: 10px;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 3px;
}
.mockup-a-status::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}

/* Floating accent cards on hero mockup */
.mockup-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.mockup-float-tl {
  top: -20px;
  left: -30px;
  animation: float 6s ease-in-out infinite;
}
.mockup-float-br {
  bottom: -16px;
  right: -28px;
  animation: float 6s ease-in-out infinite 3s;
}
.mockup-float-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.mockup-float-val {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}
.mockup-float-val .up {
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  margin-left: 2px;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* === LOGO CLOUD === */
.clients {
  padding: 80px 0 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.clients-title {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.clients-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  row-gap: 32px;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  flex-shrink: 0;
  opacity: 0.85;
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.client-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.client-logo svg,
.client-logo img {
  height: 28px;
  width: auto;
  max-width: 160px;
  display: block;
}
/* Traveluro renders smaller in its viewBox - boost it */
.client-logo svg[viewBox="0 0 94 32"] {
  height: 36px;
}

/* === STAT STRIP === */
.stats {
  padding: 96px 0;
  background: var(--bg);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.stat-item {
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--line);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 12px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-num .suf {
  font-size: 36px;
  margin-left: 2px;
}
.stat-lbl {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

/* === SECTIONS === */
.section {
  padding: 120px 0;
}
.section.tight {
  padding: 96px 0;
}
.section.dark {
  background: var(--ink);
  color: #fff;
}
.section.muted {
  background: var(--bg-2);
}

.section-hd {
  text-align: center;
  margin-bottom: 72px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.section-hd.left {
  text-align: left;
  margin-left: 0;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 5px 14px;
  background: var(--indigo-50);
  border-radius: var(--radius-pill);
}
.section-eyebrow.dark {
  color: var(--indigo-3);
  background: rgba(129, 140, 248, 0.1);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 45px);
  font-weight: 700;
  letter-spacing: -1.8px;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 18px;
}
.section-title.wh {
  color: #fff;
}
.section-desc {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
.section-desc.left {
  margin-left: 0;
}
.section-desc.wh {
  color: rgba(255, 255, 255, 0.7);
}

/* === VALUE PROPS 3-UP === */
.values {
  padding: 96px 0 120px;
  background: var(--bg);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 40px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.value-card:hover {
  border-color: var(--indigo-100);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.4s var(--ease);
  position: relative;
}
.value-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed currentColor;
  opacity: 0.35;
  transition:
    transform 0.8s var(--ease),
    opacity 0.3s var(--ease);
}
.value-card:hover .value-icon::before {
  transform: rotate(180deg);
  opacity: 0.6;
}
.value-card:hover .value-icon {
  transform: scale(1.04);
}
.value-icon-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.value-icon.money {
  color: var(--green);
}
.value-icon.money .value-icon-inner {
  background: var(--green);
}
.value-icon.speed {
  color: var(--indigo);
}
.value-icon.speed .value-icon-inner {
  background: var(--indigo);
}
.value-icon.compliance {
  color: var(--amber);
}
.value-icon.compliance .value-icon-inner {
  background: var(--amber);
}

.value-icon svg {
  width: 26px;
  height: 26px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
}
.value-card-metric {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg-2);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}
.value-card-metric strong {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* === SERVICE SEGMENTS === */
.segments {
  padding: 120px 0;
  background: var(--bg-2);
}
.segments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.seg-card {
  padding: 48px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.seg-card:hover {
  border-color: var(--indigo-100);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.seg-card-badge-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  height: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.seg-card-badge-new img {
  height: 14px;
  width: auto;
  display: block;
}
.seg-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 14px;
}
.seg-card > p {
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 28px;
}
.seg-features {
  list-style: none;
  margin-bottom: 32px;
}
.seg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.seg-features li:last-child {
  border-bottom: none;
}
.seg-features li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
}
.seg-card.scale .seg-features li::before {
  background-color: rgba(56, 182, 255, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l2.5 2.5L9 2' stroke='%2338B6FF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.seg-card.cxas .seg-features li::before {
  background-color: rgba(254, 161, 21, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l2.5 2.5L9 2' stroke='%23FEA115' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.seg-card.ava .seg-features li::before {
  background-color: rgba(252, 178, 17, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l2.5 2.5L9 2' stroke='%23FCB211' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.seg-card.core .seg-features li::before {
  background-color: rgba(255, 86, 89, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l2.5 2.5L9 2' stroke='%23FF5659' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.seg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.seg-footer a {
  font-size: 14px;
  font-weight: 600;
  color: var(--indigo);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition:
    gap 0.2s var(--ease),
    color 0.2s var(--ease);
}
.seg-footer a:hover {
  gap: 8px;
}
.seg-card.scale .seg-footer a {
  color: #38b6ff;
}
.seg-card.cxas .seg-footer a {
  color: #fea115;
}
.seg-card.ava .seg-footer a {
  color: #fcb211;
}
.seg-card.core .seg-footer a {
  color: #ff5659;
}
.seg-pricing {
  font-size: 13px;
  color: var(--text-3);
}
.seg-pricing strong {
  font-family: var(--font-display);
  color: var(--text);
  font-weight: 700;
}

/* Variant colors for each segment */
.seg-card.scale:hover {
  border-color: #38b6ff;
}
.seg-card.cxas:hover {
  border-color: #fea115;
}
.seg-card.ava:hover {
  border-color: #fcb211;
}
.seg-card.core:hover {
  border-color: #ff5659;
}

/* === ROI CALCULATOR === */
.calculator {
  padding: 120px 0;
  background: var(--bg);
}
.calc-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.calc-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 18px;
}
.calc-text p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 28px;
}
.calc-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.calc-highlight {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--text-2);
}
.calc-highlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

.calc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
}
.calc-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 100% 0%,
    rgba(199, 191, 255, 0.25),
    transparent 60%
  );
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.calc-card > * {
  position: relative;
}

.calc-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.calc-field {
  margin-bottom: 22px;
}
.calc-field-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 10px;
}
.calc-field-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}
.calc-slider {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--indigo);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s var(--ease);
}
.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--indigo);
  cursor: pointer;
}

.calc-toggle {
  display: flex;
  background: var(--bg-3);
  border-radius: 10px;
  padding: 4px;
  gap: 2px;
  margin-bottom: 24px;
}
.calc-toggle button {
  flex: 1;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  border-radius: 7px;
  transition: all 0.2s var(--ease);
  font-family: var(--font-body);
}
.calc-toggle button.active {
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-xs);
}

.calc-result {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.calc-result::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(199, 191, 255, 0.15),
    transparent 60%
  );
  pointer-events: none;
}
.calc-result-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
}
.calc-result-val {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(90deg, #fff 0%, #c7bfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.calc-result-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
}

.calc-tier-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  margin-top: 4px;
}
.calc-tier {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
}
.calc-tier button {
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 8px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.calc-tier button:hover {
  border-color: var(--indigo-3);
  background: var(--bg);
}
.calc-tier button.active {
  border-color: var(--indigo);
  background: var(--indigo-50);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.15);
}
.calc-tier button.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
}
.tier-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.calc-tier button.active .tier-name {
  color: var(--indigo);
}
.tier-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}
.calc-tier button.active .tier-price {
  color: var(--indigo);
}
@media (max-width: 480px) {
  .calc-tier {
    grid-template-columns: 1fr;
  }
}

/* === SIDE-BY-SIDE SPLIT RESULT === */
.calc-split {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}
.calc-split-cell {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  transition: transform 0.2s var(--ease);
}
.calc-split-cell.dark {
  background: var(--ink);
  border-color: var(--ink);
}
.calc-split-cell.accent {
  background: var(--gradient);
  border: none;
  position: relative;
  overflow: hidden;
}
.calc-split-cell.accent::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.18),
    transparent 60%
  );
  pointer-events: none;
}
.calc-split-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.calc-split-cell.dark .calc-split-label,
.calc-split-cell.accent .calc-split-label {
  color: rgba(255, 255, 255, 0.65);
}
.calc-split-val {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.8px;
  line-height: 1;
}
.calc-split-cell.dark .calc-split-val,
.calc-split-cell.accent .calc-split-val {
  color: #fff;
  position: relative;
}
.calc-bottom-line {
  margin-top: 16px;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-3);
  line-height: 1.5;
}
.calc-bottom-line strong {
  color: var(--text);
  font-weight: 700;
  font-family: var(--font-display);
}

/* Comparison rows */
.calc-compare {
  margin-top: 28px;
  padding: 20px;
  background: var(--bg-2);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.calc-compare-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.calc-compare-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc-compare-row {
  display: grid;
  grid-template-columns: 160px 1fr 110px;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-2);
}
.calc-compare-name {
  font-weight: 500;
}
.calc-compare-bar {
  display: block;
  height: 10px;
  background: var(--bg-3);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.calc-compare-fill {
  display: block;
  height: 100%;
  border-radius: 6px;
  transition: width 0.35s var(--ease);
}
.calc-compare-fill.ih {
  width: 100%;
  background: linear-gradient(90deg, #f87171, #ef4444);
}
.calc-compare-fill.bp {
  width: 50%;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
}
.calc-compare-fill.ar {
  width: 32%;
  background: var(--gradient);
}
.calc-compare-val {
  font-family: var(--font-display);
  font-weight: 700;
  text-align: right;
  color: var(--text);
}
.calc-compare-row.leader .calc-compare-name {
  color: var(--indigo);
  font-weight: 700;
}

/* Email capture */
.calc-capture {
  margin-top: 20px;
  padding: 18px 20px;
  background: linear-gradient(
    135deg,
    var(--lilac-soft) 0%,
    var(--indigo-50) 100%
  );
  border-radius: var(--radius);
  border: 1px solid var(--indigo-100);
}
.calc-capture-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.calc-capture-row {
  display: flex;
  gap: 8px;
}
.calc-capture-row input {
  flex: 1;
  padding: 11px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13.5px;
  background: #fff;
  color: var(--text);
}
.calc-capture-row input:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}
.calc-capture-row button {
  padding: 11px 18px;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: filter 0.2s var(--ease);
}
.calc-capture-row button:hover {
  filter: brightness(1.08);
}
.calc-capture-hint {
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 8px;
}
.calc-capture.sent .calc-capture-row {
  display: none;
}
.calc-capture.sent .calc-capture-hint {
  color: var(--green);
  font-weight: 600;
}

@media (max-width: 600px) {
  .calc-compare-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .calc-compare-bar {
    display: none;
  }
  .calc-capture-row {
    flex-direction: column;
  }
  .section-desc {
    font-size: 16px;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .calc-split {
    grid-template-columns: 1fr;
  }
}

/* ========================================================================
   OTA / TRAVEL TECH SHOWCASE  (Editorial dark · ops-grade)
   ======================================================================== */
.otacs {
  padding: 110px 0 110px;
}

/* Layered atmosphere */
.otacs-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 90% 60% at 50% -10%,
      rgba(56, 182, 255, 0.18),
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 80% at 100% 100%,
      rgba(124, 58, 237, 0.16),
      transparent 65%
    ),
    radial-gradient(
      ellipse 80% 40% at 0% 60%,
      rgba(79, 70, 229, 0.12),
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}
.otacs-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 30%,
    black 30%,
    transparent 80%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 50% 30%,
    black 30%,
    transparent 80%
  );
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}
.otacs-wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

/* ----------- HERO ----------- */
.otacs-hero {
  text-align: center;
  max-width: 1060px;
  margin: 0 auto 96px;
  padding: 0 16px;
}
.otacs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: 7px 16px 7px 14px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.otacs-eyebrow-dot {
  background: #38b6ff;
  box-shadow: 0 0 0 3px rgba(56, 182, 255, 0.22);
}
@keyframes otaPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.85);
  }
}

.otacs-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.7vw, 60px);
  line-height: 1.1;
  letter-spacing: -2px;
  color: #fff;
  margin: 0 0 28px;
  padding-bottom: 0.12em; /* protect descenders / V baseline */
  text-wrap: balance;
}
.otacs-headline em {
  font-style: normal;
  font-weight: 700;
  color: #38b6ff;
  background: linear-gradient(180deg, #7dd0ff 0%, #38b6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.otacs-kicker {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  max-width: 680px;
  margin: 0 auto;
  font-weight: 400;
}

/* Hover-glossary for OTA jargon */
.ota-glossary {
  position: relative;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.45);
  cursor: help;
}
.ota-glossary:hover {
  border-bottom-color: rgba(255, 255, 255, 0.85);
  color: rgba(255, 255, 255, 0.95);
}
.ota-glossary::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  white-space: nowrap;
  background: #fff;
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  padding: 7px 12px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(11, 10, 31, 0.25);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s var(--ease),
    transform 0.2s var(--ease);
  z-index: 5;
}
.ota-glossary:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.otacs-skip {
  margin-top: 18px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}
.otacs-skip a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.otacs-skip a:hover {
  color: #fff;
}

/* ----------- INSTRUMENT (mid-office exposure) ----------- */
.otacs-instrument {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 0;
  margin: 0 auto 96px;
  max-width: 1080px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 30px 80px -20px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.otacs-instrument::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 182, 255, 0.4),
    transparent
  );
}

.otacs-instrument-hd {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.15);
}
.otacs-instrument-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #38b6ff;
  background: rgba(56, 182, 255, 0.1);
  border: 1px solid rgba(56, 182, 255, 0.25);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
}
.otacs-instrument-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.2px;
}
.otacs-instrument-meta {
  margin-left: auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.otacs-instrument-body {
  padding: 36px 32px 32px;
  display: grid;
  grid-template-columns: 1.1fr 1.7fr;
  gap: 48px;
  align-items: center;
}

/* control */
.otacs-instrument-control {
}
.otacs-ctrl-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}
.otacs-ctrl-label > span:first-child {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.otacs-ctrl-val {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.2px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.otacs-instrument-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  cursor: pointer;
}
.otacs-instrument-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 0;
  box-shadow:
    0 0 0 4px rgba(56, 182, 255, 0.35),
    0 0 18px rgba(56, 182, 255, 0.55);
  cursor: grab;
  transition: transform 0.12s var(--ease);
}
.otacs-instrument-slider::-webkit-slider-thumb:hover {
  transform: scale(1.08);
}
.otacs-instrument-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(0.95);
}
.otacs-instrument-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 0;
  box-shadow:
    0 0 0 4px rgba(56, 182, 255, 0.35),
    0 0 18px rgba(56, 182, 255, 0.55);
  cursor: grab;
}
.otacs-ctrl-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.32);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

/* readout */
.otacs-instrument-readout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.otacs-rd-cell {
  padding: 24px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.otacs-rd-cell:last-child {
  border-right: 0;
}
.otacs-rd-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
}
.otacs-rd-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.2px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 10px;
}
.otacs-rd-foot {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.4;
}

.otacs-rd-warn .otacs-rd-tag {
  color: #fca5a5;
}
.otacs-rd-warn .otacs-rd-num {
  color: #ff7a7c;
}
.otacs-rd-warn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, #ff5659, transparent);
}

.otacs-rd-win .otacs-rd-tag {
  color: #6ee7b7;
}
.otacs-rd-win .otacs-rd-num {
  color: #6ee7b7;
  background: linear-gradient(180deg, #a7f3d0 0%, #34d399 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.otacs-rd-win::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, #34d399, transparent);
}

/* ----------- LEDGER (reactive vs proactive) ----------- */
.otacs-ledger {
  margin: 0 auto 96px;
  max-width: 1180px;
}
.otacs-ledger-hd {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 16px;
}
.otacs-ledger-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}
.otacs-ledger-hd h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.2px;
  line-height: 1.18;
  margin: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.otacs-ledger-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}

.otacs-ledger-col {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
}

.otacs-col-head {
  margin-bottom: 28px;
}
.otacs-col-pill {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  margin-bottom: 14px;
}
.otacs-col-head--bad .otacs-col-pill {
  color: #fca5a5;
  background: rgba(255, 86, 89, 0.1);
  border: 1px solid rgba(255, 86, 89, 0.25);
}
.otacs-col-head--good .otacs-col-pill {
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.otacs-col-head h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin: 0;
}

.otacs-col-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex-grow: 1;
}
.otacs-col-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
}
.otacs-col-list li > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.otacs-col-list strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14.5px;
}
.otacs-col-list span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.45;
}

.otacs-mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.otacs-mark--bad {
  background: rgba(255, 86, 89, 0.12);
  color: #ff7a7c;
  border: 1px solid rgba(255, 86, 89, 0.2);
}
.otacs-mark--good {
  background: rgba(16, 185, 129, 0.14);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.otacs-col-out {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.otacs-col-out > span {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}
.otacs-col-out p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}
.otacs-col-out--bad p {
  color: #fca5a5;
}
.otacs-col-out--good p {
  color: #6ee7b7;
}

.otacs-ledger-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  width: 56px;
  position: relative;
}
.otacs-ledger-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.04);
}
.otacs-divider-line {
  flex-grow: 1;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  position: relative;
  z-index: 1;
}
.otacs-divider-arrow {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -4px rgba(79, 70, 229, 0.6);
  margin: 16px 0;
}

/* ----------- PROOF (Q3 results) ----------- */
.otacs-proof {
  margin: 0 auto 96px;
  max-width: 1180px;
}
.otacs-proof-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  background: linear-gradient(
    135deg,
    rgba(56, 182, 255, 0.06) 0%,
    rgba(124, 58, 237, 0.04) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.otacs-proof-grid::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(56, 182, 255, 0.16) 0%,
    transparent 65%
  );
  filter: blur(40px);
  pointer-events: none;
}

.otacs-proof-headline {
  position: relative;
}
.otacs-proof-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #38b6ff;
  background: rgba(56, 182, 255, 0.12);
  border: 1px solid rgba(56, 182, 255, 0.25);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  margin-bottom: 20px;
}
.otacs-proof-bignum {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 0.95;
  background: linear-gradient(180deg, #fff 0%, #38b6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.otacs-proof-bignum span {
  -webkit-text-fill-color: rgba(56, 182, 255, 0.7);
  font-size: 0.55em;
  vertical-align: 22%;
  margin-left: 2px;
}
.otacs-proof-bigsub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
  max-width: 380px;
}

.otacs-proof-stats {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-self: center;
}
.otacs-stat {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 22px 22px;
}
.otacs-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}
.otacs-stat-num span {
  color: #38b6ff;
  font-size: 18px;
  margin-left: 1px;
}
.otacs-stat-lbl {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* ----------- CTA ----------- */
.otacs-cta {
  text-align: center;
  padding: 0 16px;
}
.otacs-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.otacs-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.2px;
  line-height: 1.2;
  margin: 0 0 16px;
}
.otacs-cta > .otacs-cta-inner > p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 32px;
}
.otacs-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.otacs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #fff;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.1px;
  transition: all 0.25s var(--ease);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 12px 32px -6px rgba(79, 70, 229, 0.55);
}
.otacs-btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 16px 40px -6px rgba(79, 70, 229, 0.7);
}
.otacs-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 500;
  transition: all 0.25s var(--ease);
  backdrop-filter: blur(10px);
}
.otacs-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* glossary */
.otacs-glossary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.otacs-glossary-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.otacs-glossary-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}
.otacs-glossary-items span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
}
.otacs-glossary-items b {
  color: #38b6ff;
  font-weight: 700;
  margin-right: 6px;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

/* responsive */
@media (max-width: 980px) {
  .otacs-instrument-body {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px 24px;
  }
  .otacs-instrument-readout {
    grid-template-columns: 1fr;
  }
  .otacs-rd-cell {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .otacs-rd-cell:last-child {
    border-bottom: 0;
  }
  .otacs-ledger-body {
    grid-template-columns: 1fr;
  }
  .otacs-ledger-divider {
    width: 100%;
    height: 56px;
    flex-direction: row;
  }
  .otacs-divider-line {
    height: 1px;
    width: auto;
    flex-grow: 1;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.15),
      transparent
    );
  }
  .otacs-divider-arrow {
    transform: rotate(90deg);
    margin: 0 16px;
  }
  .otacs-proof-grid {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }
  .otacs-instrument-meta {
    display: none;
  }
}
@media (max-width: 600px) {
  .otacs {
    padding: 88px 0 80px;
  }
  .otacs-hero {
    margin-bottom: 64px;
  }
  .otacs-instrument,
  .otacs-ledger,
  .otacs-proof {
    margin-bottom: 64px;
  }
  .otacs-ledger-col {
    padding: 28px 22px 24px;
  }
  .otacs-proof-stats {
    grid-template-columns: 1fr;
  }
  .otacs-cta-btns {
    flex-direction: column;
  }
  .otacs-btn-primary,
  .otacs-btn-ghost {
    width: 100%;
    justify-content: center;
  }
}

/* === AVA AI INTERACTIVE DEMO === */
.ava-section {
  padding: 120px 0;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ava-bg-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  top: -200px;
  right: -150px;
  background: radial-gradient(
    circle,
    rgba(199, 191, 255, 0.25) 0%,
    transparent 65%
  );
  filter: blur(80px);
  pointer-events: none;
}
.ava-bg-orb-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  bottom: -100px;
  left: 10%;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.2) 0%,
    transparent 65%
  );
  filter: blur(80px);
  pointer-events: none;
}

.ava-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.ava-text .section-eyebrow {
  background: rgba(167, 139, 250, 0.15);
  color: #c7bfff;
}
.ava-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -1.8px;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
}
.ava-text > p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}
.ava-agents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 32px;
}
.ava-agent {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s var(--ease);
}
.ava-agent:hover {
  background: rgba(129, 140, 248, 0.1);
  border-color: rgba(129, 140, 248, 0.3);
  color: #fff;
}
.ava-agent-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--indigo-3);
  flex-shrink: 0;
}

.ava-chat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.ava-chat-hd {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.ava-chat-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.ava-chat-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.ava-chat-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1px;
}
.ava-chat-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #10b981;
  font-weight: 600;
}
.ava-chat-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse 2s infinite;
}
.ava-chat-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
}
.ava-msg {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  max-width: 85%;
  animation: msgIn 0.4s var(--ease-out) both;
}
.ava-msg.user {
  margin-left: auto;
  flex-direction: row-reverse;
}
@keyframes msgIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ava-msg-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-display);
  color: #fff;
}
.ava-msg-av.ai {
  background: var(--gradient);
}
.ava-msg-av.user {
  background: rgba(255, 255, 255, 0.15);
}
.ava-msg-bubble {
  padding: 11px 15px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}
.ava-msg-bubble.ai {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border-top-left-radius: 4px;
}
.ava-msg-bubble.user {
  background: var(--indigo);
  color: #fff;
  border-top-right-radius: 4px;
}

.ava-chat-input-row {
  display: flex;
  gap: 10px;
  padding: 16px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
.ava-chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 14px;
  color: #fff;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s var(--ease);
}
.ava-chat-input:focus {
  border-color: var(--indigo);
}
.ava-chat-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.ava-chat-send {
  padding: 10px 18px;
  background: var(--indigo);
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.ava-chat-send:hover {
  background: var(--indigo-2);
}
.ava-prompt-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px 0;
}
.ava-prompt-chip {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 12px;
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    transform 0.15s var(--ease);
}
.ava-prompt-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}
.ava-usage {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 18px;
  padding: 8px 14px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.ava-usage strong {
  color: #fff;
  font-weight: 600;
}
.ava-usage-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  animation: pulseDot 2.4s ease-in-out infinite;
}

.ava-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 16px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}
.ava-stat-v {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}
.ava-stat-l {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* === PROCESS TIMELINE === */
.process {
  padding: 120px 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 50% 0%,
      rgba(199, 191, 255, 0.08) 0%,
      transparent 70%
    ),
    var(--bg);
  position: relative;
}
.process-callout {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 10px 16px 10px 10px;
  background: var(--green-50);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  color: var(--text-2);
  flex-wrap: wrap;
  justify-content: center;
}
.process-callout-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.process-callout-text {
  color: var(--text-2);
}
.process-callout-text em {
  color: var(--text);
  font-style: normal;
  font-weight: 600;
}
@media (max-width: 600px) {
  .process-callout {
    font-size: 12.5px;
    padding: 8px 12px 8px 8px;
  }
}
.process-phases {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 24px;
}
.process-phase {
  position: relative;
  --phase: var(--indigo);
  --phase-line: rgba(79, 70, 229, 0.18);
  --phase-tint: rgba(79, 70, 229, 0.05);
  --phase-glow: rgba(79, 70, 229, 0.22);
}
.process-phase[data-phase="2"] {
  --phase: var(--purple);
  --phase-line: rgba(124, 58, 237, 0.18);
  --phase-tint: rgba(124, 58, 237, 0.05);
  --phase-glow: rgba(124, 58, 237, 0.22);
}
.process-phase[data-phase="3"] {
  --phase: var(--teal);
  --phase-line: rgba(6, 182, 212, 0.22);
  --phase-tint: rgba(6, 182, 212, 0.06);
  --phase-glow: rgba(6, 182, 212, 0.25);
}
.process-phase-header {
  text-align: center;
  margin-bottom: 32px;
}
.process-phase-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--phase);
}
.process-phase-label::before,
.process-phase-label::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--phase);
  opacity: 0.45;
}
.process-phase-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-top: 6px;
  letter-spacing: -0.01em;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  padding-top: 22px;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(16.66% + 4px);
  right: calc(16.66% + 4px);
  height: 2px;
  background: var(--phase-line);
  border-radius: 2px;
  z-index: 0;
}
.process-step {
  position: relative;
  padding: 36px 22px 24px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  z-index: 1;
}
.process-step:hover {
  border-color: var(--phase);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.process-step-num {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--phase, var(--ink));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  box-shadow:
    0 0 0 5px #fff,
    0 6px 18px var(--phase-glow);
  z-index: 2;
  transition: transform 0.3s var(--ease);
}
.process-step:hover .process-step-num {
  transform: translateX(-50%) scale(1.06);
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  margin-top: 4px;
  letter-spacing: -0.005em;
}
.process-step p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
}
.process-step ul {
  list-style: none;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.process-step ul li {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.process-step ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--phase);
  opacity: 0.85;
}
/* Milestone cards, Soft launch & Full go-live */
.process-step.milestone {
  background:
    linear-gradient(180deg, var(--phase-tint) 0%, transparent 60%), #fff;
  border-color: var(--phase);
  box-shadow: 0 12px 28px var(--phase-glow);
}
.process-step.milestone::after {
  content: "MILESTONE";
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--phase);
  padding: 3px 8px;
  background: #fff;
  border: 1px solid var(--phase);
  border-radius: var(--radius-pill);
}

/* === REGIONS === */
.regions {
  padding: 120px 0;
  background: var(--bg-2);
}

/* === Operations Atlas (Asia entry hero block) ============================ */
.atlas {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 24px;
  margin: 0 auto 88px;
  max-width: 1080px;
  align-items: stretch;
}

/* --- Map column ---------------------------------------------------------- */
.atlas-map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fafafe 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
.atlas-map-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(56, 182, 255, 0.4) 1.4px, transparent 2px),
    radial-gradient(circle, rgba(124, 58, 237, 0.32) 1.2px, transparent 1.8px),
    radial-gradient(circle, rgba(252, 178, 17, 0.3) 1px, transparent 1.6px),
    radial-gradient(circle, rgba(56, 182, 255, 0.2) 1px, transparent 1.5px);
  background-size:
    113px 97px,
    89px 71px,
    67px 53px,
    53px 79px;
  background-position:
    0 0,
    47px 31px,
    19px 41px,
    31px 5px;
  mask-image: radial-gradient(ellipse 95% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(
    ellipse 95% 80% at 50% 50%,
    black,
    transparent
  );
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}
.atlas-map-glow {
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.18) 0%,
    transparent 60%
  );
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
.atlas-map-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
}

/* === Speed-track viz (replaces the map illustration) ==================== */
.speedviz {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 30px 32px 70px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.speed-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.speed-track {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.speed-track-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.speed-track-l {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.speed-track-meta {
  font-size: 12px;
  color: var(--text-2);
  font-weight: 500;
}
.speed-track-meta strong {
  color: var(--text);
  font-weight: 700;
}
.speed-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22);
  animation: pulseDot 2.4s ease-in-out infinite;
}

/* Bar visuals */
.speed-bar {
  height: 36px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.speed-bar-typical {
  background: linear-gradient(90deg, #eff1f8 0%, #e5e7f0 100%);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.speed-bar-typical .speed-bar-seg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-2);
  border-right: 1px solid #dce0f0;
  padding: 0 6px;
}
.speed-bar-typical .speed-bar-seg:last-child {
  border-right: none;
}
.speed-bar-typical .speed-bar-seg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 6px,
    rgba(11, 10, 31, 0.04) 6px,
    rgba(11, 10, 31, 0.04) 12px
  );
  pointer-events: none;
}

.speed-bar-us {
  /* Width represents 8/26 of the typical -- visibly shorter on purpose. */
  width: 32%;
  border: 1px solid transparent;
  background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 60%, #a855f7 100%);
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 6px 10px;
}
.speed-bar-us .speed-lane {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  position: relative;
  overflow: hidden;
}
.speed-bar-us .speed-lane::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-100%);
  animation: speedLaneFlow 3.6s ease-in-out infinite;
}
.speed-bar-us .speed-lane:nth-child(2)::after {
  animation-delay: 0.4s;
}
.speed-bar-us .speed-lane:nth-child(3)::after {
  animation-delay: 0.8s;
}
.speed-bar-us .speed-lane:nth-child(4)::after {
  animation-delay: 1.2s;
}
@keyframes speedLaneFlow {
  0% {
    transform: translateX(-100%);
  }
  60% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Phase labels under the Arbitrail bar */
.speed-phases {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-2);
}
.speed-phases span {
  position: relative;
  padding-right: 10px;
}
.speed-phases span:not(:last-of-type)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-3);
}
.speed-phases em {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(124, 58, 237, 0.1);
  padding: 3px 8px;
  border-radius: 999px;
}
.speed-axis {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.speed-track-us .speed-axis {
  width: 32%;
}

.speed-divider {
  height: 1px;
  background: var(--line);
  margin: 4px 0 2px;
}

/* Markets strip */
.speed-markets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.speed-markets-l {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.speed-markets-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
}
.speed-mkt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 6px rgba(11, 10, 31, 0.04);
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease);
  min-width: 0;
}
.speed-mkt:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(11, 10, 31, 0.08);
  border-color: rgba(124, 58, 237, 0.25);
}
.speed-mkt-flag {
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}
.speed-mkt-name {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.speed-mkt-tag {
  font-family: var(--font-display);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-50);
  padding: 2px 5px;
  border-radius: 999px;
  flex-shrink: 0;
}
.speed-mkt-hq {
  border-color: rgba(16, 185, 129, 0.35);
}

/* --- Pins ---------------------------------------------------------------- */
.atlas-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 0;
  height: 0;
  z-index: 3;
  pointer-events: none;
}
.atlas-pin-glow {
  position: absolute;
  width: 56px;
  height: 56px;
  left: -28px;
  top: -28px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.26) 0%,
    rgba(124, 58, 237, 0) 65%
  );
  animation: atlasPulse 3.2s ease-in-out infinite;
}
.atlas-pin-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  left: -6px;
  top: -6px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow:
    0 0 0 3px #fff,
    0 4px 10px rgba(124, 58, 237, 0.35);
  z-index: 1;
}
.atlas-pin-hq {
  background: var(--green);
  box-shadow:
    0 0 0 3px #fff,
    0 4px 10px rgba(16, 185, 129, 0.4);
}
.atlas-pin-sg .atlas-pin-glow {
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.32) 0%,
    rgba(16, 185, 129, 0) 65%
  );
}
.atlas-pin-label {
  position: absolute;
  left: 14px;
  top: -10px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  padding: 4px 9px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(11, 10, 31, 0.06);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.atlas-pin-label strong {
  font-weight: 700;
  letter-spacing: -0.005em;
}
.atlas-pin-label em {
  font-style: normal;
  color: var(--green);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-left: 7px;
  border-left: 1px solid var(--line);
}
.atlas-pin-label-r {
  left: auto;
  right: 14px;
}
.atlas-pin-label-l {
  left: auto;
  right: 14px;
}

@keyframes atlasPulse {
  0%,
  100% {
    transform: scale(0.85);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

/* --- Live badge + region caption ---------------------------------------- */
.atlas-live {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(11, 10, 31, 0.05);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.atlas-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22);
  animation: pulseDot 2.4s ease-in-out infinite;
}
.atlas-region {
  position: absolute;
  bottom: 22px;
  right: 22px;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-3);
  text-transform: uppercase;
}

/* --- KPI spec list ------------------------------------------------------- */
.atlas-kpis {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 30px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.atlas-kpis::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 40% at 100% 0%,
      rgba(199, 191, 255, 0.18),
      transparent 70%
    ),
    radial-gradient(
      ellipse 60% 50% at 0% 100%,
      rgba(56, 182, 255, 0.1),
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
}
.atlas-kpis > * {
  position: relative;
  z-index: 1;
}
.atlas-kpis-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.atlas-kpi {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.atlas-kpi:last-of-type {
  border-bottom: none;
}
.atlas-kpi-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  min-width: 76px;
}
.atlas-kpi-unit {
  font-size: 16px;
  font-weight: 700;
  margin-left: 3px;
  letter-spacing: 0;
  -webkit-text-fill-color: initial;
  background: none;
  background-clip: initial;
  -webkit-background-clip: initial;
  color: var(--purple);
}
.atlas-kpi-meta {
  min-width: 0;
}
.atlas-kpi-l {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.005em;
}
.atlas-kpi-s {
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 2px;
  line-height: 1.45;
}
.atlas-cta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.22);
}
.atlas-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(79, 70, 229, 0.3);
}
.atlas-cta svg {
  transition: transform 0.2s var(--ease);
}
.atlas-cta:hover svg {
  transform: translateX(3px);
}

/* 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: -0.01em;
}
.regions-sub-hd p {
  font-size: 14px;
  color: var(--text-2);
  max-width: 460px;
  text-align: right;
}

/* Markets grid, unified with .journey-card visual system */
.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 0.25s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.market-card[data-mkt="sg"] {
  --mc: var(--indigo);
  --mc-soft: rgba(79, 70, 229, 0.1);
  --mc-glow: rgba(79, 70, 229, 0.2);
}
.market-card[data-mkt="ph"] {
  --mc: var(--purple);
  --mc-soft: rgba(124, 58, 237, 0.1);
  --mc-glow: rgba(124, 58, 237, 0.2);
}
.market-card[data-mkt="id"] {
  --mc: var(--coral);
  --mc-soft: rgba(244, 114, 182, 0.12);
  --mc-glow: rgba(244, 114, 182, 0.2);
}
.market-card[data-mkt="my"] {
  --mc: var(--teal);
  --mc-soft: rgba(6, 182, 212, 0.12);
  --mc-glow: rgba(6, 182, 212, 0.22);
}
.market-card[data-mkt="vn"] {
  --mc: #f59e0b;
  --mc-soft: rgba(245, 158, 11, 0.12);
  --mc-glow: rgba(245, 158, 11, 0.22);
}

.market-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--indigo-3);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.market-card::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, var(--mc-soft) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.market-card:hover {
  border-color: var(--indigo-100);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.market-card:hover::after {
  opacity: 1;
}

.market-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.market-card-flag-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mc-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.market-card-flag {
  font-size: 28px;
  line-height: 1;
}
.market-card-status {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.market-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.market-card-duration {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mc);
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.market-card-duration > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.market-card-duration > span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mc);
  flex-shrink: 0;
}
.market-card-why {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}

/* 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 0.3s var(--ease);
  z-index: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  --jp: var(--indigo);
  --jp-soft: rgba(79, 70, 229, 0.1);
  --jp-glow: rgba(79, 70, 229, 0.2);
}
.journey-card[data-phase="2"] {
  --jp: var(--purple);
  --jp-soft: rgba(124, 58, 237, 0.1);
  --jp-glow: rgba(124, 58, 237, 0.2);
}
.journey-card[data-phase="3"] {
  --jp: var(--coral);
  --jp-soft: rgba(244, 114, 182, 0.12);
  --jp-glow: rgba(244, 114, 182, 0.2);
}
.journey-card[data-phase="4"] {
  --jp: var(--teal);
  --jp-soft: rgba(6, 182, 212, 0.12);
  --jp-glow: rgba(6, 182, 212, 0.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 0.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: 0.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: -0.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: 0.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 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  --pc: var(--indigo);
  --pc-soft: rgba(79, 70, 229, 0.1);
  --pc-glow: rgba(79, 70, 229, 0.18);
}
.proof-card[data-color="2"] {
  --pc: var(--purple);
  --pc-soft: rgba(124, 58, 237, 0.1);
  --pc-glow: rgba(124, 58, 237, 0.18);
}
.proof-card[data-color="3"] {
  --pc: var(--teal);
  --pc-soft: rgba(6, 182, 212, 0.12);
  --pc-glow: rgba(6, 182, 212, 0.2);
}
.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: -0.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: 0.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: -0.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 0.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: 0.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: -0.01em;
  color: var(--text-3);
  opacity: 0.65;
  transition:
    opacity 0.25s var(--ease),
    color 0.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 0.3s var(--ease);
  text-align: left;
  overflow: hidden;
  --vc: var(--indigo);
  --vc-soft: rgba(79, 70, 229, 0.1);
  --vc-glow: rgba(79, 70, 229, 0.16);
}
.values-strip-item[data-color="2"] {
  --vc: var(--purple);
  --vc-soft: rgba(124, 58, 237, 0.1);
  --vc-glow: rgba(124, 58, 237, 0.16);
}
.values-strip-item[data-color="3"] {
  --vc: var(--teal);
  --vc-soft: rgba(6, 182, 212, 0.12);
  --vc-glow: rgba(6, 182, 212, 0.2);
}
.values-strip-item[data-color="4"] {
  --vc: var(--coral);
  --vc-soft: rgba(244, 114, 182, 0.12);
  --vc-glow: rgba(244, 114, 182, 0.18);
}
.values-strip-item[data-color="5"] {
  --vc: var(--amber);
  --vc-soft: rgba(245, 158, 11, 0.12);
  --vc-glow: rgba(245, 158, 11, 0.2);
}
.values-strip-item[data-color="6"] {
  --vc: var(--green);
  --vc-soft: rgba(16, 185, 129, 0.12);
  --vc-glow: rgba(16, 185, 129, 0.2);
}
.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: -0.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, 0.25),
    transparent 65%
  );
  filter: blur(60px);
  pointer-events: none;
}
.final-cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(25px, 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, 0.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 0.25s var(--ease);
}
.btn-white-xl:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.25);
}
.btn-ghost-white {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease);
}
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}
.final-cta-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.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 0.25s var(--ease),
    box-shadow 0.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 0.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;
  }
  .final-cta-card h2 {
    letter-spacing: -1.4px;
  }
  .final-cta-card > p {
    font-size: 14px;
    line-height: 1.2;
  }
  .btn-white-xl {
    padding: 12px 32px;
    font-size: 12px;
  }
}

/* === 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: -0.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, 0.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 0.2s var(--ease),
    transform 0.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: 4fr 0.7fr 1fr 0.6fr 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: 430px;
  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, 0.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, 0.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: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.footer-contact a {
  color: var(--text-2);
  transition: color 0.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: -0.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 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col a:hover {
  color: var(--indigo);
}
.footer-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #92400e;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.32);
  padding: 1px 6px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: 1px;
}

/* 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: 0.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 0.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 0.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 0.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 0.7s var(--ease-out),
    transform 0.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;
  }
  .atlas {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .speedviz {
    padding: 22px 20px 56px;
    gap: 14px;
  }
  .speed-bar-us,
  .speed-track-us .speed-axis {
    width: 38%;
  }
  .atlas-pin-label {
    font-size: 10.5px;
    padding: 3px 8px;
  }
  .atlas-pin-label em {
    display: none;
  }
  .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;
  }
  .speedviz {
    padding: 18px 16px 52px;
  }
  .speed-bar-us,
  .speed-track-us .speed-axis {
    width: 56%;
  }
  .speed-bar-typical .speed-bar-seg {
    font-size: 10px;
    padding: 0 4px;
  }
  .speed-markets-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .speed-mkt-name {
    font-size: 10.5px;
  }
  .atlas-kpis {
    padding: 22px 22px 18px;
  }
  .atlas-kpi-num {
    font-size: 26px;
    min-width: 64px;
  }
  .atlas-pin-label {
    display: none;
  }
  .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: 14px;
  }
  .btn-primary-xl,
  .btn-secondary-xl {
    padding: 10px 32px;
    font-size: 13px;
  }
}

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

/* === HERO H1 V11 (9-word headline, sized to fill 2 lines) === */
.hero h1.hero-h1-tight {
  font-size: clamp(35px, 6vw, 76px);
  letter-spacing: -2.8px;
  line-height: 1.03;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
@media (max-width: 720px) {
  .hero h1.hero-h1-tight {
    letter-spacing: -1.6px;
    line-height: 1.08;
  }
}

/* === HERO SEGMENTS ROW (V10), 25% smaller than original sizing === */
.hero-segments-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 auto 36px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s var(--ease-out) 0.2s both;
}
.hero-seg-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  height: 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}
.hero-seg-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
  filter: brightness(1.04);
}
.hero-seg-pill img {
  display: block;
  height: 10px;
  width: auto;
  pointer-events: none;
}
@media (max-width: 720px) {
  .hero-segments-row {
    gap: 6px;
    margin-bottom: 28px;
  }
}

/* === MAIN NAV LOGO (V10), reduced 25% (24px -> 18px) === */
.nav-logo img {
  height: 18px !important;
}

/* === LOGO STRIP (V10, matches Scale page .lp-trust pattern exactly) === */
.lp-trust.homepage-trust {
  margin: 0 auto;
  max-width: 880px;
  text-align: center;
  padding: 28px 24px 8px;
}
.lp-trust.homepage-trust .lp-trust-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.lp-trust.homepage-trust .lp-trust-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  overflow-x: auto;
}
.lp-trust.homepage-trust .lp-trust-row .client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  flex-shrink: 0;
  filter: grayscale(100%);
  opacity: 0.55;
  transition:
    opacity 0.25s var(--ease),
    filter 0.25s var(--ease);
}
.lp-trust-row .client-logo:first-child {
  margin-bottom: 5px;
}
.lp-trust.homepage-trust .lp-trust-row .client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.lp-trust.homepage-trust .lp-trust-row .client-logo svg,
.lp-trust.homepage-trust .lp-trust-row .client-logo img {
  height: 20px;
  width: auto;
  max-width: 110px;
  display: block;
}
.lp-trust.homepage-trust .lp-trust-row .client-logo svg[viewBox="0 0 94 32"] {
  height: 24px;
}
@media (max-width: 900px) {
  .lp-trust.homepage-trust .lp-trust-row {
    flex-wrap: wrap;
    gap: 24px 32px;
  }
  .lp-trust.homepage-trust .lp-trust-row .client-logo svg,
  .lp-trust.homepage-trust .lp-trust-row .client-logo img {
    height: 18px;
    max-width: 96px;
  }
}

/* === HERO / TRUST BAR SPACING (V10) === */
/* Hero now ends right after the brand pills row, tighten bottom padding
   and pull the trust bar up so the rhythm feels intentional. */
.hero {
  padding: 160px 0 32px !important;
}
.stats {
  padding: 56px 0 80px !important;
}
/* Re-tune the dot pattern mask so it fits the shorter hero shape and fades out
   naturally above the trust bar instead of cutting off mid-pattern. */
.hero-bg-grid {
  -webkit-mask-image: radial-gradient(
    ellipse 75% 75% at 50% 35%,
    black 0%,
    black 50%,
    transparent 90%
  ) !important;
  mask-image: radial-gradient(
    ellipse 75% 75% at 50% 35%,
    black 0%,
    black 50%,
    transparent 90%
  ) !important;
}
/* Pull the radial gradient backdrop closer to center on a shorter hero. */
.hero-bg-gradient {
  height: 700px !important;
}
@media (max-width: 720px) {
  .hero {
    padding-bottom: 24px !important;
  }
  .stats {
    padding-top: 40px !important;
    padding-bottom: 56px !important;
  }
}

/* === TRUST BAR HORIZONTAL (V10) === */
/* Disable the original .stats-grid centering, we use a custom 2-col layout. */
#statsSection .stats-grid {
  display: none;
}

.trustbar-row-inner {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}
.trustbar-row-left {
  flex: 0 0 320px;
  text-align: left;
  padding-top: 4px;
}
.trustbar-row-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.trustbar-row-desc {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: var(--text);
  margin: 0;
  text-wrap: balance;
}
.trustbar-row-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  min-width: 0;
}
.trustbar-row-stat {
  text-align: left;
}
.trustbar-row-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 10px;
  white-space: nowrap;
}
.trustbar-row-num .suf {
  font-weight: 800;
}
.trustbar-row-num .suf-words {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-left: 2px;
}
.trustbar-row-prefix {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-right: 2px;
}
.trustbar-row-label {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-2);
  min-height: calc(1.4em * 2);
}
@media (max-width: 1080px) {
  .trustbar-row-inner {
    gap: 40px;
  }
  .trustbar-row-left {
    flex: 0 0 280px;
  }
  .trustbar-row-right {
    gap: 24px;
  }
  .trustbar-row-num {
    font-size: 32px;
  }
  .trustbar-row-num .suf-words,
  .trustbar-row-prefix {
    font-size: 22px;
  }
}
@media (max-width: 900px) {
  .trustbar-row-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }
  .trustbar-row-left {
    flex: 0 0 auto;
    max-width: 100%;
  }
  .trustbar-row-right {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .trustbar-row-desc {
    font-size: 15px;
  }
  .trustbar-row-num {
    font-size: 25px;
  }
  .trustbar-row-label {
    font-size: 12.5px;
  }
}
@media (max-width: 600px) {
  .trustbar-row-right {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

/* === INDUSTRY VERTICALS (V10), reuse Our Services seg-card styles =========
   Only adds: badge-pill text styling + vertical color modifiers for features
   bullets and footer link. Cards inherit padding, border, hover, etc. from
   the existing .seg-card rules in v6_47. */

/* Section-title accent + calculator H2 accent, same indigo->violet gradient as hero H1 .accent */
.section-title .accent,
.calc-text h2 .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

/* === VALUE CARDS V10 (Three challenges we solve, Scale / Stay / Save) === */
.values-grid {
  align-items: stretch;
}
.values-grid .value-card-v10 {
  position: relative;
  padding: 40px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.values-grid .value-card-v10:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.values-grid .value-card-v10::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.values-grid .value-card-v10.scale::before {
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
}
.values-grid .value-card-v10.stay::before {
  background: linear-gradient(90deg, #06b6d4, #10b981);
}
.values-grid .value-card-v10.save::before {
  background: linear-gradient(90deg, #f59e0b, #f472b6);
}

.value-icon-v10 {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.value-icon-v10 svg {
  width: 26px;
  height: 26px;
}

.value-card-v10.scale .value-icon-v10 {
  background: var(--indigo-50);
  color: var(--indigo);
}
.value-card-v10.stay .value-icon-v10 {
  background: #ecfeff;
  color: #06b6d4;
}
.value-card-v10.save .value-icon-v10 {
  background: #fffbeb;
  color: #f59e0b;
}

.value-card-v10 h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 14px;
}
.value-card-v10 p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0 0 28px;
}
.value-card-v10-metric {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.value-card-v10-metric strong {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}
.value-card-v10.scale .value-card-v10-metric strong {
  color: var(--indigo);
}
.value-card-v10.stay .value-card-v10-metric strong {
  color: #06b6d4;
}
.value-card-v10.save .value-card-v10-metric strong {
  color: #f59e0b;
}
.value-card-v10-metric span {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.45;
}
@media (max-width: 720px) {
  .values-grid .value-card-v10 {
    padding: 32px 26px;
  }
  .value-card-v10 h3 {
    font-size: 22px;
  }
  .value-card-v10-metric strong {
    font-size: 28px;
  }
  .section-title {
    letter-spacing: -1.4px;
  }
}

/* Vertical badge, plain colored text, no pill chrome */
.vert-badge-text {
  margin-bottom: 18px;
}
.vert-badge-text span {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.seg-card.vert-ins .vert-badge-text span {
  color: #dc2626;
}
.seg-card.vert-hc .vert-badge-text span {
  color: #059669;
}
.seg-card.vert-ts .vert-badge-text span {
  color: #06b6d4;
}
.seg-card.vert-ota .vert-badge-text span {
  color: #ea580c;
}

/* Insurance, red */
.seg-card.vert-ins .seg-features li::before {
  background-color: rgba(220, 38, 38, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l2.5 2.5L9 2' stroke='%23DC2626' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.seg-card.vert-ins .seg-footer a {
  color: #dc2626;
}

/* Healthcare, green */
.seg-card.vert-hc .seg-features li::before {
  background-color: rgba(5, 150, 105, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l2.5 2.5L9 2' stroke='%23059669' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.seg-card.vert-hc .seg-footer a {
  color: #059669;
}

/* Tech Support, cyan */
.seg-card.vert-ts .seg-features li::before {
  background-color: rgba(6, 182, 212, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l2.5 2.5L9 2' stroke='%2306B6D4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.seg-card.vert-ts .seg-footer a {
  color: #06b6d4;
}

/* OTA / Travel, orange */
.seg-card.vert-ota .seg-features li::before {
  background-color: rgba(234, 88, 12, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l2.5 2.5L9 2' stroke='%23EA580C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.seg-card.vert-ota .seg-footer a {
  color: #ea580c;
}

/* Verticals: 4 cards in one row at desktop. Cards are narrower than Our Services
   (which is 2x2), so trim padding and text sizes to fit gracefully. */
#verticals .segments-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
#verticals .seg-card {
  padding: 28px 24px;
}
#verticals .seg-card h3 {
  font-size: 22px;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}
#verticals .seg-card > p {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 22px;
}
#verticals .seg-features {
  margin-bottom: 24px;
}
#verticals .seg-features li {
  font-size: 13px;
  padding: 7px 0;
  gap: 8px;
}
#verticals .seg-features li::before {
  width: 14px;
  height: 14px;
  margin-top: 3px;
}
#verticals .vert-badge-text {
  margin-bottom: 16px;
}
#verticals .vert-badge-text span {
  font-size: 10.5px;
  letter-spacing: 1.5px;
}
#verticals .seg-footer {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-top: 16px;
}
#verticals .seg-footer .seg-pricing {
  font-size: 12px;
  line-height: 1.4;
}
#verticals .seg-footer a {
  font-size: 13px;
}

@media (max-width: 1080px) {
  #verticals .segments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  #verticals .seg-card {
    padding: 36px 32px;
  }
}
@media (max-width: 720px) {
  #verticals .segments-grid {
    grid-template-columns: 1fr;
  }
}

/* === 2026 REALITY SECTION (V10) === */
.hp-reality {
  padding: 96px 0;
  background: #fff9f1;
  position: relative;
}
.hp-reality .wrap {
  max-width: 1200px;
}
.hp-reality .hp-section-hd {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.hp-reality .hp-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: #fffbeb;
  color: #f59e0b;
  font: 600 11px/1 var(--font-display);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hp-reality .hp-section-hd h2 {
  font: 800 clamp(34px, 4.4vw, 52px)/1.05 var(--font-display);
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0 0 18px;
  text-wrap: balance;
}
.hp-reality .hp-section-hd h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hp-reality .hp-section-hd p {
  font: 400 18px/1.55 var(--font-body);
  color: var(--text-2);
  margin: 0;
  text-wrap: balance;
}
.hp-reality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hp-reality-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid #eeeef6;
  box-shadow: 0 4px 12px rgba(10, 14, 39, 0.04);
  position: relative;
  overflow: hidden;
}
.hp-reality-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.hp-reality-card.r1::before {
  background: linear-gradient(90deg, #f59e0b, #f472b6);
}
.hp-reality-card.r2::before {
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
}
.hp-reality-card.r3::before {
  background: linear-gradient(90deg, #06b6d4, #10b981);
}
.hp-reality-num {
  font: 800 14px/1 var(--font-display);
  color: #94a3b8;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}
.hp-reality-card h3 {
  font: 700 22px/1.2 var(--font-display);
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 14px;
}
.hp-reality-card p {
  font: 400 15px/1.55 var(--font-body);
  color: var(--text-2);
  margin: 0;
}
.hp-reality-card-stat {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed #e2e3ee;
}
.hp-reality-card-stat-num {
  font: 800 26px/1 var(--font-display);
  letter-spacing: -0.5px;
  color: var(--text);
}
.hp-reality-card.r1 .hp-reality-card-stat-num {
  color: #f472b6;
}
.hp-reality-card.r2 .hp-reality-card-stat-num {
  color: #7c3aed;
}
.hp-reality-card.r3 .hp-reality-card-stat-num {
  color: #06b6d4;
}
.hp-reality-card-stat-label {
  font: 500 12.5px/1.4 var(--font-body);
  color: var(--text-2);
  margin-top: 6px;
}
@media (max-width: 1080px) {
  .hp-reality-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
@media (max-width: 720px) {
  .hp-reality {
    padding: 64px 0;
  }
  .hp-reality-card {
    padding: 26px 22px;
  }
}

/* === CORE DEDICATED SECTION (V10), red design, matches Core page ============ */
.core-section {
  position: relative;
  padding: 96px 0 104px;
  background: linear-gradient(180deg, #fff7f7 0%, #ffeded 60%, #fff7f7 100%);
  overflow: hidden;
}
.core-section .wrap {
  max-width: 1200px;
  position: relative;
  z-index: 2;
}
.core-bg-glow {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse 50% 60% at 80% 30%,
      rgba(255, 86, 89, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 50% at 15% 75%,
      rgba(220, 38, 38, 0.1) 0%,
      transparent 55%
    );
  pointer-events: none;
  z-index: 1;
}

.core-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* --- LEFT: text column --- */
.core-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  background: rgba(255, 86, 89, 0.1);
  border: 1px solid rgba(255, 86, 89, 0.28);
  border-radius: 999px;
  font: 600 12px/1 var(--font-display);
  color: #b91c1c;
  letter-spacing: 0.4px;
  margin-bottom: 22px;
}
.core-pill-text {
  color: #991b1b;
}

/* Flag dots (subtle representation, not actual flags) */
.core-flag {
  display: inline-block;
  width: 18px;
  height: 12px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}
.core-flag-sg {
  background: linear-gradient(to bottom, #ef3340 50%, #ffffff 50%);
}
.core-flag-ph {
  background:
    linear-gradient(to right, #0038a8 50%, #ce1126 50%) bottom/100% 50%
      no-repeat,
    #0038a8;
}

.core-h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 50px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin: 0 0 22px;
  text-wrap: balance;
}
.core-accent {
  background: linear-gradient(135deg, #ff5659 0%, #b91c1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.core-sub {
  font: 400 17px/1.6 var(--font-body);
  color: var(--text-2);
  margin: 0 0 32px;
  max-width: 520px;
}

.core-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 36px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 86, 89, 0.2);
  border-bottom: 1px solid rgba(255, 86, 89, 0.2);
  max-width: 520px;
}
.core-stat-num {
  font: 800 38px/1 var(--font-display);
  letter-spacing: -1.5px;
  color: #dc2626;
  margin-bottom: 6px;
}
.core-stat-l {
  font: 500 12.5px/1.4 var(--font-body);
  color: var(--text-2);
}

.core-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  background: #dc2626;
  color: #fff;
  font: 600 15px/1 var(--font-display);
  text-decoration: none;
  border-radius: 12px;
  box-shadow:
    0 8px 24px rgba(220, 38, 38, 0.32),
    0 2px 6px rgba(220, 38, 38, 0.18);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.core-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 32px rgba(220, 38, 38, 0.38),
    0 4px 12px rgba(220, 38, 38, 0.22);
}

/* --- RIGHT: country cards --- */
.core-countries {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.core-country {
  display: block;
  padding: 28px 28px 24px;
  background: #fff;
  border: 1px solid rgba(255, 86, 89, 0.2);
  border-radius: 18px;
  text-decoration: none;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.06);
}
.core-country:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(220, 38, 38, 0.12);
  border-color: rgba(255, 86, 89, 0.4);
}
.core-country-hd {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.core-country-flag-mark {
  width: 36px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}
.core-country-tag {
  font: 600 10.5px/1 var(--font-display);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.core-country-name {
  font: 800 22px/1 var(--font-display);
  letter-spacing: -0.6px;
  color: var(--text);
}
.core-country-desc {
  font: 400 14.5px/1.55 var(--font-body);
  color: var(--text-2);
  margin: 0 0 16px;
}
.core-country-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: 600 13px/1 var(--font-display);
  color: #dc2626;
  transition: gap 0.2s;
}
.core-country.sg:hover .core-country-link,
.core-country.ph:hover .core-country-link {
  gap: 9px;
}

@media (max-width: 1024px) {
  .core-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .core-stats {
    max-width: 100%;
  }
  .core-sub {
    max-width: 100%;
  }
}
@media (max-width: 720px) {
  .core-section {
    padding: 64px 0 72px;
  }
  .core-h2 {
    font-size: 30px;
    letter-spacing: -1.2px;
  }
  .core-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 20px 0;
  }
  .core-stat-num {
    font-size: 28px;
  }
  .core-country {
    padding: 22px;
  }
}

/* === THE NINE FUNCTIONS SECTION (V23) ===================================== */
.ota-nine {
  position: relative;
  padding: 100px 0 110px;
  background: linear-gradient(180deg, #fffcf5 0%, #fafafc 100%);
  border-top: 1px solid var(--line, rgba(15, 23, 42, 0.08));
  border-bottom: 1px solid var(--line, rgba(15, 23, 42, 0.08));
}
.ota-nine .wrap {
  max-width: 1240px;
}

.ota-nine-head {
  max-width: 880px;
  margin: 0 auto 64px;
  text-align: center;
}
.ota-nine-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #ea580c;
  margin-bottom: 18px;
}
.ota-nine-head h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 1.06;
  margin: 0 0 18px;
  color: var(--text, #0f172a);
  text-wrap: balance;
}
.ota-nine-head h2 .accent {
  background-image: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.ota-nine-head .ota-nine-subtitle {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.25;
  color: var(--text, #0f172a);
  margin: 0 0 16px;
  text-wrap: balance;
}
.ota-nine-head p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-2, #475569);
  margin: 0;
  text-wrap: balance;
}

/* Block layout: header on left, cards grid on right (stacks on mobile) */
.ota-nine-block {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto 56px;
  padding: 40px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}
.ota-nine-block:last-child {
  margin-bottom: 0;
}

.ota-nine-block-hd {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ota-nine-block-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.ota-nine-block-label {
  font-family: var(--font-display);
  font-size: clamp(23px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.1;
  color: var(--text, #0f172a);
}
.ota-nine-block-desc {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-2, #475569);
  margin: 0;
  max-width: 260px;
}

/* Per-block accent colors */
.ota-nine-block-customer .ota-nine-block-num {
  color: #ea580c;
}
.ota-nine-block-supply .ota-nine-block-num {
  color: #4f46e5;
}
.ota-nine-block-revenue .ota-nine-block-num {
  color: #059669;
}

.ota-nine-block-customer .ota-nine-card {
  border-top-color: #ea580c;
}
.ota-nine-block-supply .ota-nine-card {
  border-top-color: #4f46e5;
}
.ota-nine-block-revenue .ota-nine-card {
  border-top-color: #059669;
}

/* Card grid: 4 / 3 / 2 columns per block at desktop */
.ota-nine-block-grid {
  display: grid;
  gap: 16px;
}
.ota-nine-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.ota-nine-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.ota-nine-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.ota-nine-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-top: 3px solid #ea580c; /* overridden per-block above */
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.ota-nine-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}
.ota-nine-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.2;
  color: var(--text, #0f172a);
  margin: 0 0 10px;
}
.ota-nine-card > p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2, #475569);
  margin: 0;
}

/* Hero variant, used for HCN verification in Block 3 */
.ota-nine-card-hero {
  background: linear-gradient(180deg, #fff 0%, #ecfdf5 100%);
  border-color: rgba(5, 150, 105, 0.3);
}
.ota-nine-proof {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(5, 150, 105, 0.32);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  background-image: linear-gradient(135deg, #059669 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .ota-nine-block {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ota-nine-block-hd {
    position: static;
    flex-direction: row;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
  }
  .ota-nine-block-desc {
    max-width: none;
    width: 100%;
  }
  .ota-nine-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .ota-nine-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .ota-nine {
    padding: 72px 0 80px;
  }
  .ota-nine-head {
    margin-bottom: 44px;
  }
  .ota-nine-grid-4,
  .ota-nine-grid-3,
  .ota-nine-grid-2 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ota-nine-card {
    padding: 22px 20px;
  }
  .ota-nine-head h2 {
    font-size: 25px;
    letter-spacing: -1.1px;
  }
  .ota-nine-head p {
    font-size: 14px;
    line-height: 1.3;
  }
}

/* === OPERATING MOAT SECTION (V11) ========================================= */
.hp-moat {
  position: relative;
  padding: 110px 0 120px;
  background: #0b0e1a;
  overflow: hidden;
}
.hp-moat-bg-glow {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse 60% 50% at 20% 30%,
      rgba(124, 58, 237, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 50% at 80% 80%,
      rgba(79, 70, 229, 0.15) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}
.hp-moat .wrap {
  position: relative;
  z-index: 1;
  max-width: 1080px;
}

.hp-moat-inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hp-moat-eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 6px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 999px;
  margin-bottom: 28px;
}
.hp-moat-eyebrow-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  padding: 4px 11px;
  border-radius: 999px;
}
.hp-moat-eyebrow-text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #e5e7eb;
}

.hp-moat-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.8vw, 58px);
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 36px;
  text-wrap: balance;
}
.hp-moat-inner h2 .accent {
  background-image: linear-gradient(135deg, #818cf8 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.hp-moat-body {
  margin: 0 0 36px;
}
.hp-moat-body p {
  font-size: 17px;
  line-height: 1.7;
  color: #c5c7d1;
  margin: 0 0 22px;
  text-align: center;
}
.hp-moat-body p:last-child {
  margin-bottom: 0;
}

.hp-moat-kicker {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.35;
  color: #fff;
  margin: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-wrap: balance;
}
.hp-moat-kicker .accent {
  background-image: linear-gradient(135deg, #818cf8 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

@media (max-width: 720px) {
  .hp-moat {
    padding: 60px 0 50px;
  }
  .hp-moat-inner h2 {
    letter-spacing: -1px;
  }
  .hp-moat-body p {
    font-size: 14.5px;
    line-height: 1.5;
  }
  .hp-moat-kicker {
    padding-top: 24px;
    font-size: 16px;
  }
}

/* === AUDIENCE / WHO THIS IS FOR SECTION (V11) ============================ */
.hp-audience {
  position: relative;
  padding: 96px 0 104px;
  background: #ffffff;
}
.hp-audience .wrap {
  max-width: 1200px;
}

.hp-audience-head {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}
.hp-audience-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: 18px;
}
.hp-audience-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 1.08;
  margin: 0;
  color: var(--text);
  text-wrap: balance;
}
.hp-audience-head h2 .accent {
  background-image: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.hp-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1160px;
  margin: 0 auto;
}
.hp-audience-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px 28px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
  overflow: hidden;
}
.hp-audience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.hp-audience-card.aud-ota::before {
  background: linear-gradient(90deg, #ea580c, #f59e0b);
}
.hp-audience-card.aud-hotel::before {
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
}
.hp-audience-card.aud-platform::before {
  background: linear-gradient(90deg, #06b6d4, #10b981);
}

.hp-audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.hp-audience-card.aud-ota:hover {
  border-color: rgba(234, 88, 12, 0.32);
}
.hp-audience-card.aud-hotel:hover {
  border-color: rgba(124, 58, 237, 0.32);
}
.hp-audience-card.aud-platform:hover {
  border-color: rgba(6, 182, 212, 0.32);
}

.hp-audience-tag {
  margin-bottom: 18px;
}
.hp-audience-tag span {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
}
.hp-audience-card.aud-ota .hp-audience-tag span {
  color: #ea580c;
}
.hp-audience-card.aud-hotel .hp-audience-tag span {
  color: #7c3aed;
}
.hp-audience-card.aud-platform .hp-audience-tag span {
  color: #06b6d4;
}

.hp-audience-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.18;
  color: var(--text);
  margin: 0 0 14px;
}
.hp-audience-card > p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 24px;
  flex: 1;
}
.hp-audience-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  transition:
    gap 0.2s var(--ease),
    opacity 0.2s var(--ease);
  width: 100%;
}
.hp-audience-card.aud-ota .hp-audience-cta {
  color: #ea580c;
}
.hp-audience-card.aud-hotel .hp-audience-cta {
  color: #7c3aed;
}
.hp-audience-card.aud-platform .hp-audience-cta {
  color: #06b6d4;
}
.hp-audience-cta:hover {
  gap: 12px;
}
.hp-audience-cta svg {
  transition: transform 0.2s var(--ease);
}
.hp-audience-cta:hover svg {
  transform: translateX(2px);
}

@media (max-width: 1080px) {
  .hp-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .hp-audience {
    padding: 72px 0 80px;
  }
  .hp-audience-head {
    margin-bottom: 40px;
  }
  .hp-audience-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hp-audience-card {
    padding: 28px 24px 24px;
  }
}

/* === EXPANSION / WHAT IS NEXT SECTION (V11) ============================== */
/* Recolored to match the "Why this works" / Operating Moat palette:
   dark navy bg, violet/indigo radial glows, white headline with light-violet
   gradient accent, violet-toned status pills with a pulsing indigo dot. */
.hp-expansion {
  position: relative;
  padding: 110px 0 120px;
  background: #0b0e1a;
  overflow: hidden;
}
.hp-expansion::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse 60% 50% at 80% 30%,
      rgba(124, 58, 237, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 50% at 20% 80%,
      rgba(79, 70, 229, 0.15) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}
.hp-expansion .wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

.hp-expansion-head {
  max-width: 880px;
  margin: 0 auto 60px;
  text-align: center;
}
.hp-expansion-eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 6px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 999px;
  margin-bottom: 24px;
}
.hp-expansion-eyebrow-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  padding: 4px 11px;
  border-radius: 999px;
}
.hp-expansion-eyebrow-text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #e5e7eb;
}
.hp-expansion-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 1.06;
  margin: 0 0 20px;
  color: #fff;
  text-wrap: balance;
}
.hp-expansion-head h2 .accent {
  background-image: linear-gradient(135deg, #818cf8 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.hp-expansion-head p {
  font-size: 16.5px;
  line-height: 1.7;
  color: #c5c7d1;
  margin: 0;
  text-wrap: balance;
}

.hp-expansion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.hp-expansion-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}
.hp-expansion-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 18px 40px rgba(124, 58, 237, 0.18);
}
.hp-expansion-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.14);
  border: 1px solid rgba(124, 58, 237, 0.36);
  color: #c4b5fd;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  padding: 5px 11px 5px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hp-expansion-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a78bfa;
  box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.6);
  animation: expansionPulse 2.2s ease-in-out infinite;
}
@keyframes expansionPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(167, 139, 250, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(167, 139, 250, 0);
  }
}
.hp-expansion-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 12px;
}
.hp-expansion-card > p {
  font-size: 15px;
  line-height: 1.6;
  color: #c5c7d1;
  margin: 0;
}

@media (max-width: 1080px) {
  .hp-expansion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .hp-expansion {
    padding: 80px 0 88px;
  }
  .hp-expansion-head {
    margin-bottom: 40px;
  }
  .hp-expansion-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hp-expansion-card {
    padding: 26px 24px;
  }
}

/* === CASE STUDY TEASE SECTION (V11) ====================================== */
.hp-cstease {
  position: relative;
  padding: 96px 0 104px;
  background: #fafafc;
}
.hp-cstease .wrap {
  max-width: 1200px;
}

.hp-cstease-head {
  max-width: 700px;
  margin: 0 auto 56px;
  text-align: center;
}
.hp-cstease-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: 16px;
}
.hp-cstease-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 1.05;
  margin: 0;
  color: var(--text);
  text-wrap: balance;
}
.hp-cstease-head h2 .accent {
  background-image: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.hp-cstease-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  max-width: 1160px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}
.hp-cstease-card-left {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
}
.hp-cstease-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: 18px;
}
.hp-cstease-card-left h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 16px;
  text-wrap: balance;
}
.hp-cstease-card-left > p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0 0 24px;
}

.hp-cstease-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 28px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hp-cstease-stat-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1;
  background-image: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.hp-cstease-stat-l {
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-2);
}

.hp-cstease-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  align-self: flex-start;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    gap 0.2s var(--ease);
}
.hp-cstease-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.32);
  gap: 12px;
}
.hp-cstease-cta svg {
  transition: transform 0.2s var(--ease);
}
.hp-cstease-cta:hover svg {
  transform: translateX(2px);
}

/* RIGHT SIDE money mock */
.hp-cstease-card-right {
  background: linear-gradient(135deg, #0b0e1a 0%, #1a1f35 100%);
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hp-cstease-card-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    ellipse 70% 60% at 30% 30%,
    rgba(124, 58, 237, 0.25) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.hp-cstease-money-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
}
.hp-cstease-money-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 14px;
}
.hp-cstease-money-amount {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  color: #fff;
  margin-bottom: 26px;
}
.hp-cstease-money-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 22px;
}
.hp-cstease-funnel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hp-cstease-funnel-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-display);
}
.hp-cstease-funnel-row span {
  font-size: 13px;
  color: #c5c7d1;
}
.hp-cstease-funnel-row strong {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.4px;
}
.hp-cstease-funnel-row-final {
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}
.hp-cstease-funnel-row-final strong {
  background-image: linear-gradient(135deg, #818cf8 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

@media (max-width: 980px) {
  .hp-cstease-card {
    grid-template-columns: 1fr;
  }
  .hp-cstease-card-left {
    padding: 36px 32px;
  }
  .hp-cstease-card-right {
    padding: 36px 32px;
  }
}
@media (max-width: 600px) {
  .hp-cstease {
    padding: 72px 0 80px;
  }
  .hp-cstease-head {
    margin-bottom: 40px;
  }
  .hp-cstease-card-left h3 {
    font-size: 24px;
  }
  .hp-cstease-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 0;
  }
  .hp-cstease-stat-num {
    font-size: 22px;
  }
  .hp-cstease-head h2 {
    letter-spacing: -1.3px;
  }
}

/* === FINAL CTA TAGLINE (V11), replaces the 3-item trust strip ============ */
.final-cta-tagline {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.1px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
@media (max-width: 600px) {
  .final-cta-tagline {
    font-size: 11px;
    margin-top: 18px;
  }
}

.deep-pages {
  padding: 96px 0;
  background: #fafafe;
  border-top: 1px solid var(--line);
}
.deep-pages .wrap {
  max-width: 1180px;
}
.deep-pages-hd {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.deep-pages-hd h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.12;
  color: var(--text);
  margin: 14px 0 12px;
  text-wrap: balance;
}
.deep-pages-hd h2 em {
  font-style: normal;
  color: var(--indigo);
}
.deep-pages-hd p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.6;
}
.deep-pages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.deep-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.deep-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(11, 10, 31, 0.1);
  border-color: var(--indigo);
}
.deep-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-color, var(--indigo));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.deep-card:hover::before {
  transform: scaleX(1);
}
.deep-card-row1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.deep-card-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(11, 10, 31, 0.04);
  color: var(--text-2);
}
.deep-card.industry .deep-card-tag {
  background: rgba(124, 58, 237, 0.1);
  color: var(--purple);
}
.deep-card.service .deep-card-tag {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}
.deep-card.country .deep-card-tag {
  background: rgba(245, 158, 11, 0.1);
  color: var(--amber);
}
.deep-card-arrow {
  color: var(--text-3);
  font-size: 18px;
  transition: transform 0.25s ease;
}
.deep-card:hover .deep-card-arrow {
  transform: translateX(4px);
  color: var(--indigo);
}
.deep-card-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.4px;
  line-height: 1.2;
}
.deep-card-desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
  flex-grow: 1;
}
.deep-card-meta {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.04em;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
@media (max-width: 980px) {
  .deep-pages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .deep-pages-grid {
    grid-template-columns: 1fr;
  }
  .deep-pages-hd h2 {
    font-size: 28px;
  }
}

/* ═══════════════════════════════════════════════════════════
   NAV INDUSTRY DROPDOWN (preserved from v11)
═══════════════════════════════════════════════════════════ */

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  user-select: none;
}
.nav-dropdown-caret {
  transition: transform 0.2s var(--ease, ease);
  opacity: 0.7;
  flex-shrink: 0;
}
.nav-dropdown.open .nav-dropdown-caret,
.nav-dropdown:hover .nav-dropdown-caret {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--line, #eeeef6);
  border-radius: 12px;
  box-shadow:
    0 12px 32px rgba(11, 10, 31, 0.1),
    0 4px 8px rgba(11, 10, 31, 0.06);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.18s var(--ease, ease),
    transform 0.18s var(--ease, ease),
    visibility 0.18s;
  z-index: 1100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block !important;
  padding: 10px 14px !important;
  font-size: 14px;
  color: var(--text-2, #4a4b6e);
  border-radius: 8px;
  white-space: nowrap;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.nav-dropdown-menu a:hover {
  background: var(--bg-3, #f4f4fb);
  color: var(--text, #0b0a1f);
}

/* Mobile nav: dropdown becomes inline section */
@media (max-width: 900px) {
  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 6px 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
  .nav-dropdown-menu a {
    font-size: 14px;
    padding: 10px 12px !important;
  }
}

/* === Brand color utilities for service segment pills === */
.hero-seg-pill.bg-scale {
  background: #38b6ff;
}
.hero-seg-pill.bg-cxas {
  background: #fea115;
}
.hero-seg-pill.bg-ava {
  background: #fcb211;
}
.hero-seg-pill.bg-core {
  background: #ff5659;
}

/* === Brand color utilities for seg-card badges === */
.seg-card-badge-new.bg-scale {
  background: #38b6ff;
}
.seg-card-badge-new.bg-cxas {
  background: #fea115;
}
.seg-card-badge-new.bg-ava {
  background: #fcb211;
}
.seg-card-badge-new.bg-core {
  background: #ff5659;
}

/* === Misc utilities (preserved from v11) === */
.bg-indigo {
  background: var(--indigo, #4f46e5) !important;
}
.link-inherit {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.sr-anchor {
  position: absolute;
  top: 0;
  height: 1px;
  width: 1px;
}
