﻿:root {
  --black: #0f1f3d; /* deep navy â€” used everywhere black was */
  --black2: #091529; /* deeper navy for footer */
  --white: #ffffff;
  --off: #f5f7fb; /* navy-tinted off-white */
  --gl: #dce3f0; /* navy-tinted border */
  --gm: #7a8699; /* navy-tinted mid grey */
  --gd: #2c3d5a; /* navy-tinted dark text */
  --blue: #2b7fff;
  --blue-h: #1a6ee8;
  --blue-pale: #e8f1ff;
  --fd: "Playfair Display", serif;
  --fb: "DM Sans", sans-serif;
  --max: 1280px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--fb);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.vis {
  opacity: 1;
  transform: none;
}

/* â”€â”€ NAV â”€â”€ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  transition:
    background 0.3s,
    box-shadow 0.3s;
  padding-top: env(safe-area-inset-top);
  height: calc(68px + env(safe-area-inset-top));
  display: flex;
  align-items: center;
}
nav.at-top {
  background: transparent;
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gl);
}
.nav-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo {
  font-family: var(--fd);
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  margin-right: 48px;
  transition: color 0.3s;
}
.nav-logo span {
  color: var(--blue);
}
nav.scrolled .nav-logo {
  color: var(--black);
}
.nav-items {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-item {
  position: relative;
}
.nav-item > button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  padding: 10px 14px;
  border-radius: 3px;
  transition:
    color 0.2s,
    background 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-item > button::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.5;
  transition: transform 0.2s;
}
nav.scrolled .nav-item > button {
  color: var(--gd);
}
.nav-item > button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
nav.scrolled .nav-item > button:hover {
  color: var(--black);
  background: var(--off);
}
.nav-item:hover > button::after {
  transform: rotate(180deg);
}
.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  padding: 8px 14px;
  border-radius: 3px;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--fb);
}
nav.scrolled .nav-link {
  color: var(--gd);
}
.nav-link:hover {
  color: #fff;
}
nav.scrolled .nav-link:hover {
  color: var(--black);
}
.nav-cta {
  background: var(--blue);
  color: #fff;
  padding: 10px 22px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--fb);
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--blue-h);
}
.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-ham span {
  display: block;
  width: 22px;
  height: 1.5px;
  transition: all 0.3s;
}
nav.at-top .nav-ham span {
  background: #fff;
}
nav.scrolled .nav-ham span {
  background: var(--black);
}

/* MEGA-NAV DROPDOWN */
.mega-drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--gl);
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  padding: 32px;
  min-width: 640px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.2s,
    transform 0.2s;
  display: grid;
  gap: 32px;
}
.mega-drop.wide {
  min-width: 720px;
}
.mega-services {
  grid-template-columns: 1.1fr 1fr 1fr;
  min-width: 640px;
}
.mega-insights {
  grid-template-columns: 1fr 1fr;
  min-width: 400px;
}
.mega-about {
  grid-template-columns: 1fr;
  min-width: 360px;
}
.nav-item:hover .mega-drop {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mega-col-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gm);
  margin-bottom: 14px;
}
.mega-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mega-links a {
  font-size: 13px;
  color: var(--gd);
  padding: 5px 0;
  transition: color 0.2s;
  font-weight: 400;
}
.mega-links a:hover {
  color: var(--black);
}
.mega-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mega-card {
  background: var(--off);
  border-radius: 4px;
  padding: 16px 18px;
  transition: background 0.2s;
  cursor: pointer;
}
.mega-card:hover {
  background: var(--blue-pale);
}
.mega-card-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 3px;
}
.mega-card-sub {
  font-size: 12px;
  color: var(--gm);
  line-height: 1.5;
}

/* MOBILE NAV */
.mobile-nav {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 299;
  padding: 24px;
  overflow-y: auto;
  display: none;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a,
.mobile-nav button {
  font-size: 15px;
  color: var(--gd);
  padding: 15px 0;
  border-bottom: 1px solid var(--gl);
  letter-spacing: 0.01em;
  font-weight: 400;
  background: none;
  border-right: none;
  border-left: none;
  border-top: none;
  cursor: pointer;
  font-family: var(--fb);
  text-align: left;
  width: 100%;
}
.mobile-nav .mn-cta {
  background: var(--blue);
  color: #fff;
  padding: 14px;
  border-radius: 3px;
  text-align: center;
  margin-top: 16px;
  border: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* â”€â”€ HERO â”€â”€ */
#hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 56px 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-glow {
  position: absolute;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 127, 255, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-layout {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 72px;
  align-items: center;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 28px;
  opacity: 0;
  animation: up 0.7s 0.1s forwards;
}
.hero-h1 {
  font-family: var(--fd);
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 400;
  line-height: 1.02;
  color: #fff;
  max-width: 820px;
  margin-bottom: 30px;
  letter-spacing: -0.025em;
  opacity: 0;
  animation: up 0.7s 0.25s forwards;
}
.hero-h1 s {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.18);
  text-decoration-color: rgba(43, 127, 255, 0.45);
}
.hero-h1 em {
  font-style: italic;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  max-width: 580px;
  margin-bottom: 48px;
  opacity: 0;
  animation: up 0.7s 0.4s forwards;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: up 0.7s 0.55s forwards;
}
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 15px 34px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--fb);
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-primary:hover {
  background: var(--blue-h);
  transform: translateY(-1px);
}
.btn-outline-light {
  display: inline-block;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 34px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  font-family: var(--fb);
  transition: all 0.2s;
}
.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 96px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  opacity: 0;
  animation: up 0.7s 0.7s forwards;
}
.hs {
  flex: 1;
  padding-right: 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  margin-right: 48px;
}
.hs:last-child {
  border-right: none;
  margin-right: 0;
}
.hs-n {
  font-family: var(--fd);
  font-size: 42px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}
.hs-l {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 10px;
  font-weight: 500;
}

.hero-col-photo {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  padding-top: 100px;
  justify-content: flex-end;
}
.hero-portrait {
  width: 100%;
  max-width: 380px;
  height: 580px;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  display: block;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}
.hero-portrait-badge {
  position: absolute;
  bottom: 96px;
  left: 0;
  background: rgba(15, 31, 61, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 14px 18px;
}
.hpb-name {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
}
.hpb-role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* â”€â”€ TRUSTED STRIP â”€â”€ */
#trusted {
  background: var(--off);
  border-top: 1px solid var(--gl);
  border-bottom: 1px solid var(--gl);
  padding: 24px 56px;
}
.trusted-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trusted-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gm);
  white-space: nowrap;
  flex-shrink: 0;
}
.trusted-logos {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.trusted-logo {
  font-size: 13px;
  font-weight: 500;
  color: var(--gm);
  letter-spacing: 0.04em;
}

/* â”€â”€ PROBLEM STATEMENT â”€â”€ */
#problem {
  padding: 120px 56px;
  background: var(--white);
}
.problem-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.problem-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.problem-h2 {
  font-family: var(--fd);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 780px;
  margin-bottom: 32px;
}
.problem-h2 em {
  font-style: italic;
}
.problem-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 64px;
}
.problem-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gd);
  font-weight: 300;
  margin-bottom: 20px;
}
.problem-text p:last-child {
  margin-bottom: 0;
}
.problem-points {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pp {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--gl);
}
.pp:first-child {
  border-top: 1px solid var(--gl);
}
.pp-num {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 400;
  color: var(--gl);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.pp-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 5px;
}
.pp-body {
  font-size: 13px;
  color: var(--gm);
  line-height: 1.6;
  font-weight: 300;
}

.prob-photo-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.prob-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  display: block;
  background: var(--off);
}
.prob-credit {
  padding: 16px 0 0;
}
.prob-credit-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
}
.prob-credit-role {
  font-size: 12px;
  color: var(--gm);
  margin-top: 3px;
  font-weight: 300;
  line-height: 1.4;
}

/* â”€â”€ WHO WE SUPPORT (tabbed) â”€â”€ */
#support {
  background: var(--black);
  padding: 120px 56px;
}
.support-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.sec-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}
.sec-h2-light {
  font-family: var(--fd);
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 52px;
}
.sec-h2-light em {
  font-style: italic;
}
.support-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 56px;
}
.stab {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  padding: 14px 28px 16px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition:
    color 0.2s,
    border-color 0.2s;
  letter-spacing: 0.02em;
}
.stab:hover {
  color: rgba(255, 255, 255, 0.75);
}
.stab.active {
  color: #fff;
  border-bottom-color: var(--blue);
}
.support-panels {
  position: relative;
}
.support-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.support-panel.active {
  display: grid;
}
.sp-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.sp-h3 {
  font-family: var(--fd);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.sp-body {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 300;
  margin-bottom: 32px;
}
.sp-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.sp-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.sp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 7px;
}
.sp-pt {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}
.sp-visual {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  overflow: hidden;
  position: relative;
}
.sp-visual-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 10px;
}
.sp-visual-stat {
  font-family: var(--fd);
  font-size: 52px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}
.sp-visual-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 8px;
  font-weight: 300;
  line-height: 1.5;
}
.sp-visual-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(135deg, rgba(43, 127, 255, 0.12) 0%, transparent 60%);
}
.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 28px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  font-family: var(--fb);
  transition: all 0.2s;
}
.btn-outline-dark:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* Support photo tile (was missing in original CSS) */
.sp-photo {
  padding: 0;
}
.sp-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.78);
}
.sp-photo-overlay {
  position: relative;
  z-index: 1;
  padding: 36px;
  margin-top: auto;
  background: linear-gradient(to top, rgba(9, 21, 41, 0.85) 0%, rgba(9, 21, 41, 0) 85%);
  width: 100%;
}

/* â”€â”€ CAPABILITIES TAG CLOUD â”€â”€ */
#capabilities {
  background: var(--off);
  padding: 100px 56px;
  border-top: 1px solid var(--gl);
  border-bottom: 1px solid var(--gl);
}
.capabilities-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.sec-eyebrow-dark {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gm);
  margin-bottom: 16px;
}
.sec-h2 {
  font-family: var(--fd);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.sec-h2 em {
  font-style: italic;
}
.cap-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}
.cap-tag {
  display: inline-block;
  padding: 11px 20px;
  border: 1px solid var(--gl);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 400;
  color: var(--gd);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--white);
}
.cap-tag:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
}
.cap-tag.featured {
  border-color: var(--black);
  color: var(--black);
  font-weight: 500;
}

/* â”€â”€ SERVICES (tabbed) â”€â”€ */
#services {
  background: var(--white);
  padding: 120px 56px;
}
.services-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.svc-tabs-row {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gl);
  margin-bottom: 56px;
}
.svctab {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 500;
  color: var(--gm);
  padding: 12px 24px 16px;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition:
    color 0.2s,
    border-color 0.2s;
  letter-spacing: 0.02em;
}
.svctab:hover {
  color: var(--gd);
}
.svctab.active {
  color: var(--black);
  border-bottom-color: var(--black);
}
.svc-panels {
  position: relative;
}
.svc-panel {
  display: none;
}
.svc-panel.active {
  display: block;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--off);
  border: 1px solid var(--gl);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
  cursor: default;
}
.svc-card:hover {
  border-color: var(--black);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
}
.svc-head {
  background: var(--black);
  padding: 28px 28px 22px;
}
.svc-cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  display: block;
  margin-bottom: 8px;
}
.svc-name {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
}
.svc-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svc-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gm);
  font-weight: 300;
}
.svc-for {
  font-size: 11px;
  font-weight: 500;
  color: var(--black);
}
.svc-for span {
  font-weight: 300;
  color: var(--gm);
}
.svc-steps {
  border-top: 1px solid var(--gl);
  padding-top: 18px;
}
.svc-steps-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.svc-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.svc-step-n {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.svc-step-t {
  font-size: 12px;
  color: var(--black);
  line-height: 1.4;
  font-weight: 500;
}
.svc-step-t em {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: var(--gm);
  font-weight: 300;
  margin-top: 2px;
}
.svc-footer {
  padding: 18px 28px;
  border-top: 1px solid var(--gl);
  background: var(--white);
}
.svc-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--black);
  color: #fff;
  padding: 13px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--black);
  border-radius: 2px;
  font-family: var(--fb);
  cursor: pointer;
  transition: all 0.2s;
}
.svc-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.svc-btn.featured {
  background: var(--blue);
  border-color: var(--blue);
}
.svc-btn.featured:hover {
  background: var(--blue-h);
  border-color: var(--blue-h);
}

/* â”€â”€ VALUE STRIP â”€â”€ */
#value {
  background: var(--black);
  padding: 100px 56px;
}
.value-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 96px;
  align-items: center;
}
.value-left .sec-eyebrow {
  color: rgba(255, 255, 255, 0.28);
}
.value-h2 {
  font-family: var(--fd);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.value-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  overflow: hidden;
}
.vg {
  background: rgba(255, 255, 255, 0.025);
  padding: 44px 32px;
}
.vg-n {
  font-family: var(--fd);
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.vg-l {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
  margin-top: 12px;
  line-height: 1.6;
  font-weight: 300;
}

/* â”€â”€ INSIGHTS â”€â”€ */
#insights {
  background: var(--white);
  padding: 120px 56px;
}
.insights-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.insights-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 16px;
}
.insights-see-all {
  font-size: 12px;
  color: var(--blue);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.ins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ins-card {
  background: var(--off);
  border: 1px solid var(--gl);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.25s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.ins-card:hover {
  border-color: var(--gd);
}
.ins-img {
  height: 112px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  position: relative;
}
.ins-img.c1 {
  background: #0f1f3d;
}
.ins-img.c2 {
  background: #162b52;
}
.ins-img.c3 {
  background: #091529;
}
.ins-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.07);
  padding: 4px 10px;
  border-radius: 999px;
}
.ins-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ins-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 16px;
}
.ins-foot {
  font-size: 11px;
  color: var(--blue);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* â”€â”€ TESTIMONIALS â”€â”€ */
#testimonials {
  background: var(--off);
  padding: 120px 56px;
  border-top: 1px solid var(--gl);
}
.testimonials-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.t-card {
  background: var(--white);
  border: 1px solid var(--gl);
  border-radius: 4px;
  padding: 36px 30px;
  transition: all 0.25s;
}
.t-card:hover {
  border-color: var(--gd);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
.t-card.dark {
  background: var(--black);
  border-color: transparent;
}
.t-stars {
  color: var(--black);
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 20px;
}
.t-card.dark .t-stars {
  color: rgba(255, 255, 255, 0.35);
}
.t-quote {
  font-family: var(--fd);
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 28px;
}
.t-card.dark .t-quote {
  color: rgba(255, 255, 255, 0.72);
}
.t-name {
  font-weight: 500;
  font-size: 13px;
  color: var(--black);
}
.t-card.dark .t-name {
  color: #fff;
}
.t-role {
  font-size: 12px;
  color: var(--gm);
  font-weight: 300;
  margin-top: 4px;
}
.t-card.dark .t-role {
  color: rgba(255, 255, 255, 0.28);
}

/* â”€â”€ CTA + BOOKING â”€â”€ */
#cta {
  background: var(--off);
  padding: 100px 56px;
  border-top: 1px solid var(--gl);
}
.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 64px;
}
.cta-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.cta-h2 {
  font-family: var(--fd);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.cta-h2 em {
  font-style: italic;
}
.cta-p {
  font-size: 15px;
  color: var(--gm);
  line-height: 1.7;
  font-weight: 300;
}
.booking-wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
.bk-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--gl);
}
.bk-step:first-child {
  border-top: 1px solid var(--gl);
}
.bk-step-n {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.bk-step-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
}
.bk-step-body {
  font-size: 13px;
  color: var(--gm);
  line-height: 1.6;
  font-weight: 300;
}
.booking-note {
  font-size: 13px;
  color: var(--gm);
  line-height: 1.6;
}
.booking-note strong {
  color: var(--black);
  font-weight: 500;
}
.booking-note a {
  color: var(--blue);
  text-decoration: none;
}
.booking-right {
  background: #fff;
  border: 1px solid var(--gl);
  border-radius: 6px;
  padding: 36px;
}

/* â”€â”€ FORMS â”€â”€ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--gl);
  border-radius: 2px;
  padding: 12px 16px;
  font-size: 13px;
  font-family: var(--fb);
  color: var(--black);
  background: var(--off);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 88px;
}
.form-note {
  font-size: 11px;
  color: var(--gm);
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 300;
}
.form-note strong {
  color: var(--black);
}
.form-submit {
  width: 100%;
  background: var(--black);
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--fb);
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover {
  background: var(--blue);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-success {
  text-align: center;
  padding: 56px 24px;
  display: none;
}
.form-success-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
}
.form-success p {
  font-size: 13px;
  color: var(--gm);
  font-weight: 300;
  line-height: 1.7;
}

/* â”€â”€ FOOTER â”€â”€ */
footer {
  background: #091529;
  padding: 80px 56px 36px;
}
.ft-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.ft-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.ft-brand {
  font-family: var(--fd);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 14px;
}
.ft-brand span {
  color: var(--blue);
}
.ft-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.24);
  line-height: 1.7;
  max-width: 220px;
  margin-bottom: 24px;
}
.ft-newsletter {
  display: flex;
  gap: 0;
  max-width: 260px;
}
.ft-newsletter input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  border-radius: 3px 0 0 3px;
  padding: 10px 14px;
  font-size: 12px;
  font-family: var(--fb);
  color: #fff;
  outline: none;
}
.ft-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.ft-newsletter input:focus {
  border-color: var(--blue);
}
.ft-newsletter button {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 0 3px 3px 0;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--fb);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.2s;
}
.ft-newsletter button:hover {
  background: var(--blue-h);
}
.ft-col h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.24);
  margin-bottom: 18px;
}
.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.ft-col ul li a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.2s;
}
.ft-col ul li a:hover {
  color: #fff;
}
.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.ft-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
}
.ft-foot-links {
  display: flex;
  gap: 20px;
}
.ft-foot-links a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
  transition: color 0.2s;
}
.ft-foot-links a:hover {
  color: rgba(255, 255, 255, 0.5);
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 1024px) {
  .nav-inner {
    padding: 0 32px;
  }
  #hero,
  #trusted,
  #problem,
  #support,
  #capabilities,
  #services,
  #value,
  #insights,
  #testimonials,
  #cta {
    padding-left: 32px;
    padding-right: 32px;
  }
  footer {
    padding: 56px 32px 28px;
  }
  .mega-drop {
    display: none;
  }
  .problem-body,
  .support-panel.active,
  .value-inner,
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-col-photo {
    display: none;
  }
}
@media (max-width: 960px) {
  .nav-items,
  .nav-actions {
    display: none;
  }
  .nav-ham {
    display: flex;
  }
  .nav-inner {
    padding: 0 24px;
  }
  #hero,
  #trusted,
  #problem,
  #support,
  #capabilities,
  #services,
  #value,
  #insights,
  #testimonials,
  #cta {
    padding-left: 24px;
    padding-right: 24px;
  }
  footer {
    padding: 48px 24px 24px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 28px;
  }
  .hs {
    border-right: none;
    margin-right: 0;
    min-width: 120px;
  }
  .svc-grid,
  .ins-grid,
  .t-grid,
  .value-right {
    grid-template-columns: 1fr;
  }
  .ft-top {
    grid-template-columns: 1fr 1fr;
  }
  nav.at-top {
    background: rgba(15, 31, 61, 0.85);
  }
  .booking-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .ft-top {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .trusted-logos {
    gap: 28px;
  }
  .cta-h2 {
    font-size: clamp(28px, 8vw, 48px);
  }
}

