*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #24447f;
  --primary-dark: #182f5a;
  --primary-light: #2d559e;
  --accent: #DD7513;
  --accent-light: #f08b25;
  --white: #ffffff;
  --off-white: #f5f7fb;
  --gray-light: #eef1f8;
  --gray-mid: #8a95b0;
  --text: #1a2340;
  --text-light: #4a5470;
  --font-head: 'Inter', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --radius: 16px;
  --shadow: 0 4px 28px rgba(24, 47, 90, .10);
  --shadow-lg: 0 16px 56px rgba(24, 47, 90, .16);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

img {
  max-width: 100%;
}

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: background .35s, backdrop-filter .35s, box-shadow .35s;
  flex-wrap: wrap;
}

.top-strip-container {
  flex-basis: 100%;
  margin-bottom: 2px;
}

.top-strip-container a {
  font-size: 13px;
  color: #93abd8;
  text-decoration: none;
}

.top-strip-container a:hover {
  color: #f1f1f1;
}

.nav.stuck {
  background: rgba(24, 47, 90, .94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, .22);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo img {
  height: 44px;
  width: auto;
}

.nav-mark svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.nav-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: white;
  letter-spacing: -.3px;
}

.nav-name em {
  color: var(--accent-light);
  font-style: normal;
}

.nav-suite {
  font-size: .68rem;
  color: rgba(255, 255, 255, .42);
  margin-top: -2px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, .78);
  font-size: .87rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover {
  color: white;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.nav-phone {
  color: #fff;
  font-size: .84rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.nav-phone:hover {
  color: white;
}

.nav-phone svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.nav-demo {
  background: var(--accent);
  color: white;
  padding: 9px 22px;
  border-radius: 7px;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .22s;
}

.nav-demo:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 58%, var(--primary-light) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 110px 5% 60px;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-orb1 {
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(221, 117, 19, .11) 0%, transparent 65%);
  top: -140px;
  left: -80px;
  animation: orb1 13s ease-in-out infinite;
}

.hero-orb2 {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(45, 85, 158, .22) 0%, transparent 65%);
  bottom: -80px;
  right: 4%;
  animation: orb2 10s ease-in-out infinite;
}

@keyframes orb1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(55px, 85px) scale(1.07);
  }

  66% {
    transform: translate(-25px, 45px) scale(.96);
  }
}

@keyframes orb2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-50px, -35px) scale(1.12);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 56px;
}

.hero-inner h1 em {
  display: block;
}

.hero-content {
  flex: 1 1 460px;
  max-width: 560px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(221, 117, 19, .13);
  border: 1px solid rgba(221, 117, 19, .30);
  color: #f5a050;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 3.8vw, 3.1rem);
  font-weight: 800;
  color: white;
  letter-spacing: -1.2px;
  line-height: 1.12;
  margin-bottom: 22px;
}

.hero h1 em {
  color: var(--accent-light);
  font-style: normal;
}

.hero-sub {
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 490px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-accent {
  background: var(--accent);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 22px rgba(221, 117, 19, .40);
  transition: all .25s;
}

.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(221, 117, 19, .48);
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, .32);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  background: rgba(255, 255, 255, .06);
  text-decoration: none;
  transition: all .25s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .60);
}

/* Four hero capability cards */
.hero-caps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
  margin-top: 50px;
}

.hcap-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hcap {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 14px;
  padding: 24px 22px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.hcap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--hc-c, var(--accent)), transparent 80%);
}

.hcap.hcap-1 {
  --hc-c: #DD7513;
}

.hcap.hcap-2 {
  --hc-c: #3A86FF;
}

.hcap.hcap-3 {
  --hc-c: #10b981;
}

.hcap.hcap-4 {
  --hc-c: #a78bfa;
}

.hcap:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .20);
}

.hcap-ico {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .20), inset 0 1px 0 rgba(255, 255, 255, .25);
}

.hcap.hcap-1 .hcap-ico {
  background: linear-gradient(135deg, #DD7513, #f08b25);
}

.hcap.hcap-2 .hcap-ico {
  background: linear-gradient(135deg, #3A86FF, #60a5fa);
}

.hcap.hcap-3 .hcap-ico {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.hcap.hcap-4 .hcap-ico {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.hcap-ico svg {
  width: 21px;
  height: 21px;
}

.hcap-t {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 800;
  color: white;
  letter-spacing: -.2px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hcap-d {
  font-size: .82rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.55;
}

/* Trust statement */
.hero-trust {
  font-size: .84rem;
  color: rgba(255, 255, 255, .58);
  max-width: 880px;
  line-height: 1.65;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  justify-content: center;
  text-align: center;
}

.hero-trust-mark {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
  flex-shrink: 0;
}

.hero-chips {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 25px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: .92rem;
  color: rgba(255, 255, 255, .82);
  font-weight: 500;
}

.hero-chip::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(221, 117, 19, .18);
  border: 1px solid rgba(221, 117, 19, .42);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f5a050'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── ECOSYSTEM SVG — hub + single cycling satellite ─── */
.audience-eco-wrap {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  animation: float 6s ease-in-out infinite;
}
.audience-eco-wrap text {
    font-size: 14px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.eco-svg {
  width: 100%;
  height: auto;
  overflow: visible;
  display: block;
}

@keyframes flowDash {
  to {
    stroke-dashoffset: -50;
  }
}

@keyframes pulsate {
  0% {
    r: 62;
    opacity: .55;
  }

  100% {
    r: 96;
    opacity: 0;
  }
}

@keyframes pulsate-outer {
  0% {
    r: 72;
    opacity: .35;
  }

  100% {
    r: 120;
    opacity: 0;
  }
}

/* Each cycle slot is visible for ~2.6s out of a 14s total cycle */
@keyframes cycleFade {
  0% {
    opacity: 0;
    transform: scale(.92);
  }

  4% {
    opacity: 1;
    transform: scale(1);
  }

  16% {
    opacity: 1;
    transform: scale(1);
  }

  20% {
    opacity: 0;
    transform: scale(.92);
  }

  100% {
    opacity: 0;
    transform: scale(.92);
  }
}

@keyframes satRingPulse {

  0%,
  100% {
    stroke-opacity: .18;
  }

  50% {
    stroke-opacity: .40;
  }
}

.eco-line {
  stroke-dasharray: 5 7;
  animation: flowDash 2s linear infinite;
}

.hub-ring {
  fill: none;
  stroke: rgba(221, 117, 19, .55);
  stroke-width: 1.8;
  animation: pulsate 3s ease-out infinite;
}

.hub-ring-2 {
  fill: none;
  stroke: rgba(221, 117, 19, .30);
  stroke-width: 1.2;
  animation: pulsate 3s ease-out 1s infinite;
}

.hub-ring-3 {
  fill: none;
  stroke: rgba(221, 117, 19, .18);
  stroke-width: 1;
  animation: pulsate-outer 4s ease-out 2s infinite;
}

.sat-ring {
  fill: none;
  stroke: rgba(255, 255, 255, .20);
  stroke-width: 1.5;
  animation: satRingPulse 3.5s ease-in-out infinite;
}

.cycle-item {
  opacity: 0;
  animation: cycleFade 14s infinite;
  transform-origin: center;
}

.cycle-item:nth-of-type(1) {
  animation-delay: 0s;
}

.cycle-item:nth-of-type(2) {
  animation-delay: 2.8s;
}

.cycle-item:nth-of-type(3) {
  animation-delay: 5.6s;
}

.cycle-item:nth-of-type(4) {
  animation-delay: 8.4s;
}

.cycle-item:nth-of-type(5) {
  animation-delay: 11.2s;
}

@media(prefers-reduced-motion:reduce) {
  .audience-eco-wrap {
    animation: none;
  }

  .eco-line {
    animation: none;
    stroke-dashoffset: 0;
  }

  .hub-ring,
  .hub-ring-2,
  .hub-ring-3,
  .sat-ring {
    animation: none;
  }

  .cycle-item {
    animation: none;
  }

  .cycle-item:first-of-type {
    opacity: 1;
  }
}

/* ─── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
  padding: 34px 5%;
}

.trust-inner {
  max-width: 1200px;
  margin: 30px auto 40px;
}

.trust-lbl {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 22px;
}

.trust-nums {
  display:
    /*flex*/
    none;
  justify-content: center;
  flex-wrap: wrap;
}

.tn-block {
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid var(--gray-light);
}

.tn-block:last-child {
  border-right: none;
}

.tn-val {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.5px;
}

.tn-val span {
  color: var(--accent);
}

.tn-desc {
  font-size: .74rem;
  color: var(--gray-mid);
  margin-top: 4px;
}

.trust-pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #b5c3e4;
}

.t-pill {
  background: white;
  border: 1px solid var(--gray-light);
  padding: 5px 16px;
  border-radius: 100px;
  font-size: .74rem;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 7px;
}

.t-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
  flex-shrink: 0;
}

/* ─── SHARED SECTION ─────────────────────────────────────── */
.section {
  padding: 96px 5%;
}

.si {
  max-width: 1200px;
  margin: 0 auto;
}

.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 12px;
}

.sec-cta .eyebrow {
  font-size: 1rem;
}

.sh2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.tab-callout h3.sh2 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  margin-bottom: 10px;
}

.sh2 em {
  color: var(--primary);
  font-style: normal;
}

.ssub {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 52px;
}

/* ─── PROBLEM ─────────────────────────────────────────────── */
.prob-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.prob-card {
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 24px;
  transition: box-shadow .22s, transform .22s;
}

.prob-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.prob-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 10px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prob-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.prob-card h3 {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
}

.prob-card p {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.60;
}

/* ─── PLATFORM / PILLARS ──────────────────────────────────── */
section#features {
    padding-top: 15px;
}
.plat-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.pillar {
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius);
  padding: 38px;
  color: white;
  position: relative;
  overflow: hidden;
}

.pillar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}

.pillar-bg {
  position: absolute;
  bottom: 8px;
  right: 16px;
  font-family: var(--font-head);
  font-size: 7rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.p-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent-light);
  background: rgba(221, 117, 19, .14);
  border: 1px solid rgba(221, 117, 19, .28);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.pillar h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.pillar .pdesc {
  font-size: .875rem;
  color: rgba(255, 255, 255, .60);
  margin-bottom: 22px;
  line-height: 1.65;
}

.pfeat {
  list-style: none;
}

.pfeat li {
  font-size: .85rem;
  color: rgba(255, 255, 255, .80);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.pfeat li:last-child {
  border-bottom: none;
}

.pfeat li::before {
  content: '✓';
  flex-shrink: 0;
  margin-top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(221, 117, 19, .22);
  border: 1px solid rgba(221, 117, 19, .38);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
}

.comm-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.comm-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comm-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.comm-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.comm-card p {
  font-size: .85rem;
  color: var(--text-light);
}

/* ─── AUDIENCE TABS ───────────────────────────────────────── */
.sec-audience {
  background: var(--white);
  padding-top: 80px;
}

.audience-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}

div#plat-connectivity .feat-grid-wrap {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

div#plat-connectivity .feat-grid-wrap .feat-custom-img img {
  display: none;
}

div#plat-connectivity .feat-grid-wrap .feat-grid,
div#plat-connectivity .feat-grid-wrap .feat-custom-img {
  flex-basis: 100%;
}

@media(min-width: 992px) {
  div#plat-connectivity .feat-grid-wrap .feat-grid {
    flex-basis: 65%;
  }

  div#plat-connectivity .feat-grid-wrap .feat-custom-img {
    flex-basis: 35%;
  }

  div#plat-connectivity .feat-grid-wrap .feat-custom-img img {
    display: block !important;
    border-radius: 14px;
  }

  div#plat-connectivity .feat-grid-wrap {
    gap: unset;
    flex-wrap: nowrap;
  }
}


.audience-header .ssub {
  margin-bottom: 0;
}

.tabs-nav {
  display: flex;
  gap: 4px;
  background: var(--gray-light);
  padding: 4px;
  border-radius: 12px;
  width: fit-content;
  margin: 0 auto 40px;
}

.tab-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: .87rem;
  font-weight: 600;
  color: var(--text-light);
  transition: all .22s;
}

.tab-btn.active {
  background: white;
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(24, 47, 90, .10);
}

.tab-btn:not(.active):hover {
  color: var(--text);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
  background: linear-gradient(135deg,  rgba(2,118,190,0.2) 0%,rgba(237,118,0,0.2) 100%);
  backdrop-filter: blur(20px) saturate(130%);
  border: 1px solid var(--gray-light);
  border-radius: 14px;
}

.tc-photo-description a.btn-accent{
    margin-top: 10px;
}
@media (min-width: 992px){
  .tc-photo{
    margin-bottom: 0 !important;
  }
}

.tab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 20px 20px;
}

.tab-item {
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.tab-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(24, 47, 90, .08), 0 0 0 1px rgba(221, 117, 19, .28);
  border-color: transparent;
}

.tab-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(36, 68, 127, .08) 0%, rgba(36, 68, 127, .03) 100%);
  border: 1px solid rgba(36, 68, 127, .10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(24, 47, 90, .04), inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: transform .35s ease, box-shadow .35s ease;
}

.tab-ico svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Colored variants for tab icons */
.tab-ico.c-orange {
  background: linear-gradient(135deg, rgba(221, 117, 19, .14) 0%, rgba(221, 117, 19, .04) 100%);
  border-color: rgba(221, 117, 19, .20);
}

.tab-ico.c-orange svg {
  stroke: #DD7513;
}

.tab-ico.c-blue {
  background: linear-gradient(135deg, rgba(58, 134, 255, .12) 0%, rgba(58, 134, 255, .04) 100%);
  border-color: rgba(58, 134, 255, .22);
}

.tab-ico.c-blue svg {
  stroke: #3A86FF;
}

.tab-ico.c-emerald {
  background: linear-gradient(135deg, rgba(16, 185, 129, .13) 0%, rgba(16, 185, 129, .04) 100%);
  border-color: rgba(16, 185, 129, .22);
}

.tab-ico.c-emerald svg {
  stroke: #10b981;
}

.tab-ico.c-violet {
  background: linear-gradient(135deg, rgba(139, 92, 246, .13) 0%, rgba(139, 92, 246, .04) 100%);
  border-color: rgba(139, 92, 246, .22);
}

.tab-ico.c-violet svg {
  stroke: #8b5cf6;
}

.tab-ico.c-gold {
  background: linear-gradient(135deg, rgba(255, 183, 3, .15) 0%, rgba(255, 183, 3, .04) 100%);
  border-color: rgba(255, 183, 3, .24);
}

.tab-ico.c-gold svg {
  stroke: #c98c00;
}

.tab-ico.c-rose {
  background: linear-gradient(135deg, rgba(244, 63, 94, .13) 0%, rgba(244, 63, 94, .04) 100%);
  border-color: rgba(244, 63, 94, .22);
}

.tab-ico.c-rose svg {
  stroke: #f43f5e;
}

.tab-item:hover .tab-ico {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 4px 14px rgba(24, 47, 90, .10), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.tab-t {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.2px;
  margin-top: 4px;
}

.tab-d {
  font-size: .80rem;
  color: var(--text-light);
  line-height: 1.55;
}

@media(max-width:1024px) {
  .tab-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-caps {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

}

@media(max-width:768px) {
  .tab-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-caps {
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
  }
}

.tab-callout {
  padding: 32px 20px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
}

.tc-photo {
  flex-basis: 40%;
}

.tc-photo-description {
  flex-basis: 60%;
}

.tab-callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.tc-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.tab-callout p {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 5px;
}

.tc-stat {
  background: var(--off-white);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 10px;
}

.tc-val {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary);
}

.tc-lbl {
  font-size: .74rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ─── EDI ─────────────────────────────────────────────────── */
.sec-edi {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
}

.sec-edi .eyebrow {
  color: var(--accent-light);
}

.sec-edi .sh2 {
  color: white;
}

.sec-edi .sh2 em {
  color: var(--accent-light);
}

.sec-edi .ssub {
  color: #fff;
}

.edi-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
}

.edi-header .ssub {
  margin-bottom: 0;
}

/* Small CSS-only "talking to carriers" sync animation */
.sync-anim {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.sync-node {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.sync-node svg {
  width: 24px;
  height: 24px;
  fill: rgba(255, 255, 255, .85);
}

.sync-node-b svg {
  fill: var(--accent-light);
}

.sync-track {
  position: relative;
  width: 84px;
  height: 2px;
  background: rgba(255, 255, 255, .14);
  flex-shrink: 0;
}

.sync-dot {
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translate(0, -50%);
  box-shadow: 0 0 8px 1px currentColor;
}

.sync-dot-1 {
  background: var(--accent-light);
  color: var(--accent-light);
  animation: syncRight 2.6s ease-in-out infinite;
}

.sync-dot-2 {
  background: rgba(255, 255, 255, .85);
  color: rgba(255, 255, 255, .85);
  animation: syncLeft 2.6s ease-in-out infinite;
  animation-delay: 1.3s;
}

@keyframes syncRight {
  0% {
    left: 0;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: calc(100% - 7px);
    opacity: 0;
  }
}

@keyframes syncLeft {
  0% {
    left: calc(100% - 7px);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 0;
    opacity: 0;
  }
}

@keyframes syncPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(221, 117, 19, .35);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(221, 117, 19, 0);
  }
}

.sync-node-b {
  animation: syncPulse 2.6s ease-in-out infinite;
}

.edi-header-visual {
  display: flex;
  justify-content: center;
}

.edi-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.edi-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.edi-sc {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 18px;
}

.edi-sv {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 800;
  color: white;
  letter-spacing: -.5px;
}

.edi-sv em {
  color: var(--accent-light);
  font-style: normal;
}

.edi-sl {
  font-size: .72rem;
  color: rgba(255, 255, 255, .48);
  margin-top: 3px;
}

.edi-grp {
  margin-bottom: 24px;
}

.edi-glbl {
  font-size: .70rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: rgba(255, 255, 255, .40);
  margin-bottom: 9px;
}

.edi-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.edi-tag {
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 4px 11px;
  border-radius: 5px;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .78);
  opacity: 0;
  transform: translateY(8px) scale(.94);
  transition: opacity .4s ease, transform .4s ease, background .2s, border-color .2s;
}

.edi-tags.lit .edi-tag {
  opacity: 1;
  transform: none;
}

.edi-tags.lit .edi-tag {
  transition-delay: calc(var(--i, 0) * .055s), calc(var(--i, 0) * .055s), 0s, 0s;
}

.edi-tag:hover {
  background: rgba(221, 117, 19, .18);
  border-color: rgba(221, 117, 19, .4);
  color: #fff;
}

.edi-flows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.edi-flow {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 12px;
  padding: 18px 20px;
}

.edi-ftitle {
  font-size: .70rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--accent-light);
  margin-bottom: 8px;
}

.edi-fitems {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.edi-fitem {
  background: rgba(255, 255, 255, .07);
  padding: 3px 9px;
  border-radius: 4px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .68);
}

/* ─── RESULTS ─────────────────────────────────────────────── */
.sec-results {
  background: var(--off-white);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.results-heading{
  text-align: center;
}

.reveal.results-heading .ssub {
    max-width: 960px;
    margin: 0 auto 15px;
}

.results-heading{
  margin-bottom: 30px;
}

.rc {
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}

.rc:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.rc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}

.rc-lbl {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--primary);
  background: var(--gray-light);
  padding: 3px 9px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 14px;
}

.rc-scope {
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: 22px;
  line-height: 1.55;
}

.rc-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rc-num {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1;
}

.rc-num em {
  color: var(--accent);
  font-style: normal;
}

.rc-desc {
  font-size: .76rem;
  color: var(--text-light);
  margin-top: 3px;
}

.rc-sep {
  border: none;
  border-top: 1px solid var(--gray-light);
}
@media (max-width: 1024px){
  :root .results-grid{
      grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px){
  :root .results-grid{
      grid-template-columns: repeat(1, 1fr);
  }
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-wrap {
  max-width: 740px;
  margin: auto;
}

.faq-section-head {
  max-width: 740px;
  margin: auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: .96rem;
  font-weight: 600;
  color: var(--text);
  transition: color .2s;
}

.faq-q:hover,
.faq-q.open {
  color: var(--primary);
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s, border-color .25s;
}

.faq-icon svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: var(--gray-mid);
  stroke-width: 2;
  transition: stroke .25s;
}

.faq-q.open .faq-icon {
  transform: rotate(180deg);
  border-color: var(--primary);
}

.faq-q.open .faq-icon svg {
  stroke: var(--primary);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a.open {
  max-height: 400px;
}

.faq-ai {
  padding: 0 0 20px;
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.72;
}

/* ─── CTA ─────────────────────────────────────────────────── */
.sec-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1d3e7c 100%);
  text-align: center;
  padding: 96px 5%;
}

.sec-cta .eyebrow {
  color: var(--accent-light);
}

.sec-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: white;
  letter-spacing: -.5px;
  margin-bottom: 16px;
  line-height: normal;
}

.sec-cta p {
  font-size: 1.02rem;
  color: #fff;
  margin-bottom: 44px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  margin-bottom: 30px;
}

.cta-logo {
  height: 44px;
  width: auto;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-phone {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: background .2s;
}
.cta-phone .cta-ph-num {
    font-size: .95rem;
}
.cta-phone:hover {
  background: rgba(255, 255, 255, .12);
}

.cta-ph-ico {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-ph-ico svg {
  width: 13px;
  height: 13px;
  fill: white;
}

.cta-ph-lbl {
  font-size: .70rem;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.cta-ph-num {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
}

.cta-or {
  color: rgba(255, 255, 255, .22);
  font-size: .85rem;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--primary-dark);
  padding: 64px 5% 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 4fr 110px;
  gap: 48px;
  margin-bottom: 48px;
}

.ft-logo-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}

.ft-logo-row img {
  height: 44px;
  width: auto;
}
@media (max-width: 640px){
  .ft-logo-row img {
    height: auto;
    max-width: 160px;
    width: 100%;
  }
}

.ft-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ft-mark svg {
  width: 16px;
  height: 16px;
  fill: white;
}

.ft-bname {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 800;
  color: white;
}

.ft-bname em {
  color: var(--accent);
  font-style: normal;
}

.ft-tag {
  font-size: .80rem;
  color: rgba(255, 255, 255, .40);
  line-height: 1.65;
  max-width: 262px;
  margin-bottom: 16px;
}

.ft-back {
  font-size: .75rem;
  color: rgba(255, 255, 255, .30);
  text-decoration: none;
}

.ft-back:hover {
  color: rgba(255, 255, 255, .60);
}

.ft-col-h {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: rgba(255, 255, 255, .36);
  margin-bottom: 14px;
}

.ft-links {
  list-style: none;
}

.ft-links li {
  margin-bottom: 9px;
}

.ft-links a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .50);
  text-decoration: none;
  transition: color .2s;
}

.ft-links a:hover {
  color: rgba(255, 255, 255, .88);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
 @media (max-width: 850px){
  .footer-bottom{
    flex-direction: column;
  }
  .ft-copy{
    order: 2;
  }
  .ft-legal{
    order: 1;
  }
 }

.ft-copy {
  font-size: .75rem;
  color: rgba(255, 255, 255, .30);
}

.ft-legal {
  display: flex;
  gap: 18px;
}

.ft-legal a {
  font-size: .75rem;
  color: rgba(255, 255, 255, .30);
  text-decoration: none;
}

.ft-legal a:hover {
  color: rgba(255, 255, 255, .65);
}

/* ─── TAB CALLOUT PHOTO ───────────────────────────────────── */
.tc-photo {
  width: 40%;
  aspect-ratio: 16/10;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 18px;
  background: var(--off-white) center/cover no-repeat;
  border: 1px solid var(--gray-light);
}

.tc-photo[src=""],
.tc-photo:not([src]) {
  display: none;
}

/* RIGHT: 3D mock column — sits flush at bottom, rises up */
.hero-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  perspective: 1200px;
}

/* Floating pills */
.hero-pill {
  position: absolute;
  z-index: 20;
  background: white;
  border-radius: 10px;
  padding: 8px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .22), 0 2px 6px rgba(0, 0, 0, .10);
  animation: pillFloat 4s ease-in-out infinite;
}

.hero-pill.pill-top {
  top: 30px;
  right: -16px;
  animation-delay: 0s;
}

.hero-pill.pill-btm {
  bottom: 80px;
  left: -16px;
  animation-delay: 1.8s;
}

@keyframes pillFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.pill-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pill-top .pill-icon {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.pill-btm .pill-icon {
  background: linear-gradient(135deg, #3A86FF, #60a5fa);
}

.pill-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: white;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pill-label {
  font-family: var(--font-head);
  font-size: .67rem;
  font-weight: 700;
  color: #1a2340;
  line-height: 1.2;
}

.pill-status {
  font-size: .58rem;
  font-weight: 600;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 3px;
}

.pill-btm .pill-status {
  color: #3A86FF;
}

.pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.pill-dot {
  animation: pulse1 1.6s ease-in-out infinite;
}

@keyframes pulse1 {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, .55);
  }

  60% {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
  }
}

.pill-btm .pill-dot {
  animation: pulse2 1.6s ease-in-out infinite;
}

@keyframes pulse2 {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(58, 134, 255, .55);
  }

  60% {
    box-shadow: 0 0 0 4px rgba(58, 134, 255, 0);
  }
}

/* 3D glass wrap */
.mock-3d-wrap {
  width: 100%;
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition: transform .5s ease;
  position: relative;
}

.mock-3d-wrap:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

/* Glass perimeter ring */
.mock-glass-ring {
  position: absolute;
  inset: -5px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .20) 0%, rgba(255, 255, 255, .04) 55%, rgba(255, 255, 255, .14) 100%);
  border: 1px solid rgba(255, 255, 255, .24);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
  z-index: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 20px 60px rgba(0, 0, 0, .28);
}

/* Dashboard card */
.hero-mock {
  position: relative;
  z-index: 1;
  background: #f4f6fb;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
}

/* ── TOPBAR ─────────────────────────────────────────── */
.mock-topbar {
  background: white;
  border-bottom: 1px solid #e6eaf4;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-org {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mock-org-ico {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #24447f, #2d559e);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-org-ico svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mock-org-name {
  font-family: var(--font-head);
  font-size: .63rem;
  font-weight: 800;
  color: #1a2340;
  line-height: 1.15;
}

.mock-org-sub {
  font-size: .52rem;
  color: #8a95b0;
}

.mock-topbar-r {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-search {
  background: #f4f6fb;
  border: 1px solid #e0e4f0;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .58rem;
  color: #8a95b0;
  display: flex;
  align-items: center;
  gap: 5px;
  width: 138px;
}

.mock-search svg {
  width: 9px;
  height: 9px;
  stroke: #8a95b0;
  fill: none;
  flex-shrink: 0;
}

.mock-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #24447f, #2d559e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .50rem;
  font-weight: 800;
  color: white;
  font-family: var(--font-head);
}

/* ── BACK NAV ───────────────────────────────────────── */
.mock-backnav {
  background: white;
  padding: 5px 14px;
  border-bottom: 1px solid #e6eaf4;
}

.mock-back {
  font-size: .56rem;
  color: #24447f;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mock-back svg {
  width: 9px;
  height: 9px;
  stroke: #24447f;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

/* ── CONTENT ────────────────────────────────────────── */
.mock-content {
  padding: 11px 14px 14px;
  background: #f4f6fb;
}

/* Greeting */
.mock-greet {
  background: white;
  border: 1px solid #e6eaf4;
  border-radius: 8px;
  padding: 9px 12px;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-greet-ava {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #24447f, #2d559e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .52rem;
  font-weight: 800;
  color: white;
  font-family: var(--font-head);
}

.g-name {
  font-family: var(--font-head);
  font-size: .64rem;
  font-weight: 700;
  color: #1a2340;
}

.g-sub {
  font-size: .55rem;
  color: #6b7494;
  margin-top: 1px;
  line-height: 1.4;
}

/* Action banner */
.mock-action {
  background: linear-gradient(135deg, #4f46e5 0%, #6d28d9 100%);
  border-radius: 8px;
  padding: 11px 12px;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mock-act-badge {
  font-size: .50rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 2px;
}

.mock-act-title {
  font-family: var(--font-head);
  font-size: .63rem;
  font-weight: 800;
  color: white;
  line-height: 1.25;
  margin-bottom: 2px;
}

.mock-act-desc {
  font-size: .52rem;
  color: rgba(255, 255, 255, .70);
  line-height: 1.35;
}

.mock-act-btn {
  background: white;
  color: #4f46e5;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: .55rem;
  font-weight: 700;
  font-family: var(--font-head);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mock-act-btn svg {
  width: 9px;
  height: 9px;
  fill: none;
  stroke: #4f46e5;
  stroke-width: 2;
  stroke-linecap: round;
}

/* At a Glance */
.mock-section-title {
  font-family: var(--font-head);
  font-size: .59rem;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 7px;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}

.mock-stat {
  background: white;
  border: 1px solid #e6eaf4;
  border-radius: 7px;
  padding: 8px 10px;
}

.sv {
  font-family: var(--font-head);
  font-size: .90rem;
  font-weight: 800;
  color: #1a2340;
  line-height: 1;
}

.sv.g {
  color: #10b981;
}

.sv.o {
  color: #DD7513;
}

.sv.r {
  color: #ef4444;
}

.sl {
  font-size: .50rem;
  color: #4f46e5;
  font-weight: 700;
  margin-top: 3px;
}

.ss {
  font-size: .46rem;
  color: #8a95b0;
  margin-top: 1px;
}

/* Quick Access */
.mock-qa {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.mock-qc {
  background: white;
  border: 1px solid #e6eaf4;
  border-radius: 7px;
  padding: 9px 10px;
}

.mock-qico {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-qc:nth-child(1) .mock-qico {
  background: #ede9fe;
}

.mock-qc:nth-child(2) .mock-qico {
  background: #fff7ed;
}

.mock-qc:nth-child(3) .mock-qico {
  background: #eff6ff;
}

.mock-qico svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mock-qc:nth-child(1) .mock-qico svg {
  stroke: #7c3aed;
}

.mock-qc:nth-child(2) .mock-qico svg {
  stroke: #DD7513;
}

.mock-qc:nth-child(3) .mock-qico svg {
  stroke: #2563eb;
}

.mock-qn {
  font-family: var(--font-head);
  font-size: .59rem;
  font-weight: 700;
  color: #24447f;
  margin-bottom: 2px;
}

.mock-qd {
  font-size: .51rem;
  color: #6b7494;
  line-height: 1.3;
}

/* ─── RESULTS CARD PHOTO ──────────────────────────────────── */
.rc-photo {
  width: calc(100% + 68px);
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  margin: -34px -34px 18px;
}

.rc-photo[src=""],
.rc-photo:not([src]) {
  display: none;
}

/* ─── REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .10s;
}

.d2 {
  transition-delay: .20s;
}

.d3 {
  transition-delay: .30s;
}

.d4 {
  transition-delay: .40s;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media(max-width:1024px) {
  .hero-inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
    flex-basis: auto;
  }

  .hero-video-wrap {
    max-width: 100%;
  }

  .plat-header {
    grid-template-columns: 1fr;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .edi-layout {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .prob-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-header {
    grid-template-columns: 1fr;
  }

  .audience-eco-wrap {
    max-width: 260px;
    margin-top: 8px;
  }

  .edi-header {
    grid-template-columns: 1fr;
  }

  .edi-header-visual {
    margin-top: 8px;
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none;
  }

  .tab-panel.active {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .tn-block {
    padding: 0 20px;
  }
}

@media(max-width:540px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 20px;
  }

  .trust-nums {
    gap: 0;
  }

  .tn-block {
    padding: 12px 24px;
    border-right: none;
    border-bottom: 1px solid var(--gray-light);
  }

  .tn-block:last-child {
    border-bottom: none;
  }

  .cta-row {
    flex-direction: column;
  }

  .prob-grid {
    grid-template-columns: 1fr;
  }
}

@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ─── GLASSMORPHISM & MODERN UI POLISH ───────────────────── */

/* Trust bar: ambient radial backdrop + lifted numbers */
.trust-bar {
  position: relative;
  overflow: hidden;
}

.trust-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 50% 40%, rgba(221, 117, 19, .045) 0%, transparent 65%),
    radial-gradient(ellipse 40% 55% at 22% 70%, rgba(36, 68, 127, .035) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.trust-inner {
  position: relative;
  z-index: 1;
}

.tn-val {
  filter: drop-shadow(0 3px 14px rgba(36, 68, 127, .10));
}

/* Audience tab nav: glassy pill container */
.tabs-nav {
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .75);
  box-shadow:
    0 2px 18px rgba(24, 47, 90, .07),
    inset 0 1px 0 rgba(255, 255, 255, .95);
}

/* Pillar cards: top inner highlight + ambient pulse on giant numeral */
.pillar>* {
  position: relative;
  z-index: 1;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05) 0%, transparent 100%);
  border-radius: var(--radius) var(--radius) 0 0;
  pointer-events: none;
}

@keyframes pillarBgPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(1.03);
  }
}

.pillar-bg {
  animation: pillarBgPulse 5.5s ease-in-out infinite;
}

/* Complexity prob-cards: soft top highlight + orange-outline hover glow */
.prob-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1);
}

.prob-card:hover {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow:
    0 10px 32px rgba(24, 47, 90, .10),
    0 0 0 1px rgba(221, 117, 19, .28),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.prob-icon {
  transition: transform .35s ease, box-shadow .35s ease;
}

.prob-card:hover .prob-icon {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 6px 20px rgba(36, 68, 127, .25);
}

/* EDI section: stronger glass treatment on the dark canvas */
.edi-sc,
.edi-flow {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, .075) 0%, rgba(255, 255, 255, .025) 100%);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 6px 24px rgba(0, 0, 0, .16);
}

.edi-sc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(221, 117, 19, .45), transparent);
  pointer-events: none;
}

/* Results cards: soft top highlight + orange-outline hover glow */
.rc {
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1);
}

.rc:hover {
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow:
    0 22px 60px rgba(24, 47, 90, .14),
    0 0 0 1px rgba(221, 117, 19, .30),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Tab callout: frosted glass over the audience section */
.tab-callout {
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  gap: 25px;
  align-items: center;
}

.tc-stat-container {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr;
}

/* Accent CTA: animated gradient shift on hover */
.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  background-size: 220% 100%;
  background-position: 0% 0%;
  transition: background-position .6s ease, transform .25s ease, box-shadow .25s ease;
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  background-size: 220% 100%;
  background-position: 100% 0%;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(221, 117, 19, .48);
}

/* FAQ: accent bar appears next to open question */
.faq-q {
  position: relative;
}

.faq-q::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-light));
  transform: translateY(-50%);
  transition: height .3s ease;
}

.faq-q.open::before {
  height: 24px;
}

/* Phone CTA in footer banner: subtle glass */
.cta-phone {
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10);
}

.cta-phone:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 4px 24px rgba(0, 0, 0, .15);
}

/* Hero eyebrow pill: tiny glass refinement */
.hero-eyebrow {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

/* Nav demo button: matches accent button shimmer */
.nav-demo {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  background-size: 220% 100%;
  background-position: 0% 0%;
  transition: background-position .5s ease, transform .22s ease;
}

.nav-demo:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  background-size: 220% 100%;
  background-position: 100% 0%;
  transform: translateY(-1px);
}

/*Platform section*/
/* ─── PLATFORM WAVE ANIMATION ────────────────────────────── */
.platform-logo {
  height: 30px;
  width: auto;
  display: flex;
  margin-bottom: 15px;
}

.plat-wave {
  /* waves move horizontally — each path is wider than the viewport */
  transform-origin: center center;
}

.plat-wave-1 {
  animation: waveShift1 18s ease-in-out infinite;
}

.plat-wave-2 {
  animation: waveShift2 22s ease-in-out infinite;
}

.plat-wave-3 {
  animation: waveShift3 16s ease-in-out infinite;
}

@keyframes waveShift1 {

  0%,
  100% {
    transform: translateX(0) scaleY(1);
  }

  33% {
    transform: translateX(-3%) scaleY(1.08);
  }

  66% {
    transform: translateX(2%) scaleY(0.94);
  }
}

@keyframes waveShift2 {

  0%,
  100% {
    transform: translateX(0) scaleY(1);
  }

  40% {
    transform: translateX(2.5%) scaleY(1.10);
  }

  75% {
    transform: translateX(-2%) scaleY(0.92);
  }
}

@keyframes waveShift3 {

  0%,
  100% {
    transform: translateX(0) scaleY(1);
  }

  50% {
    transform: translateX(-2%) scaleY(1.06);
  }
}

/* ─── PLATFORM SECTION — WAVE BACKGROUND & UI POLISH ─────── */
.section#platform {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

/* SVG wave canvas behind all content */
.plat-wave-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

/* All content sits above the wave */
.section#platform .si {
  position: relative;
  z-index: 1;
}

/* Lifted header block */
.plat-header {
  background: linear-gradient(135deg, rgba(36, 68, 127, .04) 0%, rgba(221, 117, 19, .04) 100%);
  border: 1px solid rgba(36, 68, 127, .07);
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 44px;
  position: relative;
  overflow: hidden;
}

.plat-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 2px 2px 0 0;
}

/* Tab switcher glass pill */
.plat-switcher {
  background: rgba(238, 241, 248, .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(36, 68, 127, .09);
  box-shadow: 0 2px 16px rgba(36, 68, 127, .06), inset 0 1px 0 rgba(255, 255, 255, .9);
}

/* Feature cards — subtle depth lift */
.feat-card {
  background: linear-gradient(160deg, #ffffff 0%, #f8fafd 100%);
  border: 1px solid rgba(36, 68, 127, .09);
  box-shadow: 0 1px 4px rgba(36, 68, 127, .04), inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: box-shadow .28s, transform .28s, border-color .28s;
}

.plat-panel {
  margin-bottom: 40px;
}

.feat-card:hover {
  box-shadow: 0 12px 32px rgba(36, 68, 127, .13), 0 0 0 1px rgba(221, 117, 19, .18), inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-4px);
  border-color: transparent;
}

.plat-para a {
  background: white;
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(24, 47, 90, .10);
  margin: 8px 5px 0 0;
  display: inline-block;
  border-radius: 9px;
  padding: 8px 15px;
  text-decoration: none;
  font-size: .87rem;
  font-weight: 600;
}

/* Single dot canvas covers the entire feat-grid area, sits behind it */
.feat-grid-wrap {
  position: relative;
}

.feat-grid-dots {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  top: 0;
  left: 0;
}

/* Intro strip lift */
.plat-intro {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  margin-bottom: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.plat-intro-body {
  padding: 36px 40px;
}

.plat-intro-image {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background: linear-gradient(135deg, #dde3f2 0%, #c8d0e8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.plat-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plat-intro-image svg {
  width: 52px;
  height: 52px;
  stroke: var(--gray-mid);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.plat-intro-image span {
  font-size: .78rem;
  color: var(--gray-mid);
  font-weight: 500;
}

.plat-intro-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.plat-intro-tag.e {
  background: rgba(36, 68, 127, .10);
  color: var(--primary);
}

.plat-intro-tag.b {
  background: rgba(221, 117, 19, .12);
  color: var(--accent);
}

.plat-intro-tag.c {
  background: rgba(16, 185, 129, .12);
  color: #0d9488;
}

.plat-intro-tag.m {
  background: rgba(124, 58, 237, .12);
  color: #7c3aed;
}

.plat-intro-body p {
  font-size: .97rem;
  color: var(--text-light);
  line-height: 1.78;
}

/* Comm card */
.comm-card {
  background: linear-gradient(135deg, var(--gray-light) 0%, var(--off-white) 100%);
  border: 1px solid rgba(36, 68, 127, .08);
  box-shadow: 0 2px 12px rgba(36, 68, 127, .05), inset 0 1px 0 rgba(255, 255, 255, .9);
}

/* ─── PLATFORM / FEATURE CARDS (layout) ───────────────────── */
.plat-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Pillar tab switcher */
.plat-switcher {
  display: flex;
  gap: 0;
  background: var(--gray-light);
  padding: 4px;
  border-radius: 12px;
  width: fit-content;
  margin-bottom: 32px;
}

.plat-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 11px 28px;
  border-radius: 9px;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-light);
  transition: all .22s;
  display: flex;
  align-items: center;
  gap: 9px;
}

.plat-btn:not(.active):hover {
  color: var(--text);
}

.plat-btn.active {
  background: white;
  color: var(--primary);
  box-shadow: 0 2px 12px rgba(24, 47, 90, .11);
}

.plat-btn-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 800;
  background: var(--gray-light);
  color: var(--text-light);
  transition: all .22s;
}

.plat-btn.active.enrollment .plat-btn-badge {
  background: var(--primary);
  color: white;
}

.plat-btn.active.billing .plat-btn-badge {
  background: var(--accent);
  color: white;
}

.plat-panel {
  display: none;
}

.plat-panel.active {
  display: block;
}

/* Pillar intro strip */

.plat-intro-tag.e {
  color: var(--primary);
}

.plat-intro-tag.b {
  color: var(--accent);
}

.plat-intro p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.65;
}

@media(max-width: 767px){
  .plat-intro-image{
    display: none;
  }
  .plat-intro{
    display: flex;
  }
}

/* ── CONNECTIVITY / COMMS — stacked list left, image right ── */
.conn-panel-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: start;
}

.conn-list {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: 1fr 1fr;
}

.conn-item {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  transition: box-shadow .25s, border-color .25s;
}

.conn-item:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
}

.conn-item-ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conn-item-ico svg {
  width: 15px;
  height: 15px;
  fill: white;
}

.conn-item-body h4 {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.conn-item-body p {
  font-size: .75rem;
  color: var(--text-light);
  line-height: 1.50;
}

.conn-panel-image {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #dde3f2 0%, #c8d0e8 100%);
  border: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.conn-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.conn-panel-image svg {
  width: 44px;
  height: 44px;
  stroke: var(--gray-mid);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.conn-panel-image span {
  font-size: .76rem;
  color: var(--gray-mid);
  font-weight: 500;
}

@media (max-width: 480px){
  .conn-list {
    grid-template-columns: 1fr;
}

}
/* Feature card grid */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

#plat-communications .feat-grid,
#plat-connectivity .feat-grid {
  grid-template-columns: repeat(2, 1fr);
}

.feat-card {
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 22px 18px;
  transition: box-shadow .22s, transform .22s, border-color .22s;
}

.feat-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: rgba(36, 68, 127, .16);
}

.feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(24, 47, 90, .08), inset 0 1px 0 rgba(255, 255, 255, .25);
  transition: transform .3s ease, box-shadow .3s ease;
}

.feat-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.feat-card:hover .feat-icon {
  transform: translateY(-2px) scale(1.05);
}

.feat-icon.navy {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  box-shadow: 0 6px 16px rgba(36, 68, 127, .30), inset 0 1px 0 rgba(255, 255, 255, .25);
}

.feat-icon.orange {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  box-shadow: 0 6px 16px rgba(221, 117, 19, .32), inset 0 1px 0 rgba(255, 255, 255, .30);
}

.feat-icon.blue {
  background: linear-gradient(135deg, #3A86FF 0%, #60a5fa 100%);
  box-shadow: 0 6px 16px rgba(58, 134, 255, .32), inset 0 1px 0 rgba(255, 255, 255, .30);
}

.feat-icon.emerald {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  box-shadow: 0 6px 16px rgba(16, 185, 129, .30), inset 0 1px 0 rgba(255, 255, 255, .30);
}

.feat-icon.violet {
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
  box-shadow: 0 6px 16px rgba(139, 92, 246, .30), inset 0 1px 0 rgba(255, 255, 255, .30);
}

.feat-icon.rose {
  background: linear-gradient(135deg, #f43f5e 0%, #fb7185 100%);
  box-shadow: 0 6px 16px rgba(244, 63, 94, .28), inset 0 1px 0 rgba(255, 255, 255, .30);
}

.feat-icon.gold {
  background: linear-gradient(135deg, #c98c00 0%, #f5b324 100%);
  box-shadow: 0 6px 16px rgba(201, 140, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .30);
}

.feat-icon.teal {
  background: linear-gradient(135deg, #0891b2 0%, #22d3ee 100%);
  box-shadow: 0 6px 16px rgba(8, 145, 178, .30), inset 0 1px 0 rgba(255, 255, 255, .30);
}

.feat-card h3 {
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
  line-height: 1.35;
}

.feat-card p {
  font-size: .80rem;
  color: var(--text-light);
  line-height: 1.60;
}

.comm-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.comm-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comm-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.comm-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.comm-card p {
  font-size: .85rem;
  color: var(--text-light);
}

.feat-grid-dots {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  top: 0;
  left: 0;
}

/* ─── EASY SETUP & OPERATE ───────────────────────────────── */
.sec-ease {
  background: linear-gradient(165deg, var(--primary-dark) 0%, var(--primary) 45%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.sec-ease::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 139, 37, .22) 0%, transparent 70%);
}

.sec-ease::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 85, 158, .35) 0%, transparent 70%);
}

.ease-inner {
  position: relative;
  z-index: 1;
}

.ease-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.ease-head .eyebrow {
  color: var(--accent-light);
}

.ease-head .sh2 {
  color: white;
}

.ease-head .sh2 em {
  color: var(--accent-light);
}

.ease-head .ssub {
  color: rgba(255, 255, 255, .78);
  margin: 0 auto;
}

.ease-flow {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 40px;
}

.ease-flow-step {
  flex: 1;
  min-width: 0;
  padding: 0 10px;
  position: relative;
}

.ease-flow-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .10);
  border: 1.5px solid rgba(255, 255, 255, .32);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  color: white;
  margin-bottom: 16px;
  transition: background .25s, border-color .25s, transform .25s;
}

.ease-flow-step:hover .ease-flow-num {
  background: var(--accent);
  border-color: transparent;
  transform: scale(1.08);
}

.ease-flow-step h4 {
  font-family: var(--font-head);
  font-size: .94rem;
  font-weight: 700;
  color: white;
  margin-bottom: 7px;
  line-height: 1.3;
}

.ease-flow-step p {
  font-size: .80rem;
  color: rgba(255, 255, 255, .62);
  line-height: 1.6;
}

.ease-flow-arrow {
  flex-shrink: 0;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 11px;
  opacity: .4;
}

.ease-flow-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-light);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ease-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 28px;
  padding: 24px 32px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  margin-bottom: 40px;
}

.ease-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ease-strip-item svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--accent-light);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.ease-strip-item span {
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
}

.ease-strip-div {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, .18);
  flex-shrink: 0;
}

.ease-bottom-line {
  text-align: center;
  margin-top: 40px;
  font-size: .86rem;
  color: rgba(255, 255, 255, .55);
}

.ease-bottom-line strong {
  color: white;
  font-weight: 700;
}

@media(max-width:900px) {
  .ease-flow {
    flex-wrap: wrap;
    gap: 28px 0;
  }

  .ease-flow-step {
    flex: 1 1 38%;
  }

  .ease-flow-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .ease-flow-num {
    min-width: 42px;
  }
  .conn-panel-wrap {
    grid-template-columns:1fr;
  }
  .conn-panel-image{
    order: 1;
  }
  .conn-list{
    order: 2;
  }

}

@media(max-width:560px) {
  .ease-flow-step {
    flex: 1 1 100%;
  }

  .ease-flow-step h4 {
    min-width: 96px;
  }
}

/* ─── PROBLEM (legacy background rule superseded by ledger block above) ── */

/* ─── BUILT FOR THE DETAILS — INTERACTIVE LEDGER ─────────────── */
.sec-problem {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.sec-problem::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -160px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 68, 127, .06) 0%, transparent 70%);
  pointer-events: none;
}

.ledger-h-track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-bottom: 8px;
  flex-wrap: wrap;
  row-gap: 28px;
}

.ledger-h-thread {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 23px;
  height: 2px;
  background: var(--gray-light);
  z-index: 0;
}

.ledger-h-thread-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary-light) 100%);
  border-radius: 2px;
  width: 0%;
  transition: width .5s cubic-bezier(.4, 0, .2, 1);
}

.ledger-h-node {
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 84px;
  padding: 0;
  font-family: inherit;
}

.ledger-h-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--off-white);
  border: 2px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .92rem;
  color: var(--gray-mid);
  transition: all .3s ease;
}

.ledger-h-node.done .ledger-h-num {
  border-color: var(--accent);
  color: var(--accent);
  background: #FFF;
}

.ledger-h-node.active .ledger-h-num {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 6px 18px rgba(221, 117, 19, .4);
  transform: scale(1.08);
}

.ledger-h-label {
  font-size: .74rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  line-height: 1.3;
  max-width: 96px;
  transition: color .25s;
}

.ledger-h-node.active .ledger-h-label {
  color: var(--primary);
  font-weight: 700;
}

.ledger-h-panel {
  margin-top: 36px;
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: 18px;
  padding: 32px 36px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: opacity .18s ease;
}

.ledger-h-panel.fading {
  opacity: 0;
}

.ledger-h-panel-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  color: white;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(221, 117, 19, .35);
}

.ledger-h-panel h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.ledger-h-panel p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.ledger-h-panel .ledger-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: .7rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ledger-h-panel .ledger-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-light);
}

@media(max-width:880px) {
  .ledger-h-thread {
    display: none;
  }

  .ledger-h-track {
    justify-content: flex-start;
    gap: 22px 18px;
  }

  .ledger-h-node {
    flex: 0 1 calc(25% - 18px);
    min-width: 70px;
  }
}

@media(max-width:560px) {
  .ledger-h-node {
    flex: 0 1 calc(33.33% - 14px);
  }

  .ledger-h-panel {
    flex-direction: column;
    padding: 26px;
  }
}

/* ─── DEMO MODAL ─────────────────────────────────────────── */
.demo-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(15, 25, 55, .68);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
  overflow-y: auto;
}

.demo-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.demo-modal {
  background: white;
  border-radius: 22px;
  width: 100%;
  max-width: 640px;
  padding: 44px 40px 36px;
  box-shadow: 0 32px 80px rgba(15, 25, 55, .28);
  position: relative;
  transform: translateY(18px) scale(.97);
  transition: transform .32s cubic-bezier(.34, 1.4, .64, 1);
  max-height: 94vh;
  overflow-y: auto;
}

.demo-overlay.open .demo-modal {
  transform: translateY(0) scale(1);
}

.demo-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--gray-light);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: background .2s, color .2s;
}

.demo-close:hover {
  background: var(--gray-mid);
  color: white;
}

.demo-modal-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.demo-modal-mark {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.demo-modal-mark svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.demo-modal h2 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.3px;
  line-height: 1.2;
}

.demo-modal-sub {
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.6;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.demo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.demo-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.demo-field label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: .03em;
}

.demo-field input,
.demo-field select,
.demo-field textarea {
  border: 1.5px solid var(--gray-light);
  border-radius: 9px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--off-white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: none;
}

.demo-field input:focus,
.demo-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(36, 68, 127, .10);
  background: white;
}

.form-group.terms-group {
  font-size: 12px;
  line-height: 16px;
}

.demo-submit {
  margin-top: 4px;
  padding: 13px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: white;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .22s, transform .22s, box-shadow .22s;
  box-shadow: 0 4px 18px rgba(221, 117, 19, .38);
}

.demo-submit:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(221, 117, 19, .46);
}

.demo-submit svg {
  width: 16px;
  height: 16px;
  fill: white;
}

.demo-privacy {
  font-size: .72rem;
  color: var(--gray-mid);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.demo-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 16px 0 8px;
}

.demo-success-ico {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(36, 68, 127, .28);
}

.demo-success-ico svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.demo-success h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}

.demo-success p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 320px;
}

@media(max-width:520px) {
  .demo-modal {
    padding: 32px 22px 28px;
  }

  .demo-row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ═══════════════════════════════════════════════════════════ */

/* ─── HAMBURGER MENU ─────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 9px;
  cursor: pointer;
  padding: 0;
  transition: background .2s;
  flex-shrink: 0;
}

.nav-hamburger:hover {
  background: rgba(255, 255, 255, .15);
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav-mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(24, 47, 90, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  padding: 100px 32px 48px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.nav-mobile-drawer.open {
  transform: translateX(0);
}

body.mobile-nav-open {
  overflow: hidden;
}

.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.nav-mobile-links a {
  display: block;
  color: rgba(255, 255, 255, .82);
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: color .2s, padding-left .2s;
}

.nav-mobile-links a:hover {
  color: white;
  padding-left: 8px;
}

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.nav-mobile-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .65);
  font-size: .95rem;
  text-decoration: none;
  padding: 14px 18px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  transition: background .2s;
}

.nav-mobile-phone:hover {
  background: rgba(255, 255, 255, .10);
}

.nav-mobile-phone svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.nav-mobile-demo {
  display: block;
  text-align: center;
  background: var(--accent);
  color: white;
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.nav-mobile-demo:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* ─── NAV HEIGHT FIX ON MOBILE ───────────────────────────── */
@media (max-width: 768px) {
  .nav {
    height: auto;
    min-height: 64px;
    padding: 10px 5%;
    flex-wrap: nowrap;
    gap: 0;
  }

  .top-strip-container {
    display: none;
  }

  .nav-links {
    display: none;
  }
  .nav-mobile-drawer .nav-links{
    display: block;
  }

  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-mobile-drawer {
    display: flex;
  }

  .header-logo img {
    height: 34px;
  }

  /* ─── HERO ──────────────────────────────────────────────── */
  .hero {
    padding: 90px 5% 50px;
    min-height: auto;
  }

  .hero-inner {
    flex-direction: column;
    gap: 32px;
  }

  .hero-content {
    max-width: 100%;
    flex: none;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
    letter-spacing: -.5px;
  }

  .hero-sub {
    font-size: .95rem;
  }

  .hero-chips {
    gap: 8px;
  }

  .hero-chip {
    font-size: .85rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }

  .btn-accent,
  .btn-ghost {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .hero-video-wrap {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  /* ─── TRUST BAR ─────────────────────────────────────────── */
  .trust-lbl {
    font-size: .68rem;
    padding: 0 12px;
  }

  .trust-pills {
    gap: 6px;
  }

  .t-pill {
    font-size: .68rem;
    padding: 4px 12px;
  }

  /* ─── SECTIONS ──────────────────────────────────────────── */
  .section {
    padding: 60px 5%;
  }
  .sec-audience{
    padding-top: 40px;
  }

  .sh2 {
    font-size: clamp(1.4rem, 5vw, 1.9rem);
  }


  .ssub {
    font-size: .93rem;
    margin-bottom: 32px;
  }

  /* ─── PLATFORM ──────────────────────────────────────────── */
  .plat-header {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }

  .plat-switcher {
    width: 100%;
    justify-content: stretch;
  }

  .plat-btn {
    flex: 1;
    justify-content: center;
    padding: 10px 14px;
    font-size: .82rem;
  }

  .feat-grid,
  #plat-communications .feat-grid,
  #plat-connectivity .feat-grid {
    grid-template-columns: 1fr;
  }

  .comm-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px;
    gap: 16px;
  }

  .plat-intro {
    flex-direction: column;
    gap: 12px;
  }

  /* ─── EASY SETUP ────────────────────────────────────────── */
  .ease-flow {
    flex-direction: column;
    gap: 20px;
  }

  .ease-flow-step {
    flex: none;
    width: 100%;
    padding: 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .ease-flow-num {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .ease-flow-step>div {
    flex: 1;
  }

  .ease-flow-arrow {
    display: none;
  }

  .ease-phase-label {
    font-size: .66rem !important;
  }

  /* ─── AUDIENCE / TABS ───────────────────────────────────── */
  .audience-header {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .audience-eco-wrap {
    display: none;
    /* hide the SVG diagram on mobile to save space */
  }

  .tabs-nav {
    width: 100%;
    justify-content: stretch;
  }

  .tab-btn {
    flex: 1;
    padding: 8px 5px;
    font-size: .78rem;
    text-align: center;
  }

  .tab-panel.active {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tab-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tab-callout {
    flex-direction: column;
    padding: 22px 20px;
    gap: 16px;
  }

  .tc-photo {
    width: 100%;
    flex-basis: auto;
    aspect-ratio: 16/8;
  }

  .tc-photo-description {
    flex-basis: auto;
    width: 100%;
  }

  .tc-stat-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tc-stat {
    padding: 12px 14px;
  }

  .tc-val {
    font-size: 1.3rem;
  }

  /* ─── LEDGER STEPPER ────────────────────────────────────── */
  .ledger-h-thread {
    display: none;
  }

  .ledger-h-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    justify-content: flex-start;
  }

  .ledger-h-node {
    flex: none;
    min-width: 0;
    width: 100%;
  }

  .ledger-h-num {
    width: 38px;
    height: 38px;
    font-size: .82rem;
  }

  .ledger-h-label {
    font-size: .65rem;
    max-width: 80px;
  }

  .ledger-h-panel {
    flex-direction: column;
    padding: 22px 20px;
    gap: 14px;
  }

  /* ─── EDI / CONNECTIVITY ────────────────────────────────── */
  .edi-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .edi-header-visual {
    display: none;
  }

  .edi-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .edi-stats {
    grid-template-columns: 1fr 1fr;
  }

  .edi-sv {
    font-size: 1.35rem;
  }

  /* ─── RESULTS ───────────────────────────────────────────── */
  .results-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rc {
    padding: 24px 22px;
  }

  .rc-num {
    font-size: 1.7rem;
  }

  /* ─── FAQ ───────────────────────────────────────────────── */
  .faq-wrap {
    max-width: 100%;
  }

  .faq-section-head {
    max-width: 100%;
  }

  .faq-q {
    font-size: .88rem;
  }

  .faq-ai {
    font-size: .83rem;
  }

  /* ─── CTA ───────────────────────────────────────────────── */
  .sec-cta {
    padding: 64px 5%;
  }

  .sec-cta h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .sec-cta p {
    font-size: .93rem;
    margin-bottom: 32px;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .cta-phone {
    justify-content: center;
  }

  .cta-or {
    text-align: center;
  }

  .sec-cta .btn-accent {
    justify-content: center;
  }

  /* ─── FOOTER ────────────────────────────────────────────── */
  .footer {
    padding: 48px 5% 28px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* ─── DEMO MODAL ────────────────────────────────────────── */
  .demo-modal {
    padding: 32px 20px 28px;
    border-radius: 18px;
  }

  .demo-row {
    grid-template-columns: 1fr;
  }
}

/* ─── EXTRA SMALL (≤ 400px) ─────────────────────────────── */
@media (max-width: 400px) {
  .nav {
    padding: 10px 4%;
  }

  .hero {
    padding: 80px 4% 40px;
  }

  .section {
    padding: 48px 4%;
  }

  .sec-cta {
    padding: 52px 4%;
  }

  .footer {
    padding: 40px 4% 24px;
  }

  .hero h1 {
    font-size: 1.65rem;
  }

  .sh2 {
    font-size: 1.35rem;
  }

  .plat-switcher {
    flex-direction: column;
    gap: 4px;
  }

  .plat-btn {
    width: 100%;
  }

  .ledger-h-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .ledger-h-num {
    width: 34px;
    height: 34px;
    font-size: .76rem;
  }

  .ledger-h-label {
    font-size: .58rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .edi-stats {
    grid-template-columns: 1fr;
  }

  .tabs-nav {
    flex-direction: column;
    gap: 4px;
  }

  .tab-btn {
    text-align: center;
  }
}

/* ─── TABLET (769px – 1023px) ────────────────────────────── */
@media (min-width: 769px) and (max-width: 1023px) {
  .nav {
    min-height: 74px;
    height: auto;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: .80rem;
  }

  .nav-demo {
    padding: 8px 16px;
    font-size: .80rem;
  }

  .hero {
    padding: 100px 5% 56px;
  }

  .hero-inner {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .hero-content {
    flex: 1 1 340px;
    max-width: 50%;
  }

  .hero-video-wrap {
    flex: 1 1 340px;
    max-width: 50%;
  }

  .feat-grid,
  #plat-communications .feat-grid,
  #plat-connectivity .feat-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .tab-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 28px;
  }

}

/* ─── CUSTOMERS / SECTORS ─────────────────────────────────── */
.sec-sectors {
  background: var(--off-white);
}

.sec-sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

section#customers .ssub {
    margin-bottom: 15px;
}

.sector-card {
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sec-c, var(--accent)) 0%, transparent 90%);
}

.sector-card.s1 {
  --sec-c: #24447f;
}

.sector-card.s2 {
  --sec-c: #DD7513;
}

.sector-card.s3 {
  --sec-c: #10b981;
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(24, 47, 90, .10);
  border-color: transparent;
}

.sector-ico {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08), inset 0 1px 0 rgba(255, 255, 255, .30);
}

.sector-card.s1 .sector-ico {
  background: linear-gradient(135deg, #24447f, #2d559e);
}

.sector-card.s2 .sector-ico {
  background: linear-gradient(135deg, #DD7513, #f08b25);
}

.sector-card.s3 .sector-ico {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.sector-ico svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sector-eyebrow {
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--sec-c, var(--accent));
  margin-bottom: 6px;
}

.sector-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.4px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.sector-body {
  font-size: .92rem;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 20px;
}

.sector-list {
  padding-top: 18px;
  border-top: 1px solid var(--gray-light);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sector-pill {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 600;
  color: var(--text-light);
  transition: background .25s, color .25s, border-color .25s;
}

.sector-card:hover .sector-pill {
  background: white;
  border-color: transparent;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
}

.sector-callout {
  font-size: .75rem;
  color: var(--gray-mid);
  font-style: italic;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(0, 0, 0, .06);
}


.sec-results {
  background: var(--off-white);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rc {
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}

.rc:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.rc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}

.rc-lbl {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--primary);
  background: var(--gray-light);
  padding: 3px 9px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 14px;
}

.rc-scope {
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: 22px;
  line-height: 1.55;
}

.rc-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rc-num {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1;
}

.rc-num em {
  color: var(--accent);
  font-style: normal;
}

.rc-desc {
  font-size: .76rem;
  color: var(--text-light);
  margin-top: 3px;
}

.rc-sep {
  border: none;
  border-top: 1px solid var(--gray-light);
}

/* ─── CAPABILITIES (blue block) ───────────────────────────── */
.sec-edi {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.sec-edi::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(221, 117, 19, .10), transparent 42%),
    radial-gradient(circle at 82% 78%, rgba(58, 134, 255, .10), transparent 42%);
}

.sec-edi .si {
  position: relative;
  z-index: 1;
}

.sec-edi .eyebrow {
  color: var(--accent-light);
}

.sec-edi .sh2 {
  color: white;
}

.sec-edi .sh2 em {
  color: var(--accent-light);
}

.sec-edi .ssub {
  color: rgba(255, 255, 255, .64);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cap-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.cap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cap-c, var(--accent)), transparent 80%);
}

.cap-card::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cap-c, var(--accent)) 0%, transparent 70%);
  opacity: .08;
  top: -80px;
  right: -80px;
  pointer-events: none;
}

.cap-card.c1 {
  --cap-c: #DD7513;
}

.cap-card.c2 {
  --cap-c: #3A86FF;
}

.cap-card.c3 {
  --cap-c: #10b981;
}

.cap-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .18);
}

.cap-ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .20), inset 0 1px 0 rgba(255, 255, 255, .30);
}

.cap-card.c1 .cap-ico {
  background: linear-gradient(135deg, #DD7513, #f08b25);
}

.cap-card.c2 .cap-ico {
  background: linear-gradient(135deg, #3A86FF, #60a5fa);
}

.cap-card.c3 .cap-ico {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.cap-ico svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cap-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .30);
}

.cap-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  letter-spacing: -.3px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.cap-body {
  font-size: .92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 22px;
}

.cap-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.cap-pill {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .78);
  letter-spacing: .01em;
}

.cap-card:hover .cap-pill {
  background: rgba(255, 255, 255, .12);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE ADDITIONS & FIXES
   ═══════════════════════════════════════════════════════════ */

/* ─── MOBILE DRAWER — 2-action only layout ─────────────── */
.nav-mobile-drawer {
  padding: 100px 32px 48px;
  justify-content: space-between;
}

.nav-mobile-actions {
  margin-top: 0;
}

.nav-mobile-phone {
  font-size: 1.05rem;
  font-weight: 600;
}

/* ─── HERO PRODUCT MOCKUP — responsive ──────────────────── */
@media (max-width: 1024px) {
  .hero-product-wrap {
    max-width: 100%;
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-product-wrap {
    width: 100%;
    max-width: 100%;
  }

  .hero-product {
    font-size: 90%;
  }

  .hp-row {
    grid-template-columns: auto 1fr auto;
  }

  .hp-row-detail {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-product {
    font-size: 82%;
  }

  .hp-pillar-meta {
    display: none;
  }
}

/* ─── FEAT-GRID (platform cards) — responsive ───────────── */
@media (min-width: 769px) and (max-width: 1100px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .feat-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── SECTORS GRID — responsive ─────────────────────────── */
@media (max-width: 1024px) {
  .sec-sectors-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (min-width: 600px) and (max-width: 1024px) {
  .sec-sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 599px) {
  .sec-sectors-grid {
    grid-template-columns: 1fr;
  }

  .sector-card {
    padding: 24px 20px;
  }

  .sector-title {
    font-size: 1.15rem;
  }

  .sector-body {
    font-size: .85rem;
  }
}

/* ─── CAPABILITIES (cap-grid) — responsive ──────────────── */
@media (max-width: 1024px) {
  .cap-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (min-width: 600px) and (max-width: 1024px) {
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 599px) {
  .cap-grid {
    grid-template-columns: 1fr;
  }

  .cap-card {
    padding: 24px 20px;
  }

  .cap-title {
    font-size: 1.05rem;
  }

  .cap-body {
    font-size: .85rem;
  }
}

/* ─── RESULTS GRID ───────────────────────────────────────── */
@media (max-width: 600px) {
  .results-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ─── EASE FLOW — compact on tablet ─────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .ease-flow {
    flex-wrap: wrap;
    gap: 20px;
  }

  .ease-flow-step {
    flex: 1 1 calc(33% - 10px);
    min-width: 140px;
  }

  .ease-flow-arrow {
    display: none;
  }
}

/* ─── PLAT HEADER — tablet ───────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .plat-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ─── AUDIENCE — tablet ─────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .audience-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .audience-eco-wrap {
    max-width: 300px;
    margin: 0 auto;
  }

  .tab-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 480px){
  .tab-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── FOOTER — tablet ───────────────────────────────────── */
@media (min-width: 600px) and (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
}

/* ─── LEDGER STEPPER — wider columns on mobile ──────────── */
@media (max-width: 480px) {
  .ledger-h-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .ledger-h-num {
    width: 36px;
    height: 36px;
    font-size: .78rem;
  }

  .ledger-h-label {
    font-size: .60rem;
    max-width: 70px;
  }
}

/* ─── SECTION PADDING — tablet ──────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .section {
    padding: 72px 5%;
  }
}

/* ─── HERO PRODUCT — hide on very small screens ────────── */
@media (max-width: 420px) {
  .hp-float {
    display: none;
  }
}

/* ─── TAB CALLOUT — fix on tablet ───────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .tab-callout {
    flex-direction: column;
    gap: 18px;
  }

  .tc-photo {
    width: 100%;
    flex-basis: auto;
    aspect-ratio: 16/7;
    max-height: 220px;
  }

  .tc-photo-description {
    flex-basis: auto;
    width: 100%;
  }
}

/* ─── PLAT INTRO — tablet ───────────────────────────────── */
@media (max-width: 1024px) {
  .plat-intro {
    flex-direction: column;
    gap: 12px;
  }
}

/* ─── COMM CARD — tablet ────────────────────────────────── */
@media (max-width: 900px) {
  .comm-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px;
    gap: 14px;
  }
}

/* ─── MOBILE DRAWER SIMPLIFIED ──────────────────────────── */
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}