/* ─── DESIGN TOKENS ─── */
:root {
  --ink: #0A1628;
  --ink2: #1C2E48;
  --paper: #FFFFFF;
  --paper2: #F5F6FA;
  --paper3: #ECEEF5;
  --red: #ff3d00;
  --red2: #e53600;
  --red-gl: rgba(255, 61, 0, 0.07);
  --teal: #00C9A7;
  --teal-gl: rgba(0, 201, 167, 0.08);
  --muted: #7B8CA0;
  --border: #DDE1EB;
  --ok: #10B981;
  --warn: #F59E0B;
  --text2: #4a5568;

  --display: 'Poppins', sans-serif;
  --body: 'Poppins', sans-serif;
  --mono: 'Poppins', monospace;

  --r4: 4px;
  --r8: 8px;
  --r12: 12px;
  --r16: 16px;
  --rpill: 999px;
  --s1: 0 1px 4px rgba(10, 22, 40, .06);
  --s2: 0 4px 20px rgba(10, 22, 40, .08);
  --s3: 0 12px 48px rgba(10, 22, 40, .10);
  --s4: 0 24px 80px rgba(10, 22, 40, .12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: #000000;
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

button {
  cursor: pointer;
  font-family: var(--body);
}

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

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--paper2);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 2px;
}

/* ─── UTILITY ─── */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.wrap-sm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}

.sec {
  padding: 100px 0;
}

.sec-sm {
  padding: 72px 0;
}

.label {
  font-family: poppins;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: poppins;
  font-weight: 600;
  border-radius: var(--r8);
  border: none;
  transition: all .22s cubic-bezier(.4, 0, .2, 1);
  white-space: nowrap;
  cursor: pointer;
}

.btn p {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 61, 0, .3);
}

.btn-xl {
  font-size: 17px;
  padding: 18px 36px;
}

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

.btn-md {
  font-size: 13px;
  padding: 12px 24px;
}

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 24px rgba(255, 61, 0, .35);
}

.btn-red:hover {
  background: var(--red2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 61, 0, .45);
}

.btn-outline {
  background: transparent;
  color: #000000;
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: #000000;
  transform: translateY(-1px);
  box-shadow: var(--s2);
}

.btn-ghost-w {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .14);
}

.btn-ghost-w:hover {
  background: rgba(255, 255, 255, .15);
  transform: translateY(-1px);
}

.credit {
  font-size: 10px;
  color: #fff1bb;
}

.btn-p {
  background: #000000;
  color: #fff;
}

.btn-p:hover {
  background: #e53600;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 61, 0, .4);
}

.btn-s {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border);
  box-shadow: var(--s1);
}

.btn-s:hover {
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--s2);
}

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

.btn-n:hover {
  background: var(--navy2);
  transform: translateY(-1px);
}

/* ─── NAV ─── */
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  width: 112px;
  height: 30px;
  object-fit: contain;
}

.nav-logo-box {
  width: 34px;
  height: 34px;
  background: #000000;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-box span {
  font-family: poppins;
  font-weight: 600;
  font-size: 17px;
  color: var(--red);
}

.nav-wordmark {
  font-family: poppins;
  font-weight: 600;
  font-size: 19px;
  color: #000000;
}

.nav-wordmark em {
  color: var(--red);
  font-style: normal;
}

.nav-crumb {
  font-family: poppins;
  font-size: 11px;
  color: #606060;
  background: var(--paper2);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: var(--rpill);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-crumb .cur {
  color: var(--red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ANNOUNCE */
.ann {
  background: #000000;
  padding: 10px 0;
  text-align: center;
}

.ann-in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
}

.ann-in span {
  color: rgba(255, 255, 255, .5);
}

.ann-in strong {
  color: #fff;
}

.ann-badge {
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  font-family: poppins;
  padding: 3px 10px;
  border-radius: var(--rpill);
}

.ann-link {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--s1);
}

.nav-in {
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  width: 112px;
  height: 30px;
  object-fit: contain;
}

.nav-lm {
  width: 45px;
  height: 45px;
  background: #f7f7f7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-lm img {
  width: 70%;
}

.nav-lm span {
  font-family: poppins;
  font-weight: 600;
  font-size: 16px;
  color: var(--red);
}

.nav-lt {
  font-family: poppins;
  font-weight: 400;
  font-size: 23px;
  color: var(--navy);
}

.nav-lt em {
  color: var(--red);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a,
.nav-db-btn {
  font-family: poppins;
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  padding: 7px 14px;
  border-radius: 6px;
  transition: all .2s;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a:hover,
.nav-db-btn:hover {
  color: #ff3d00;
  background: #fff7f5;
}

.nav-dd {
  position: relative;
}

.nav-dd svg {
  transition: transform .2s;
}

.nav-dd:hover .nav-db-btn svg {
  transform: rotate(180deg);
}

.nav-mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 261px;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r12);
  box-shadow: var(--s4);
  padding: 8px;
  width: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all .2s;
}

.nav-mega a {
  margin: 5px 0;
  border-bottom: 1px solid #f1f1f1;
}

.nav-mega a:last-child {
  border-bottom: none;
}

.nav-dd:hover .nav-mega {
  opacity: 1;
  visibility: visible;
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  transition: background .15s;
}

.mega-item:hover {
  background: var(--bg2);
}

.mega-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.mega-title {
  font-family: poppins;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.mega-desc {
  font-size: 12px;
  color: #606060;
  line-height: 1.4;
  font-weight: 400;
}

.nav-r {
  display: flex;
  align-items: center;
  gap: 10px;
}




/* ─── HERO — Full-bleed split ─── */
.hero-outer {
  background: #ff3d0008;
  position: relative;
  overflow: hidden;
}

/* Dot-grid texture */
.hero-outer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-inner {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}
.min-text{
  font-size:28px;
  color:var(--red);
}

/* Left column */
.hero-left {
  padding-right: 60px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: poppins;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}

.hero-kicker-line {
  width: 28px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.hero-h1 {
  font-family: poppins;
  font-weight: 600;
  font-size: 44px;
  line-height: 1.2;
  color: #000000;
}

.hero-h1 .slash-word::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  opacity: .4;
}

.hero-desc {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.75;
  max-width: 520px;
  margin: 20px 0 36px;
  animation: fu .5s .2s ease both;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 28px;
}

.ht-stat {
  text-align: center;
}

.ht-stat .num{
  font-family:poppins;
  font-weight:600;
  font-size:26px;
  color:#5a5568;
  line-height:1;
  min-height:32px; /* makes all align evenly */
  display:flex;
  align-items:center;
  justify-content:center;
}

.ht-stat .lbl {
  font-family: poppins;
  font-size: 10px;
  color: #5a5568;
  text-transform: uppercase;
  margin-top: 3px;
}

.ht-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .1);
}

/* Right column — terminal widget */
.hero-right {
  position: relative;
}

.terminal {
  background: #0D1E35;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 14px;
  box-shadow: var(--s4), 0 0 0 1px rgba(255, 61, 0, .08);
  overflow: hidden;
}

.terminal-bar {
  background: #0A1628;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.t-title {
  font-family: poppins;
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
  margin-left: 6px;
  flex: 1;
}

.t-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: poppins;
  font-size: 10px;
  color: var(--teal);
}

.t-live-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-t 1.8s infinite;
}

@keyframes pulse-t {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(0, 201, 167, .4);
  }

  50% {
    opacity: .7;
    box-shadow: 0 0 0 5px rgba(0, 201, 167, 0);
  }
}

.t-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Agent rows */
.agent-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 10px;
  padding: 12px 14px;
  transition: background .2s;
}

.agent-row:hover {
  background: rgba(255, 255, 255, .07);
}

.agent-ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.agent-info {
  flex: 1;
  min-width: 0;
}

.agent-name {
  font-family: poppins;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .88);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.agent-detail {
  font-family: poppins;
  font-size: 10px;
  color: rgba(255, 255, 255, .35);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Progress bar */
.agent-prog {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-end;
}

.prog-bar-outer {
  width: 72px;
  height: 4px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
  overflow: hidden;
}

.prog-bar-inner {
  height: 100%;
  border-radius: 2px;
}

.prog-pct {
  font-family: poppins;
  font-size: 9px;
  color: rgba(255, 255, 255, .35);
}

.badge {
  font-family: poppins;
  font-size: 9px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--rpill);
  flex-shrink: 0;
}

.badge-run {
  background: rgba(16, 185, 129, .15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, .25);
}

.badge-done {
  background: rgba(0, 201, 167, .12);
  color: var(--teal);
  border: 1px solid rgba(0, 201, 167, .22);
}

.badge-q {
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .35);
  border: 1px solid rgba(255, 255, 255, .1);
}

/* Terminal footer metrics */
.t-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.t-metric {
  padding: 14px 12px;
  text-align: center;
}

.t-metric:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .07);
}

.t-metric-val {
  font-family: poppins;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

.t-metric-lbl {
  font-family: poppins;
  font-size: 9px;
  color: rgba(255, 255, 255, .3);
  text-transform: uppercase;
  margin-top: 2px;
}

/* floating badge top-right of terminal */
.terminal-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--red);
  color: #fff;
  font-family: poppins;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--rpill);
  box-shadow: 0 4px 14px rgba(255, 61, 0, .4);
}

/* ─── MARQUEE STRIP ─── */
.marquee-strip {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: mq 22s linear infinite;
  width: max-content;
}

@keyframes mq {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, .07);
  white-space: nowrap;
}

.marquee-item span {
  font-family: poppins;
  font-size: 12px;
  font-weight: 500;
  color: #fff9f7;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  opacity: .6;
}

/* LOGO BAR */
.lbar {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.lbar-lbl {
  font-family: poppins;
  font-size: 11px;
  color: #0a1628;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 28px;
}

.lrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lchip {
  font-family: poppins;
  font-size: 13px;
  font-weight: 600;
  color: #0a1628;
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  transition: all .2s;
  cursor: default;
}

.lchip:hover {
  color: var(--text2);
  border-color: var(--text2);
}

/* ─── SECTION: WHAT IS AGENTIC AI (GEO) ─── */
.definition-section {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}

.def-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.def-label {
  font-family: poppins;
  font-size: 11px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.def-label::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.def-h2 {
  font-family: poppins;
  font-weight: 600;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.06;
  color: #000000;
}

.def-h2 em {
  color: var(--red);
  font-style: normal;
}

.def-body {
  font-size: 16px;
  color: #606060;
  line-height: 1.8;
  margin-top: 20px;
}

.def-body strong {
  color: #000000;
}

.def-aside {
  background: var(--paper2);
  border: 1.5px solid var(--border);
  border-radius: var(--r16);
  padding: 36px;
  margin-top: 8px;
}

.def-aside-title {
  font-family: poppins;
  font-weight: 800;
  font-size: 16px;
  color: #000000;
  margin-bottom: 20px;
}

.vs-table {
  width: 100%;
  border-collapse: collapse;
}

.vs-table th {
  font-family: poppins;
  font-size: 10px;
  text-transform: uppercase;
  color: #606060;
  padding: 0 0 12px;
  text-align: left;
}

.vs-table th:last-child {
  color: var(--red);
}

.vs-table td {
  font-size: 13px;
  color: #000000;
  padding: 9px 0;
  border-top: 1px solid var(--border);
  vertical-align: top;
}

.vs-table td:first-child {
  color: #606060;
  padding-right: 16px;
  width: 34%;
}

.vs-table td.bad {
  color: #EF4444;
}

.vs-table td.good {
  color: var(--ok);
  font-weight: 500;
}

/* ─── SECTION: HOW IT WORKS — Horizontal stepper ─── */
.hiw-section {
  background: var(--paper2);
  border-bottom: 1px solid var(--border);
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  position: relative;
  list-style: none;
}

/* Connecting line */
.hiw-steps::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--red), var(--border));
  z-index: 0;
}

.hiw-step {
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hiw-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: poppins;
  font-weight: 800;
  font-size: 16px;
  color: #000000;
  margin-bottom: 24px;
  transition: all .3s;
}

.hiw-step:hover .hiw-step-num {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(255, 61, 0, .35);
}

.hiw-step-tag {
  font-family: poppins;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  font-weight: 600;
}

.hiw-step-title {
  font-family: poppins;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 8px;
}

.hiw-step-desc {
  font-size: 13px;
  color: #606060;
  line-height: 1.65;
}

/* ─── SECTION: SPLIT FEATURE — Admin Hub ─── */
.split-section {
  background: var(--paper);
  overflow: hidden;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 1.5px solid var(--border);
  border-radius: var(--r16);
  overflow: hidden;
}

.split-copy {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-visual {
  background: #000000;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.split-visual::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 61, 0, .15) 0%, transparent 70%);
  pointer-events: none;
}

.split-section-tag {
  margin-bottom: 16px;
}

.split-h3 {
  font-family: poppins;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 36px);
  color: #000000;
  margin-bottom: 12px;
  line-height: 1.1;
}

.split-h3 em {
  color: var(--red);
  font-style: normal;
}

.split-desc {
  font-size: 15px;
  color: #606060;
  line-height: 1.75;
  margin-bottom: 28px;
}

.split-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.split-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #000000;
  line-height: 1.5;
}

.split-feat-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--red-gl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.split-feat strong {
  display: block;
  color: #000000;
  font-weight: 600;
}

.split-feat span {
  color: #606060;
  font-size: 13px;
}

/* Dark panel cards */
.dark-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: 16px 18px;
  position: relative;
  z-index: 1;
}

.dark-card-title {
  font-family: poppins;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 5px;
}

.dark-card-sub {
  font-family: poppins;
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
}

.dark-card-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: poppins;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--rpill);
}

.dtag-run {
  background: rgba(16, 185, 129, .15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, .2);
}

.dtag-done {
  background: rgba(0, 201, 167, .12);
  color: var(--teal);
  border: 1px solid rgba(0, 201, 167, .2);
}

.dark-card-bar {
  margin-top: 8px;
}

.dark-bar-outer {
  height: 3px;
  background: rgba(255, 255, 255, .08);
  border-radius: 2px;
  overflow: hidden;
}

.dark-bar-inner {
  height: 100%;
  border-radius: 2px;
}

/* ─── SECTION: GOVERNANCE GRID ─── */
.gov-section {
  background: var(--paper2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r16);
  overflow: hidden;
  margin-top: 52px;
  border: 1px solid var(--border);
}

.gov-card {
  background: var(--paper);
  padding: 36px 32px;
  transition: background .2s;
}

.gov-card:hover {
  background: var(--paper2);
}

.gov-icon {
  font-size: 28px;
  margin-bottom: 18px;
  display: block;
}

.gov-title {
  font-family: poppins;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  margin-bottom: 8px;
}

.gov-desc {
  font-size: 13px;
  color: #606060;
  line-height: 1.65;
}

.cert-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cert-pill {
  font-family: poppins;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-gl);
  border: 1px solid rgba(0, 201, 167, .2);
  padding: 7px 18px;
  border-radius: var(--rpill);
}

/* ─── SECTION: AUDIENCE — 2×4 editorial grid ─── */
.audience-section {
  background: var(--paper);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--r16);
  overflow: hidden;
  margin-top: 52px;
}

.aud-card {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .2s;
  cursor: default;
}

.aud-card:hover {
  background: var(--paper2);
}

.aud-card:nth-child(4),
.aud-card:nth-child(8) {
  border-right: none;
}

.aud-card:nth-child(5),
.aud-card:nth-child(6),
.aud-card:nth-child(7),
.aud-card:nth-child(8) {
  border-bottom: none;
}

.aud-ico {
  font-size: 26px;
  margin-bottom: 14px;
  display: block;
}

.aud-role {
  font-family: poppins;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.aud-title {
  font-family: poppins;
  font-weight: 600;
  font-size: 15px;
  color: #000000;
  margin-bottom: 8px;
}

.aud-desc {
  font-size: 13px;
  color: #606060;
  line-height: 1.6;
}

/* ─── SECTION: ROI NUMBERS ─── */
.roi-section {
  background: #000000;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.roi-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.roi-inner {
  position: relative;
  z-index: 2;
}

.roi-header {
  max-width: 65%;
  margin-bottom: 52px;
}

.roi-h2 {
  font-family: poppins;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.06;
  color: #fff;
  margin-bottom: 14px;
}

.roi-h2 em {
  color: var(--red);
  font-style: normal;
}

.roi-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--r16);
    overflow: hidden;
}

.roi-card {
  padding: 36px 28px;
  border-right: 1px solid rgba(255, 255, 255, .09);
  text-align: left;
}

.roi-card:last-child {
  border-right: none;
}

.roi-num {
  font-family: poppins;
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.roi-label {
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.5;
}

.roi-label strong {
  color: rgba(255, 255, 255, .8);
  font-weight: 500;
}

/* ─── SECTION: COMPARE TABLE ─── */
.compare-section {
  background: var(--paper2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cmp-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
  border: 1.5px solid var(--border);
  border-radius: var(--r12);
  overflow: hidden;
  box-shadow: var(--s2);
}

.cmp-table th {
  padding: 16px 20px;
  font-family: poppins;
  font-weight: 600;
  font-size: 14px;
}

.cmp-table th:first-child {
  background: var(--paper3);
  color: #000000;
  text-align: left;
  width: 30%;
}

.cmp-table th:nth-child(2) {
  background: var(--paper3);
  color: #606060;
  text-align: center;
}

.cmp-table th:nth-child(3) {
  background: #000000;
  color: #fff;
  text-align: center;
}

.cmp-table td {
  padding: 13px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.cmp-table td:first-child {
  font-weight: 600;
  color: #000000;
  background: var(--paper);
}

.cmp-table td:nth-child(2) {
  color: #606060;
  text-align: center;
  background: var(--paper);
}

.cmp-table td:nth-child(3) {
  color: #000000;
  font-weight: 500;
  text-align: center;
  background: #F0FDF9;
}

.cmp-table tr:last-child td {
  border-bottom: none;
}

/* ── PRICING SECTION ── */
.price-sec {
    background: var(--bg2);
    border-top: 1px solid var(--border);
}

/* ── CONTROLS ROW ── */
.price-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 36px 0 44px;
    flex-wrap: wrap;
}

/* Currency selector */
.currency-selector {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--rpill);
    padding: 4px;
    box-shadow: var(--s1);
}

.curr-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: var(--rpill);
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: poppins;
    font-size: 13px;
    font-weight: 600;
    color: var(--text2);
    transition: all .2s;
    white-space: nowrap;
}

.curr-btn .flag {
    font-size: 16px;
    line-height: 1;
}

.curr-btn.active {
    background: #000000;
    color: #fff;
    box-shadow: var(--s1);
}

.curr-btn:not(.active):hover {
    background: var(--bg2);
    color: #000;
}

/* Billing toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ptl {
    font-family: poppins;
    font-size: 13px;
    color: var(--text2);
    font-weight: 500;
}

.ptl.active-label {
    color: #000;
    font-weight: 600;
}

.ptrack {
    width: 48px;
    height: 26px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--rpill);
    cursor: pointer;
    position: relative;
    transition: background .2s;
    flex-shrink: 0;
}

.ptrack.on {
    background: var(--red);
}

.pknob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform .2s;
    box-shadow: var(--s1);
}

.ptrack.on .pknob {
    transform: translateX(22px);
}

/* Divider */
.ctrl-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

/* ── PRICING GRID ── */
.price-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
    transition: opacity .25s ease;
}

.price-g.fading {
    opacity: 0;
}

.pcard {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r12);
    padding: 36px;
    position: relative;
    transition: all .25s;
}

.pcard:hover {
    box-shadow: var(--s3);
}

.pcard.feat {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(255, 61, 0, .06), var(--s3);
    transform: scale(1.03);
}

.ppop {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    font-family: poppins;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: var(--rpill);
    white-space: nowrap;
}

.ptier {
    font-family: poppins;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
    letter-spacing: .08em;
}

/* Price display */
.price-display {
    min-height: 68px;
    margin-bottom: 6px;
}

.pamt {
    font-family: poppins;
    font-weight: 800;
    font-size: 48px;
    color: #000000;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.pamt-symbol {
    font-size: 24px;
    font-weight: 700;
    margin-top: 6px;
    color: var(--text2);
}

.pamt-custom {
    font-family: poppins;
    font-weight: 800;
    font-size: 40px;
    color: #000000;
    line-height: 1;
    padding-top: 8px;
}

/* Description + period */
.pper {
    font-family: poppins;
    margin-bottom: 20px;
    line-height: 1.55;
}

.pper-desc {
    display: block;
    font-size: 13px;
    color: var(--text2);
    font-style: italic;
    margin-bottom: 5px;
}

.pper-period {
    display: block;
    font-size: 11px;
    color: var(--muted);
}

/* Skeleton */
.price-skeleton {
    animation: shimmer 1.5s infinite;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    border-radius: 6px;
    height: 48px;
    width: 140px;
    margin-bottom: 6px;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Features */
.pfeats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.pfeats li {
    font-size: 14px;
    color: var(--text2);
    display: flex;
    align-items: flex-start;
    gap: 9px;
    line-height: 1.4;
}

.pfeats li::before {
    content: '✓';
    color: var(--success);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 1px;
}

.pfeats li.feat-hidden {
    display: none;
}

/* Show more toggle */
.feat-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: poppins;
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px 0;
    margin-bottom: 22px;
    transition: opacity .15s;
    line-height: 1;
}

.feat-toggle:hover {
    opacity: .7;
}

.feat-toggle svg {
    flex-shrink: 0;
    transition: transform .2s;
}

.feat-toggle.expanded svg {
    transform: rotate(180deg);
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .price-g {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pcard.feat {
        transform: none;
    }

    .price-controls {
        gap: 16px;
    }
}

@media(max-width:640px) {
    .curr-btn {
        padding: 7px 12px;
        font-size: 12px;
    }

    .ctrl-divider {
        display: none;
    }

    .price-controls {
        flex-direction: column;
        gap: 14px;
    }
}


/* ─── SECTION: FAQ ─── */
.faq-section {
  background: var(--paper2);
  border-top: 1px solid var(--border);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 44px;
}

.faq-item {
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--r12);
  padding: 24px;
  cursor: pointer;
  transition: all .2s;
}

.faq-item:hover {
  border-color: var(--red);
  box-shadow: var(--s2);
}

.faq-q {
  font-family: poppins;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.faq-icon {
  color: var(--red);
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.faq-a {
  font-size: 14px;
  color: #606060;
  line-height: 1.7;
  margin-top: 12px;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

/* ─── SECTION: CTA ─── */
.cta-section {
  background: #000000;
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 61, 0, .12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
}

.cta-kicker {
  font-family: poppins;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.cta-h2 {
  font-family: poppins;
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: .98;
  color: #fff;
  margin-bottom: 18px;
}

.cta-h2 em {
  color: var(--red);
  font-style: normal;
}

.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 16px;
}

.cta-input {
  flex: 1;
  font-family: var(--body);
  font-size: 15px;
  color: #000000;
  background: var(--paper);
  border: none;
  border-radius: var(--r8);
  padding: 15px 20px;
  outline: none;
}

.cta-input::placeholder {
  color: #606060;
}

.cta-btn {
  font-family: poppins;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  background: var(--red);
  border: none;
  padding: 15px 26px;
  border-radius: var(--r8);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(255, 61, 0, .4);
  transition: all .2s;
}

.cta-btn:hover {
  background: var(--red2);
  transform: translateY(-1px);
}

.cta-fine {
  font-family: poppins;
  font-size: 11px;
  color: rgba(255, 255, 255, .25);
}

.cta-other {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, .35);
}

.cta-other a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* FOOTER */
footer {
  background: #ffeee8;
  padding: 60px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.footer-logo {
  width: 112px;
  height: 30px;
  object-fit: contain;
}

.foot-g {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 20px;
  margin-bottom: 48px;
}

.foot-brand p {
  font-size: 14px;
  color: #000000;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}

.foot-h {
  font-family: poppins;
  font-size: 11px;
  text-transform: uppercase;
  color: #ff3d00;
  margin-bottom: 16px;
  font-weight: 600;
}

.foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-left: 0px;
}

.foot-links a {
  font-size: 14px;
  color: #000000;
  transition: color .2s;
}

.foot-links a:hover {
  color: #ff3d00;
}

.foot-offices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.off-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #000000;
  line-height: 1.5;
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.foot-copy {
  font-family: poppins;
  font-size: 12px;
  color: #000000;
}

.foot-certs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cert-c {
  font-family: poppins;
  font-size: 11px;
  color: #000000;
  border: 1px solid #ccc;
  padding: 4px 10px;
  border-radius: 4px;
}

.foot-soc {
  display: flex;
  gap: 8px;
}

.soc-b {
  padding: 6px 15px;
  background: rgba(0, 0, 0, 0.6); /* darker */
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.soc-b:hover {
  background: #fff;
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

/* ─── country list ─── */

.country-dropdown {
  position: relative;
  width: 220px;
  font-family: poppins;
}

.selected {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ddd;
  padding: 10px;
  cursor: pointer;
  border-radius: 6px;
  background: #fff;
}

.selected img {
  width: 20px;
  height: 14px;
}

.options {
  display: none;
  position: absolute;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 5px;
  z-index: 10;
}

.options div {
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.options div:hover {
  background: #f5f5f5;
}

/* ─── RESPONSIVE ─── */
@media(max-width:1024px) {

  .wrap,
  .wrap-sm {
    padding: 0 40px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-left {
    padding-right: 0;
  }

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

  .hiw-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hiw-steps::before {
    display: none;
  }

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

  .split-visual {
    min-height: 280px;
  }

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

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

  .aud-card:nth-child(2n) {
    border-right: none;
  }

  .aud-card:nth-child(7),
  .aud-card:nth-child(8) {
    border-bottom: none;
  }

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

  .roi-card:nth-child(2) {
    border-right: none;
  }

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

  .price-card.feat {
    transform: none;
  }

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

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .cta-form {
    flex-direction: column;
  }

  .hero-trust-row {
    flex-wrap: wrap;
    gap: 18px;
  }
/* 
  nav .nav-links,
  .nav-crumb {
    display: none;
  } */
}
@media (max-width: 991px) {
   .aud-card:nth-child(5), .aud-card:nth-child(6), .aud-card:nth-child(7), .aud-card:nth-child(8) {
     border-bottom: 1px solid var(--border); 
}
}

@media(max-width:640px) {
  .hero-h1 {
    font-size: 42px;
  }

  .gov-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .aud-card {
    border-right: none !important;
  }

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

  .roi-card {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
  }

  .hiw-steps {
    grid-template-columns: 1fr;
  }

  .sec {
    padding: 64px 0;
  }
}


/*New CHnage Css */
@media (max-width: 767px) {
  .hero-right {
    width: 100%;
    position: relative;
  }

  .terminal {
    border-radius: 12px;
  }

  .terminal-bar {
    padding: 10px 14px;
    flex-wrap: wrap;
  }

  .t-title {
    font-size: 10px;
  }

  .t-body {
    padding: 12px;
    gap: 10px;
  }

  .agent-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
  }

  .agent-info {
    width: 100%;
  }

  .agent-name {
    font-size: 12px;
    white-space: normal;
  }

  .agent-detail {
    font-size: 10px;
    white-space: normal;
    line-height: 1.4;
  }

  .agent-prog {
    width: 100%;
    align-items: flex-start;
  }

  .prog-bar-outer {
    width: 100%;
  }

  .badge {
    align-self: flex-start;
    font-size: 10px;
  }

  .t-metrics {
    grid-template-columns: 1fr;
  }

  .t-metric {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    padding: 12px;
  }

  .t-metric:last-child {
    border-bottom: none;
  }

  .t-metric-val {
    font-size: 15px;
  }

  .terminal-badge {
    top: -12px;
    right: 12px;
    font-size: 9px;
    padding: 4px 10px;
  }
}

@media (max-width: 767px) {
  .compare-section .wrap {
    overflow: hidden;
  }

  .cmp-table {
    width: 100%;
    margin-top: 28px;
    border: none;
    box-shadow: none;
    border-collapse: separate;
    border-spacing: 0 16px;
  }

  .cmp-table thead {
    display: none;
  }

  .cmp-table,
  .cmp-table tbody,
  .cmp-table tr,
  .cmp-table td {
    display: block;
    width: 100%;
  }

  .cmp-table tr {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--s2);
  }

  .cmp-table td {
    display: block;
    text-align: left !important;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
  }

  .cmp-table td:last-child {
    border-bottom: none;
  }

  /* labels */
  .cmp-table td:nth-child(1)::before,
  .cmp-table td:nth-child(2)::before,
  .cmp-table td:nth-child(3)::before {
    display: block;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

  .cmp-table td:nth-child(1)::before {
    content: "Capability";
    color: #000;
  }

  .cmp-table td:nth-child(2)::before {
    content: "Other AI Platforms";
    color: var(--muted);
  }

  .cmp-table td:nth-child(3)::before {
    content: "✦ Meii Agentic AI";
    color: #000;
  }

  /* reset desktop backgrounds */
  .cmp-table td:first-child,
  .cmp-table td:nth-child(2),
  .cmp-table td:nth-child(3) {
    background: #fff;
  }
}
@media (max-width: 768px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 20px;
  }

  .hero-left {
    order: 1;
    width: 100%;
    padding-right: 0;
  }

  .hero-right {
    order: 2;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .cmp-table td {
    padding: 12px 14px;
    font-size: 12px;
  }

  .cmp-table td::before {
    font-size: 10px !important;
  }
  .btn-xl {
    font-size: 10px;
    padding: 15px 20px;
}
    .hero-trust-row {
        flex-wrap: wrap;
        gap: 9px;
    }
    .ht-stat .num {
        font-size: 24px;
    }
    .ht-stat .lbl {
    font-size: 8px;
}
  .hero-h1 {
        font-size: 31px;
    }
    .btn-xl {
    font-size: 15px;
    padding: 14px 10px;
}
.roi-header {
    max-width: 90%;
    margin-bottom: 20px;
}
.roi-card {
    padding: 12px 9px;
}
}
@media (max-width: 441px) {
  .def-aside-title {
    font-size: 13px;
}
.def-aside {
    padding: 11px;
}
.vs-table td {
    font-size: 12px;
}
.vs-table td:first-child {
    width: 30%;
}
}


/* Additional mobile adjustments */

@media (max-width: 400px) {
    .dark-card-tag {
    top: 2px;
    right: 8px;
    font-size: 8px;
    padding: 0px 2px;
}  
.split-copy {
    padding: 27px 20px;
}
    .hero-trust-row {
        flex-wrap: wrap;
      
    }
}

@media (max-width: 390px) {
    .hero-trust-row {
        flex-wrap: wrap;
        gap: 8px;
    }
        .ht-stat .num {
        font-size: 14px;
    }
    .dark-card-tag {

    top: 4px;
    right: 8px;
    font-size: 8px;
    padding: 0px 2px;

}  
.min-text{
    font-size:18px;
  }
}
@media (max-width: 330px) {
   .hero-trust-row {
        flex-wrap: wrap;
        gap: 3px;
    }
 
}

@media (max-width: 320px) {
  .cmp-table td {
    padding: 10px 12px;
    font-size: 11px;
  }
}
