/* ── Local token bridge — home page only ── */
:root {
  --blue: #1A4B8C;
  --blue-dk: #0F2E5C;
  --blue-md: #2E6BC4;
  --teal: #0E7B82;
  --teal-dk: #064146;
  --teal-glow: #14A6B0;
  --ink: #0E1530;
  --ink-70: rgba(14, 21, 48, 0.70);
  --ink-40: rgba(14, 21, 48, 0.40);
  --off: #F5F7FA;
  --border: #E8F0F8;
  --sans: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --gradient-hero: linear-gradient(135deg, #0a1628 0%, #1a4b8c 60%, #0e7b82 100%);
  --hero-bg: #0a1628;
  --grad-hero: linear-gradient(135deg, #0a1628 0%, #1a4b8c 60%, #0e7b82 100%);
}

\n

/* ═══ TOKENS ═══════════════════════════════════════════════════════════════ */
:root {
  --blue: #1A4B8C;
  --blue-dk: #0D2E5C;
  --blue-md: #2563A8;
  --blue-lt: #EBF1FA;
  --teal: #0E7B82;
  --teal-dk: #085F65;
  --teal-glow: #7ECFCF;
  --purple: #6C3AE5;
  --grad: linear-gradient(135deg, #1A56DB 0%, #6C3AE5 100%);
  --hero-bg: linear-gradient(160deg, #06101F 0%, #0D1E3C 55%, #081728 100%);
  --ink: #0C1929;
  --ink-70: #3D5066;
  --ink-40: #8A9EB5;
  --ink-10: #EEF2F7;
  --off: #F6F8FB;
  --border: #E2E8F0;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 18px;
  --r-2xl: 24px;
  --r-full: 9999px;
  --sh-sm: 0 1px 3px rgba(12, 25, 41, .06);
  --sh-md: 0 4px 16px rgba(12, 25, 41, .08);
  --sh-lg: 0 8px 32px rgba(12, 25, 41, .10);
  --sh-xl: 0 16px 56px rgba(12, 25, 41, .14);
  --ease: .22s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

p {
  margin-bottom: .9em;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.025em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.wrap {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding: 96px 0;
}

.section--off {
  background: var(--off);
}

.section--blue {
  background: var(--blue-dk);
}

.section--dark {
  background: #060F1E;
}

.eyebrow {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.eyebrow--light {
  color: var(--teal-glow);
}

.sec-head {
  margin-bottom: 56px;
}

.sec-head.center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.sec-head p {
  font-size: 1.0625rem;
  color: var(--ink-70);
  line-height: 1.72;
  margin-top: 12px;
}

.sec-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-md);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: all var(--ease);
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}

.btn svg {
  flex-shrink: 0;
  transition: transform .15s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
  box-shadow: var(--sh-md);
}

.btn-secondary {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-secondary:hover {
  background: var(--blue-lt);
}

.btn-ghost-white {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .6);
}

.btn-white {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--blue-lt);
  color: var(--blue-dk);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .7);
}

.btn-lg {
  padding: 15px 36px;
  font-size: .9375rem;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap .15s ease, color .15s ease;
}

.arrow-link:hover {
  gap: 10px;
  color: var(--blue-dk);
}

.arrow-link--white {
  color: rgba(255, 255, 255, .65);
}

.arrow-link--white:hover {
  color: #fff;
}

.arrow-link svg {
  flex-shrink: 0;
}

/* Reveal */
.rev {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.rev.in {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .07s;
}

.d2 {
  transition-delay: .14s;
}

.d3 {
  transition-delay: .21s;
}

.d4 {
  transition-delay: .28s;
}

/* ═══ NAV ═══════════════════════════════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 500;
  height: 64px;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}

.site-nav.scrolled {
  box-shadow: var(--sh-md);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  text-decoration: none;
}

/* Transparent logo on light nav background */
.nav-logo-img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-a {
  padding: 6px 12px;
  border-radius: var(--r-md);
  font-size: .84rem;
  font-weight: 500;
  color: var(--ink-70);
  transition: all .15s ease;
  white-space: nowrap;
}

.nav-a:hover,
.nav-a.active {
  color: var(--blue);
  background: var(--blue-lt);
}

.nav-cta {
  margin-left: 14px;
  padding: 9px 20px;
  font-size: .84rem;
}

.nav-hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--r-md);
}

.nav-hbg span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--ease);
}

.nav-hbg.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hbg.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hbg.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 490;
  padding: 20px 24px;
  gap: 4px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile .nav-a {
  font-size: 1rem;
  padding: 14px 16px;
  border-radius: var(--r-lg);
}

.nav-mobile .btn {
  margin-top: 10px;
  justify-content: center;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .45);
  transition: color .15s;
}

.breadcrumb a:hover {
  color: rgba(255, 255, 255, .8);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, .22);
}

/* ═══ TRUST BAR ═══════════════════════════════════════════════════════════ */
.trust-bar {
  background: #060F1E;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.trust-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  row-gap: 10px;
}

.trust-lbl {
  font-size: .6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .3);
  text-transform: uppercase;
  letter-spacing: .08em;
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  padding-left: 28px;
}

.trust-logo {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .32);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ═══ CTA SECTION ═════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 90% at 85% 50%, rgba(108, 58, 229, .2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-text h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-text p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.72;
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.cta-note {
  font-size: .78rem;
  color: rgba(255, 255, 255, .28);
  margin-top: 4px;
}

/* ═══ FOOTER ═══════════════════════════════════════════════════════════════ */
.site-footer {
  display: none !important;
}

.footer {
  background: #060F1E;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 52px;
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-logo-img {
  height: 28px;
  width: auto;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: .84rem;
  color: rgba(255, 255, 255, .38);
  line-height: 1.72;
  margin-bottom: 20px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-c {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .42);
}

.footer-c svg {
  color: var(--teal-glow);
  flex-shrink: 0;
}

.footer-c a {
  color: rgba(255, 255, 255, .42);
  transition: color .15s;
}

.footer-c a:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-soc {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .06);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .4);
  transition: all .15s;
}

.footer-soc:hover {
  background: var(--blue);
  color: #fff;
}

.footer-col-h {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: .84rem;
  color: rgba(255, 255, 255, .42);
  transition: color .15s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-nl {
  margin-top: 28px;
}

.footer-nl p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 10px;
}

.footer-nl-row {
  display: flex;
  gap: 6px;
}

.footer-nl-in {
  flex: 1;
  padding: 9px 12px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  font-family: var(--sans);
  font-size: .8125rem;
  outline: none;
}

.footer-nl-in::placeholder {
  color: rgba(255, 255, 255, .25);
}

.footer-nl-in:focus {
  border-color: rgba(255, 255, 255, .28);
}

.footer-nl-btn {
  padding: 9px 16px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  font-size: .8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}

.footer-nl-btn:hover {
  background: var(--blue-md);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: .75rem;
  color: rgba(255, 255, 255, .22);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: .75rem;
  color: rgba(255, 255, 255, .22);
  transition: color .15s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, .55);
}

/* ═══ RESPONSIVE ══════════════════════════════════════════════════════════ */
@media(max-width:1024px) {
  .section {
    padding: 72px 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 48px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-right {
    align-items: stretch;
  }

  .cta-right .btn-lg {
    justify-content: center;
  }
}

@media(max-width:640px) {
  .wrap {
    padding-inline: 16px;
  }

  .section {
    padding: 56px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hbg {
    display: flex;
  }

  .trust-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .trust-lbl {
    border-right: none;
    padding-right: 0;
  }

  .trust-logos {
    padding-left: 0;
    gap: 8px 20px;
  }

  .sec-head--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--hero-bg);
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: calc(100svh - 64px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 80px clamp(24px, calc((100vw - 1200px)/2 + 24px), 96px);
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-glow);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--teal-glow);
}

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  max-width: 560px;
}

.hero h1 .accent {
  color: var(--teal-glow);
}

.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 36px;
}

.hero-stat {
  flex: 1;
}

.hero-stat+.hero-stat {
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.hero-stat-n {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -.03em;
}

.hero-stat-l {
  font-size: .72rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.hero-img {
  position: relative;
  overflow: hidden;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(.75) saturate(.85);
}

.hero-img-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0D1E3C 0%, transparent 35%), linear-gradient(to top, rgba(6, 16, 31, .65) 0%, transparent 45%);
}

.hero-card {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 2;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-xl);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hc-metric {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.hc-metric:last-child {
  border-right: none;
}

.hc-val {
  font-size: 1.625rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
  margin-bottom: 4px;
}

.hc-lbl {
  font-size: .6875rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.4;
}

.hc-delta {
  font-size: .625rem;
  font-weight: 700;
  color: var(--teal-glow);
  display: block;
  margin-top: 2px;
}

/* Value cards */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.value-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
  border-color: transparent;
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}

.value-card h3 {
  margin-bottom: 10px;
}

.value-card p {
  font-size: .9rem;
  color: var(--ink-70);
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Capabilities */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cap-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}

.cap-card:hover {
  box-shadow: var(--sh-xl);
  transform: translateY(-4px);
  border-color: transparent;
}

.cap-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--ink-10);
}

.cap-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.88);
  transition: transform .5s ease, filter .5s ease;
}

.cap-card:hover .cap-card-img img {
  transform: scale(1.05);
  filter: brightness(.95);
}

.cap-card-img-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 25, 41, .35) 0%, transparent 55%);
}

.cap-card-body {
  padding: 22px 22px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cap-card-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-lt);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 12px;
  flex-shrink: 0;
}

.cap-card-body h3 {
  margin-bottom: 7px;
  transition: color var(--ease);
}

.cap-card:hover .cap-card-body h3 {
  color: var(--blue);
}

.cap-card-body p {
  font-size: .86rem;
  color: var(--ink-70);
  line-height: 1.65;
  flex: 1;
}

.cap-card-foot {
  padding: 14px 22px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cap-card-foot span {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 5px;
}

.cap-arr {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: background var(--ease), color var(--ease);
}

.cap-card:hover .cap-arr {
  background: var(--blue);
  color: #fff;
}

/* Testimonials */
.test-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.test-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: background var(--ease);
}

.test-card:hover {
  background: rgba(255, 255, 255, .09);
}

.test-stars {
  color: #F5A623;
  font-size: .875rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.test-quote {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.78;
  font-style: italic;
  flex: 1;
  margin-bottom: 28px;
}

.test-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.test-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.test-name {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
}

.test-role {
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
  margin-top: 2px;
}

.test-badge {
  margin-left: auto;
  background: rgba(14, 123, 130, .25);
  color: var(--teal-glow);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

/* Case studies */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.case-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55) saturate(.8);
  transition: filter .4s ease, transform .4s ease;
}

.case-card:hover img {
  filter: brightness(.45) saturate(.7);
  transform: scale(1.03);
}

.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 16, 31, .92) 0%, rgba(6, 16, 31, .1) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.case-ind {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 6px;
}

.case-stat {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.05em;
}

.case-stat-l {
  font-size: .8125rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 8px;
}

.case-cname {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  transition: all .15s ease;
}

.case-card:hover .case-link {
  color: #fff;
  gap: 10px;
}

/* Insights */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.insight-card {
  display: flex;
  flex-direction: column;
}

.insight-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--ink-10);
  margin-bottom: 20px;
}

.insight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.insight-card:hover .insight-img img {
  transform: scale(1.04);
}

.insight-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: rgba(6, 16, 31, .68);
  color: rgba(255, 255, 255, .88);
  backdrop-filter: blur(6px);
}

.insight-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
  line-height: 1.35;
}

.insight-card h3 a {
  color: var(--ink);
  transition: color .15s;
}

.insight-card:hover h3 a {
  color: var(--blue);
}

.insight-excerpt {
  font-size: .875rem;
  color: var(--ink-70);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}

/* FAQ */
.faq-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-side h2 {
  margin-bottom: 14px;
}

.faq-side p {
  font-size: .9375rem;
  color: var(--ink-70);
  margin-bottom: 28px;
}

.faq-side-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.faq-side-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color .15s;
}

.faq-btn:hover,
.faq-btn[aria-expanded="true"] {
  color: var(--blue);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .2s ease, opacity .2s ease;
}

.faq-icon::before {
  width: 14px;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 14px;
}

.faq-btn[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-body {
  display: none;
  padding-bottom: 20px;
}

.faq-body.open {
  display: block;
}

.faq-body p {
  font-size: .9375rem;
  color: var(--ink-70);
  line-height: 1.72;
}

@media(max-width:1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding: 64px 24px 48px;
    order: 2;
  }

  .hero-img {
    order: 1;
    height: 320px;
  }

  .hero-img-tint {
    background: linear-gradient(to top, #0D1E3C 0%, transparent 50%) !important;
  }

  .hero-card {
    display: none;
  }

  .hero-stat+.hero-stat {
    padding-left: 20px;
  }

  .hero-stat-n {
    font-size: 1.75rem;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .test-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-side-img {
    display: none;
  }
}

@media(max-width:640px) {
  .hero-copy {
    padding: 48px 16px 40px;
  }

  .hero-img {
    height: 260px;
  }

  .hero h1 {
    font-size: clamp(1.875rem, 8vw, 2.5rem);
  }

  .hero-sub {
    font-size: .9375rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn-lg {
    padding: 12px 24px;
    font-size: .875rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding-top: 28px;
  }

  .hero-stat+.hero-stat {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
  }

  .value-grid,
  .cap-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }
}