/* ============================================================
   MPINarada — Design System V2
   Palette: Navy #2E3192 | Orange #F1592A | Teal #1ABC9C
   Aesthetic: Netceed-inspired — editorial, bold, technical
   Font: Plus Jakarta Sans (≈ PP Neue Montreal)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  /* Brand palette */
  --navy: #2e3192;
  --navy-dark: #1a1c6b;
  --navy-deep: #0d0e3f;
  --navy-mid: #4054b2;
  --navy-tint: rgba(46, 49, 146, 0.07);
  --orange: #f1592a;
  --orange-dk: #d04820;
  --orange-lt: rgba(241, 89, 42, 0.12);
  --teal: #1abc9c;
  --teal-dk: #14a085;

  /* Netceed-mapped neutrals */
  --off-white: #f8f7f5; /* Netceed --off-white */
  --light-gray: #ededed; /* Netceed --light-gray */
  --beige: #eae8e3; /* Netceed --beige */
  --charcoal: #2f3034; /* Netceed --charcoal — near-black body text */
  --dark-gray: #585a5f;
  --mid-gray: #8c8c90;
  --white: #ffffff;
  --off-black: #1f212b;

  /* Section backgrounds */
  --bg-body: var(--off-white);
  --bg-white: #ffffff;
  --bg-light: var(--light-gray);
  --bg-dark: var(--navy-dark); /* dark sections */
  --bg-deep: var(--navy-deep);

  /* Border */
  --border: rgba(0, 0, 0, 0.1);
  --border-lt: rgba(255, 255, 255, 0.12);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.1), 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 2px 16px rgba(46, 49, 146, 0.08);

  /* Fluid type scale — Netceed style */
  --h1-size: clamp(48px, 7.3vw, 90px);
  --h1-large: clamp(56px, 9vw, 112px);
  --h2-size: clamp(34px, 4.2vw, 56px);
  --h3-size: clamp(26px, 3vw, 38px);
  --h4-size: clamp(22px, 2.5vw, 30px);
  --h5-size: clamp(18px, 2vw, 24px);
  --body-xl: 22px;
  --body-l: 20px;
  --body-m: 18px;
  --body-s: 16px;
  --body-xs: 14px;
  --body-xxs: 12px;

  /* Font weights */
  --w-regular: 400;
  --w-medium: 500;
  --w-semibold: 600;
  --w-bold: 700;
  --w-black: 800;

  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-base: 220ms;
  --dur-slow: 380ms;

  /* Layout */
  --max-w: 1305px;
  --gutter: 40px;
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
  }
}

/* ── BASE ────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--bg-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--navy);
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1 {
  font-size: var(--h1-size);
  font-weight: var(--w-medium);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--off-black);
}
h2 {
  font-size: var(--h2-size);
  font-weight: var(--w-medium);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--off-black);
}
h3 {
  font-size: var(--h3-size);
  font-weight: var(--w-medium);
  line-height: 1.25;
  color: var(--off-black);
}
h4 {
  font-size: var(--h4-size);
  font-weight: var(--w-medium);
  line-height: 1.3;
  color: var(--off-black);
}
h5 {
  font-size: var(--h5-size);
  font-weight: var(--w-semibold);
  line-height: 1.4;
  color: var(--off-black);
}
p {
  margin-bottom: 16px;
  color: var(--charcoal);
}

/* Section label — Netceed's small caps eyebrow */
.section-label {
  font-size: 13px;
  font-weight: var(--w-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  display: block;
  margin-bottom: 16px;
}
.section-label-orange {
  color: var(--orange);
}
.section-label-teal {
  color: var(--teal);
}

/* Hero display — large accent word in orange (like Netceed's lime green word) */
.hero-display {
  font-size: var(--h1-large);
  font-weight: var(--w-medium);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}
.hero-display .accent {
  color: var(--orange);
}
.hero-display .accent-teal {
  color: var(--teal);
}

.lead {
  font-size: var(--body-l);
  line-height: 1.7;
  color: var(--dark-gray);
}
.lead-white {
  font-size: var(--body-l);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}
.text-muted {
  color: var(--mid-gray);
}
.text-sm {
  font-size: var(--body-xs);
}
.text-xs {
  font-size: var(--body-xxs);
}
.text-center {
  text-align: center;
}
.text-white {
  color: #fff;
}
.text-orange {
  color: var(--orange);
}
.text-teal {
  color: var(--teal);
}
.footnote {
  font-size: 11px;
  color: var(--mid-gray);
  margin-top: 4px;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: 80px 0;
}
.section-sm {
  padding: 48px 0;
}
.section-lg {
  padding: 112px 0;
}

.grid {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: 1fr 1fr;
}
.grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.col-sidebar {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* ── NAVIGATION ──────────────────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo-placeholder {
  height: 40px;
  width: 160px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: var(--w-bold);
  letter-spacing: 0.4px;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
}
.nav-links li a {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: var(--w-medium);
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  transition:
    color var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease);
}
.nav-links li a:hover {
  color: var(--navy);
  background: var(--navy-tint);
}
.nav-links li a.active {
  color: var(--navy);
  font-weight: var(--w-semibold);
}

/* Nav CTA — Netceed style: lime green filled pill → MPI: orange filled rounded */
.nav-cta-btn {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 11px 22px !important;
  border-radius: var(--radius-sm) !important;
  font-size: 15px !important;
  font-weight: var(--w-semibold) !important;
  margin-left: 8px;
  transition:
    background var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
  box-shadow: 0 2px 8px rgba(241, 89, 42, 0.25);
}
.nav-cta-btn:hover {
  background: var(--orange-dk) !important;
  box-shadow: 0 4px 16px rgba(241, 89, 42, 0.35);
  text-decoration: none !important;
}
.nav-cta-btn.active {
  background: var(--orange-dk) !important;
  box-shadow: 0 2px 12px rgba(241, 89, 42, 0.4) !important;
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}

/* ── MEGA MENU ───────────────────────────────────────────────── */
.nav-caret {
  font-size: 9px;
  opacity: 0.55;
  margin-left: 2px;
  display: inline-block;
  transition: transform var(--dur-fast) var(--ease);
}
/* static so the panel positions relative to .site-header, not the li */
.has-mega {
  position: static;
}
.site-header {
  overflow: visible;
}
.has-mega:hover .nav-caret {
  transform: rotate(180deg);
}
/* Panel anchored to bottom of sticky header — position:absolute so it
   tracks the sticky header's actual position rather than a fixed pixel offset */
.mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-bottom: 2px solid var(--border);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity var(--dur-base) var(--ease),
    transform var(--dur-base) var(--ease),
    visibility 0ms var(--dur-base);
  z-index: 200;
  pointer-events: none;
}
.has-mega:hover .mega-panel,
.has-mega.is-open .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity var(--dur-base) var(--ease),
    transform var(--dur-base) var(--ease),
    visibility 0ms;
  pointer-events: auto;
}
.mega-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px var(--gutter) 36px;
  display: flex;
  gap: 0;
  align-items: flex-start;
}
.mega-col {
  flex: 1;
  min-width: 0;
  padding-right: 36px;
  margin-right: 36px;
  border-right: 1px solid var(--border);
}
.mega-col:last-of-type {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.mega-col-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 8px;
}
.mega-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 10px;
}
.mega-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  font-weight: var(--w-medium);
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: color var(--dur-fast);
}
.mega-link:last-child {
  border-bottom: none;
}
.mega-link:hover {
  color: var(--navy);
}
.mega-link-secondary {
  color: var(--dark-gray);
  font-size: 13px;
}
.mega-link-secondary:hover {
  color: var(--charcoal);
}
/* Orange square arrow for primary links */
.mega-arrow-sq {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--orange);
  color: #fff;
  border-radius: 3px;
  font-size: 10px;
  font-weight: var(--w-bold);
  flex-shrink: 0;
  transition:
    background var(--dur-fast),
    transform var(--dur-fast);
}
.mega-link-primary:hover .mega-arrow-sq {
  background: var(--orange-dk);
  transform: translateX(2px);
}
/* Plain arrow for secondary links */
.mega-plain-arrow {
  color: var(--mid-gray);
  font-size: 12px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
/* 2-column link grid inside a mega col */
.mega-links-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 8px;
}
/* Dark promo card on the right of each mega panel */
.mega-promo {
  width: 260px;
  flex-shrink: 0;
  background: var(--navy-dark);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.mega-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 0%,
    rgba(241, 89, 42, 0.12) 0%,
    transparent 55%
  );
  pointer-events: none;
}
.mega-promo-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  position: relative;
}
.mega-promo h4 {
  color: #fff;
  font-size: 15px;
  font-weight: var(--w-semibold);
  line-height: 1.4;
  margin-bottom: 8px;
  position: relative;
}
.mega-promo p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.65;
  margin-bottom: 16px;
  position: relative;
}
.mega-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff !important;
  font-size: 12px;
  font-weight: var(--w-semibold);
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  text-decoration: none;
  transition: background var(--dur-fast);
  position: relative;
  white-space: nowrap;
}
.mega-promo-cta:hover {
  background: var(--orange-dk) !important;
  text-decoration: none;
}

/* ── HERO — FULL VIEWPORT (Netceed homepage style) ───────── */
/* Background image is a CSS var set inline on the element */
.hero-fullvp {
  min-height: calc(100vh - 72px);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-fullvp .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-dark); /* fallback */
  z-index: 0;
}
/* Netceed overlay: left heavier, right lighter */
.hero-fullvp .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(26, 28, 107, 0.85) 0%,
    rgba(26, 28, 107, 0.5) 100%
  );
}
.hero-fullvp .hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 100px var(--gutter) 80px;
}
.hero-fullvp .scroll-down {
  position: absolute;
  bottom: 40px;
  right: var(--gutter);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: var(--w-medium);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
  cursor: pointer;
}

/* ── PAGE HEADER (interior pages — Netceed solutions/newsroom style) */
.page-header {
  background: var(--navy-dark);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
/* Subtle geometric texture overlay */
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 80% 50%,
      rgba(26, 188, 156, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(241, 89, 42, 0.05) 0%,
      transparent 45%
    );
  pointer-events: none;
}
.page-header .container {
  position: relative;
  z-index: 1;
}
.page-header h1 {
  color: #fff;
  margin-top: 20px;
}
.page-header p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--body-l);
  max-width: 640px;
  margin-top: 16px;
}

/* Breadcrumb pill — Netceed style */
.breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 6px 14px 6px 10px;
  font-size: 13px;
  font-weight: var(--w-medium);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}
.breadcrumb-pill .bp-logo {
  width: 20px;
  height: 12px;
  background: var(--orange);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: var(--w-black);
  color: #fff;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.breadcrumb-pill .bp-sep {
  opacity: 0.5;
  margin: 0 2px;
}

/* ── ARROW BUTTON — Netceed's signature square filled arrow ─ */
.arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: var(--radius-xs);
  color: #fff;
  flex-shrink: 0;
  transition:
    background var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease);
  cursor: pointer;
}
.arrow-btn:hover {
  background: var(--orange-dk);
  transform: translateX(2px);
}
.arrow-btn svg,
.arrow-btn::after {
  content: "→";
  font-size: 18px;
  font-weight: var(--w-bold);
  line-height: 1;
}
.arrow-btn-sm {
  width: 36px;
  height: 36px;
  font-size: 14px;
}
.arrow-btn-lg {
  width: 56px;
  height: 56px;
  font-size: 22px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 16px;
  font-weight: var(--w-semibold);
  cursor: pointer;
  border: none;
  transition:
    background var(--dur-base) var(--ease),
    box-shadow var(--dur-base) var(--ease),
    transform var(--dur-base) var(--ease);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 2px 8px rgba(241, 89, 42, 0.28);
}
.btn-primary:hover {
  background: var(--orange-dk);
  box-shadow: 0 4px 16px rgba(241, 89, 42, 0.35);
  color: #fff;
}

/* Netceed ghost: dark outline pill → MPI: charcoal outline */
.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-secondary:hover {
  background: var(--charcoal);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover {
  background: var(--navy-dark);
  color: #fff;
}

.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26, 188, 156, 0.28);
}
.btn-teal:hover {
  background: var(--teal-dk);
  color: #fff;
}

/* Inline text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: var(--w-semibold);
  font-size: var(--body-m);
  color: var(--charcoal);
  transition: color var(--dur-fast);
}
.link-arrow:hover {
  color: var(--navy);
}
.link-arrow .arrow-sq {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-xs);
  font-size: 15px;
  transition:
    background var(--dur-fast),
    transform var(--dur-fast);
  flex-shrink: 0;
}
.link-arrow:hover .arrow-sq {
  background: var(--orange-dk);
  transform: translateX(2px);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
}

/* ── DARK PRODUCT/CATEGORY GRID — Netceed's signature ────── */
/* 4-col bordered grid on dark navy background */
.dark-grid-section {
  background: var(--navy-dark);
  padding: 80px 0;
  overflow-x: clip;
}
.dark-grid-section h2 {
  color: #fff;
  margin-bottom: 48px;
}
.bordered-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.bordered-grid-item {
  padding: 32px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--body-m);
  font-weight: var(--w-medium);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease);
  text-decoration: none;
}
.bordered-grid-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
}
.bordered-grid-item:nth-child(4n) {
  border-right: none;
}
.bordered-grid-item .grid-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 24px;
}

/* ── SPLIT CARD (Netceed news/article card) ─────────────── */
/* Left: dark bg with text. Right: image. Lime arrow at bottom-right → Orange */
.split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 320px;
  position: relative;
}
.split-card-text {
  background: var(--navy-dark);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.split-card-text h3 {
  color: #fff;
  margin-bottom: 12px;
}
.split-card-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--body-s);
  flex: 1;
}
.split-card-image {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}
.split-card-image .ph-img {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.split-card .card-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: var(--w-bold);
  transition:
    background var(--dur-fast),
    transform var(--dur-fast);
}
.split-card:hover .card-arrow {
  background: var(--orange-dk);
  transform: translate(2px, -2px);
}

/* Tags on cards (Netceed pill tags) */
.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: var(--w-medium);
  color: rgba(255, 255, 255, 0.8);
  margin-right: 6px;
  margin-bottom: 6px;
}
.tag-pill-dark {
  border-color: var(--border);
  color: var(--dark-gray);
}

/* ── OVERLAPPING CARD (editorial layout) ─────────────────── */
.overlap-section {
  position: relative;
  padding: 0;
}
.overlap-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.overlap-images .img-half {
  overflow: hidden;
  position: relative;
}
.overlap-images .img-half .ph-img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  min-height: 420px;
}
.overlap-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-20%, -50%);
  width: 520px;
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 48px;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}
.overlap-card .section-label {
  color: rgba(255, 255, 255, 0.5);
}
.overlap-card h2 {
  color: #fff;
  margin-bottom: 16px;
}
.overlap-card p {
  color: rgba(255, 255, 255, 0.75);
}

/* ── STICKY-SCROLL SECTION (Netceed extended services) ────── */
.sticky-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
}
.sticky-left {
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 80px var(--gutter);
}
.sticky-left .bg-img {
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
  background-size: cover;
  background-position: center;
}
.sticky-left .bg-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 28, 107, 0.4) 0%,
    rgba(26, 28, 107, 0.75) 100%
  );
}
.sticky-left .sticky-text {
  position: relative;
  z-index: 1;
}
.sticky-left .sticky-text .section-label {
  color: rgba(255, 255, 255, 0.55);
}
.sticky-left .sticky-text h2 {
  color: #fff;
  margin-bottom: 16px;
}
.sticky-left .sticky-text p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 420px;
}
.sticky-right {
  padding: 80px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sticky-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: box-shadow var(--dur-base);
}
.sticky-card:hover {
  box-shadow: var(--shadow-md);
}
.sticky-card-num {
  font-size: var(--body-s);
  font-weight: var(--w-semibold);
  color: var(--orange);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.sticky-card h3 {
  margin-bottom: 12px;
}
.sticky-card p {
  color: var(--dark-gray);
  font-size: var(--body-s);
}
.sticky-card .link-arrow {
  font-size: var(--body-s);
  margin-top: 16px;
}

/* ── CTA CARD (Netceed "Let's build together") ───────────── */
.cta-card {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at 80% 20%,
      rgba(241, 89, 42, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 20% 90%,
      rgba(26, 188, 156, 0.07) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.cta-card .section-label {
  color: rgba(255, 255, 255, 0.5);
}
.cta-card h2 {
  color: #fff;
  margin-bottom: 16px;
}
.cta-card h3 {
  color: #fff;
  margin-bottom: 12px;
}
.cta-card p {
  color: rgba(255, 255, 255, 0.75);
}
.cta-card .link-arrow {
  color: rgba(255, 255, 255, 0.85);
}
.cta-card .link-arrow:hover {
  color: #fff;
}

/* ── STATS / PROOF BAR ───────────────────────────────────── */
.proof-bar {
  background: #fff;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.proof-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-item {
  text-align: center;
  padding: 24px 28px;
  border-right: 1px solid var(--border);
}
.proof-item:last-child {
  border-right: none;
}
.proof-number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: var(--w-medium);
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.proof-unit {
  font-size: var(--body-l);
  color: var(--orange);
  font-weight: var(--w-medium);
}
.proof-label {
  font-size: var(--body-s);
  color: var(--dark-gray);
  margin-top: 8px;
}
.proof-note {
  font-size: var(--body-xxs);
  color: var(--mid-gray);
  margin-top: 4px;
}

/* ── MARQUEE / SCROLLING BAND ────────────────────────────── */
.marquee-section {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 24px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: var(--w-medium);
  color: var(--navy-dark);
  flex-shrink: 0;
}
.marquee-logo {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: var(--radius-xs);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: var(--w-black);
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition:
    box-shadow var(--dur-base) var(--ease),
    transform var(--dur-base) var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--navy-tint);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 24px;
}
.card-icon-orange {
  background: var(--orange-lt);
  color: var(--orange);
}
.card-icon-teal {
  background: rgba(26, 188, 156, 0.1);
  color: var(--teal);
}

/* Dark surface card */
.card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 32px;
  color: #fff;
  transition: background var(--dur-base);
}
.card-dark:hover {
  background: rgba(255, 255, 255, 0.09);
}
.card-dark h3,
.card-dark h4 {
  color: #fff;
}

/* Market card — top accent bar */
.market-card {
  border-top: 4px solid var(--navy);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 32px 28px;
  background: #fff;
  box-shadow: var(--shadow-card);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition:
    box-shadow var(--dur-base),
    border-top-color var(--dur-base),
    transform var(--dur-base);
}
.market-card:hover {
  border-top-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ── TABBED SECTION (Netceed industry/market tabs) ─────────── */
.tab-nav {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 48px;
  gap: 0;
  overflow: hidden;
  justify-content: center;
  height: auto;
  max-width: max-content;
  margin: 0 auto 48px;
}
.tab-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 32px;
  border-right: 1px solid var(--border);
  font-size: var(--body-s);
  font-weight: var(--w-medium);
  color: var(--mid-gray);
  cursor: pointer;
  transition:
    color var(--dur-fast),
    background var(--dur-fast);
  position: relative;
  white-space: nowrap;
  background: #fff;
}
.tab-nav-item:last-child {
  border-right: none;
}
.tab-nav-item:hover {
  color: var(--charcoal);
  background: var(--off-white);
}
.tab-nav-item.active {
  color: var(--navy);
  font-weight: var(--w-semibold);
  background: var(--navy-tint);
}
.tab-nav-item.active::after {
  display: none;
}
.tab-icon {
  font-size: 28px;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* ── SPEC TABLE ──────────────────────────────────────────── */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--body-xs);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.spec-table th {
  background: var(--navy-dark);
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-weight: var(--w-semibold);
  font-size: var(--body-xs);
  letter-spacing: 0.02em;
}
.spec-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
}
.spec-table tr:nth-child(even) td {
  background: var(--off-white);
}
.spec-table tr:last-child td {
  border-bottom: none;
}
.spec-table tr:hover td {
  background: var(--light-gray);
}

/* ── FAQ ACCORDION ───────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  padding: 22px 0;
  font-weight: var(--w-semibold);
  color: var(--off-black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--body-m);
  transition: color var(--dur-fast);
  user-select: none;
  gap: 16px;
}
.faq-q:hover {
  color: var(--navy);
}
.faq-toggle {
  width: 32px;
  height: 32px;
  background: var(--navy-tint);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 20px;
  font-weight: var(--w-regular);
  flex-shrink: 0;
  transition:
    background var(--dur-fast),
    color var(--dur-fast);
}
.faq-item.open .faq-toggle {
  background: var(--orange);
  color: #fff;
}
.faq-a {
  padding: 0 0 20px 0;
  color: var(--dark-gray);
  font-size: var(--body-s);
  line-height: 1.75;
  display: none;
}
.faq-item.open .faq-a {
  display: block;
}

/* ── FORMS ───────────────────────────────────────────────── */
.form-field {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-size: var(--body-xs);
  font-weight: var(--w-semibold);
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: var(--body-s);
  font-family: var(--font);
  color: var(--charcoal);
  background: #fff;
  transition:
    border-color var(--dur-fast),
    box-shadow var(--dur-fast);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--mid-gray);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(46, 49, 146, 0.1);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-hint {
  font-size: 12px;
  color: var(--mid-gray);
  margin-top: 6px;
}
.form-micro {
  font-size: 12px;
  color: var(--mid-gray);
  margin-top: 16px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  line-height: 1.6;
}
.required-mark {
  color: var(--orange);
}

/* ── CTA BLOCKS ──────────────────────────────────────────── */
.cta-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-sm);
}
.cta-block-text h3 {
  margin-bottom: 8px;
}
.cta-block-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cta-full-bleed {
  background: var(--navy-dark);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-full-bleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(241, 89, 42, 0.12) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.cta-full-bleed h2 {
  color: #fff;
  margin-bottom: 16px;
}
.cta-full-bleed p {
  color: rgba(255, 255, 255, 0.75);
}

/* ── BADGES ──────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: var(--w-semibold);
  letter-spacing: 0.02em;
}
.badge-navy {
  background: var(--navy);
  color: #fff;
}
.badge-orange {
  background: var(--orange);
  color: #fff;
}
.badge-teal {
  background: var(--teal);
  color: #fff;
}
.badge-light {
  background: var(--navy-tint);
  color: var(--navy);
}
.badge-muted {
  background: var(--light-gray);
  color: var(--dark-gray);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  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: 40px 40px;
  pointer-events: none;
}
.footer-main {
  padding: 52px 0 44px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 40px;
  align-items: start;
}
.footer-nav-cols {
  display: flex;
  gap: 40px;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition:
    border-color var(--dur-fast),
    color var(--dur-fast);
}
.footer-social-link:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.footer-nav-heading {
  font-size: 13px;
  font-weight: var(--w-semibold);
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-list a {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--body-s);
  transition: color var(--dur-fast);
}
.footer-nav-list a:hover {
  color: #fff;
}
.footer-badges-col {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.footer-badge-img {
  height: 100px;
  width: auto;
  display: block;
}
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0;
  position: relative;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
}
.footer-bottom-inner a {
  color: rgba(255, 255, 255, 0.32);
  transition: color var(--dur-fast);
}
.footer-bottom-inner a:hover {
  color: rgba(255, 255, 255, 0.65);
}
.footer-bottom-sep {
  color: rgba(255, 255, 255, 0.18);
}

/* ── SECTION BACKGROUNDS ─────────────────────────────────── */
.bg-white {
  background: #fff;
}
.bg-light {
  background: var(--off-white);
}
.bg-gray {
  background: var(--light-gray);
}
.bg-dark {
  background: var(--navy-dark);
}
.bg-deep {
  background: var(--navy-deep);
}
.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
  color: #fff;
}
.bg-deep h2,
.bg-deep h3,
.bg-deep h4 {
  color: #fff;
}

/* ── PLACEHOLDER BLOCKS ──────────────────────────────────── */
.ph-img {
  background: linear-gradient(135deg, #c8cadb 0%, #d6d8e8 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 11px;
  font-weight: var(--w-semibold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.75;
  min-height: 200px;
}

/* ── WIREFRAME ANNOTATIONS ───────────────────────────────── */
.zone {
  position: relative;
  outline: 1.5px dashed rgba(46, 49, 146, 0.15);
}
.zone-label {
  position: absolute;
  top: 8px;
  left: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 9px;
  font-weight: var(--w-bold);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: var(--radius-xs);
  z-index: 10;
  opacity: 0.55;
}
.wf-note {
  font-size: 10px;
  font-style: italic;
  color: rgba(46, 49, 146, 0.5);
  border: 1px dashed rgba(46, 49, 146, 0.2);
  padding: 4px 8px;
  border-radius: var(--radius-xs);
  display: inline-block;
  margin-top: 6px;
}
.wf-legend {
  background: #fffde7;
  border-bottom: 2px solid #f9a825;
  padding: 10px 24px;
  font-size: 11px;
  color: #5d4037;
}

/* ── LAYOUT HELPERS ──────────────────────────────────────── */
.mt-8 {
  margin-top: 8px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-32 {
  margin-bottom: 32px;
}
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.items-center {
  align-items: center;
}
.gap-8 {
  gap: 8px;
}
.gap-12 {
  gap: 12px;
}
.gap-16 {
  gap: 16px;
}
.gap-24 {
  gap: 24px;
}
.gap-32 {
  gap: 32px;
}
.gap-48 {
  gap: 48px;
}
.w-full {
  width: 100%;
}
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 36px 0;
}
.orange-bar {
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

.zone-label,
.wf-note,
.wf-legend,
.hidden {
  display: none;
}
