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

html {
  scroll-behavior: smooth;
}

:root {
  --p: 'Poppins', sans-serif;
  --white: #ffffff;
  --off: #F8F9FC;
  --off2: #F0F2F8;
  --navy: #0A1628;
  --navy2: #162035;
  --red: #ff3d00;
  --red2: #e53600;
  --redg: rgba(255, 61, 0, .07);
  --teal: #00C9A7;
  --tealg: rgba(0, 201, 167, .07);
  --ink2: #3D4F66;
  --muted: #7B8EA8;
  --bdr: #DDE3EE;
  --ok: #10B981;
  --warn: #F59E0B;
  --purp: #7C3AED;
  --s1: 0 1px 4px rgba(10, 22, 40, .05);
  --s2: 0 4px 20px rgba(10, 22, 40, .07);
  --s3: 0 12px 44px rgba(10, 22, 40, .09);
  --s4: 0 24px 72px rgba(10, 22, 40, .11);
  --r6: 6px;
  --r10: 10px;
  --r14: 14px;
  --r20: 20px;
  --rpill: 999px;
}

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

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

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

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

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 44px;
}

.wrap-md {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 44px;
}

.sec {
  padding: 100px 0;
}

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--p);
  font-weight: 600;
  border-radius: var(--r10);
  border: none;
  transition: all .22s;
  white-space: nowrap;
  cursor: pointer;
}

.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-p {
  background: #000000;
  color: #fff;
}

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

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

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

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

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

.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 201, 167, .3);
}

.btn-teal:hover {
  background: #00b596;
  transform: translateY(-2px);
}

/* 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: 18px;
  color: var(--red);
}

.nav-lt {
  font-family: poppins;
  font-weight: 400;
  font-size: 23px;
  color: #000000;
}

.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: 18px;
  flex-shrink: 0;
}

.mega-title {
  font-family: poppins;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 3px;
}

.mega-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  font-weight: 400;
}

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

/* ── NAV ── */
/*.nav-outer { position:sticky; top:0; z-index:300; background:rgba(255,255,255,.95); backdrop-filter:blur(18px); border-bottom:1px solid var(--bdr); }
.nav-inner { max-width:1200px; margin:0 auto; padding:0 44px; height:64px; display:flex; align-items:center; justify-content:space-between; gap:20px; }
.nav-logo  { display:flex; align-items:center; gap:9px; }
.nav-logo-box { width:33px; height:33px; background:#000000; border-radius:9px; display:flex; align-items:center; justify-content:center; }
.nav-logo-box span { font-family:var(--p); font-weight:600; font-size:17px; color:var(--red); }
.nav-wordmark { font-family:var(--p); font-weight:600; font-size:19px; color:#000000; letter-spacing:-.03em; }
.nav-wordmark em { color:var(--red); font-style:normal; }
.nav-pill { display:flex; align-items:center; gap:6px; background:var(--off); border:1px solid var(--bdr); border-radius:var(--rpill); padding:5px 14px; }
.nav-pill span { font-family:var(--p); font-size:12px; font-weight:500; color:var(--muted); }
.nav-pill .cur { color:var(--red); font-weight:600; }
.nav-pill .sep { color:var(--bdr); }
.nav-right { display:flex; align-items:center; gap:10px; }*/

/* ── HERO ── */
/* Teal-to-white gradient wash background */
.hero-outer {
  background: linear-gradient(160deg, #EBF9F6 0%, #F5F7FC 45%, #FFFFFF 100%);
  border-bottom: 1px solid var(--bdr);
  padding: 88px 0 0;
  overflow: hidden;
  position: relative;
}

.hero-outer::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(0, 201, 167, .1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-outer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 61, 0, .05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pteal 2s infinite;
}
.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;
}
@keyframes pteal {

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

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

.hero-kicker-text {
  font-family: var(--p);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
}

.hero-h1 {
  font-family: var(--p);
  font-weight: 600;
  font-size: 50px;
  line-height: 1.0;
  letter-spacing: -.04em;
  color: #000000;
  margin-bottom: 22px;
}

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

.hero-desc {
  font-size: 17px;
  color: var(--ink2);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-desc strong {
  color: #000000;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

/* Horizontal trust pills */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--rpill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink2);
  box-shadow: var(--s1);
}

.trust-pill .ico {
  font-size: 13px;
}

/* ── CHAT PREVIEW WIDGET ── */
.chat-widget {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r20);
  box-shadow: var(--s4);
  overflow: hidden;
  position: relative;
  margin-bottom: -40px;
  /* bleeds into next section */
}

.chat-topbar {
  background: #000000;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #00a88b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.chat-agent-name {
  font-family: var(--p);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.chat-agent-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  font-family: var(--p);
}

.chat-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}

.chat-status-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pteal 1.6s infinite;
}

.chat-status-txt {
  font-size: 11px;
  color: var(--teal);
  font-weight: 600;
}

.chat-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--off);
}

/* Chat bubbles */
.bubble-user {
  align-self: flex-end;
  max-width: 82%;
  background: #000000;
  color: #fff;
  border-radius: var(--r14) var(--r14) 4px var(--r14);
  padding: 11px 16px;
  font-size: 13px;
  line-height: 1.5;
}

.bubble-ai {
  align-self: flex-start;
  max-width: 90%;
  background: var(--white);
  color: #000000;
  border: 1px solid var(--bdr);
  border-radius: var(--r14) var(--r14) var(--r14) 4px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.6;
  box-shadow: var(--s1);
}

.bubble-ai strong {
  color: var(--red);
}

.bubble-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.bubble-label.u {
  color: rgba(255, 255, 255, .45);
}

.bubble-label.a {
  color: var(--teal);
}

/* Mini stat bar inside chat */
.chat-statbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r10);
  overflow: hidden;
  margin-top: 4px;
}

.csb-item {
  padding: 10px;
  text-align: center;
}

.csb-item:not(:last-child) {
  border-right: 1px solid var(--bdr);
}

.csb-val {
  font-family: var(--p);
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  letter-spacing: -.04em;
}

.csb-lbl {
  font-size: 10px;
  color: var(--muted);
  margin-top: 1px;
}

/* Typing indicator */
.typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
}

.typing span {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: bounce .8s infinite;
}

.typing span:nth-child(2) {
  animation-delay: .15s;
}

.typing span:nth-child(3) {
  animation-delay: .3s;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.chat-inputbar {
  background: var(--white);
  border-top: 1px solid var(--bdr);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-input-fake {
  flex: 1;
  background: var(--off);
  border: 1px solid var(--bdr);
  border-radius: var(--rpill);
  padding: 9px 16px;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--p);
}

.chat-send {
  width: 36px;
  height: 36px;
  background: var(--teal);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: transform .2s;
}

.chat-send:hover {
  transform: scale(1.1);
}

/* ── MARQUEE ── */
.marquee {
  background: #000000;
  padding: 16px 0;
  overflow: hidden;
}

.mtrack {
  display: flex;
  animation: mq 24s linear infinite;
  width: max-content;
}

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

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

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

.mitem span {
  font-family: var(--p);
  font-size: 12px;
  font-weight: 500;
  color: #9ce5d9;
}

.mdot {
  width: 4px;
  height: 4px;
  background: var(--teal);
  border-radius: 50%;
  opacity: .5;
}

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--off);
  border-bottom: 1px solid var(--bdr);
  padding-top: 56px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--bdr);
  border-radius: var(--r14);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--s1);
}

.stat-cell {
  padding: 28px 24px;
  text-align: center;
}

.stat-cell:not(:last-child) {
  border-right: 1px solid var(--bdr);
}

.stat-val {
  font-family: poppins;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -.05em;
  line-height: 1;
}

.stat-lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ── LOGOS ── */
.logo-sec {
  background: var(--off);
  padding: 44px 0;
  border-bottom: 1px solid var(--bdr);
}

.logo-lbl {
  font-family: poppins;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 24px;
}

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

.logo-chip {
  font-family: var(--p);
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  padding: 7px 18px;
  border: 1.5px solid var(--bdr);
  border-radius: var(--r6);
  background: var(--white);
  transition: all .2s;
  cursor: default;
}

.logo-chip:hover {
  color: var(--ink2);
  border-color: var(--ink2);
}

/* ── DEFINITION SECTION ── */
.def-sec {
  background: var(--white);
}

.def-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--tealg);
  border: 1px solid rgba(0, 201, 167, .18);
  border-radius: var(--rpill);
  padding: 5px 14px;
  margin-bottom: 20px;
}

.pill-label span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
}

.section-h2 {
  font-family: var(--p);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -.035em;
  color: #000000;
}

.section-body {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.8;
  margin-top: 16px;
}

/* Workflow steps (numbered vertical) */
.workflow {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--bdr);
  border-radius: var(--r14);
  overflow: hidden;
}

.wf-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: var(--white);
  transition: background .2s;
  border-bottom: 1px solid var(--bdr);
}

.wf-step:last-child {
  border-bottom: none;
}

.wf-step:hover {
  background: var(--off);
}

.wf-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #000000;
  color: #fff;
  font-family: var(--p);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wf-body {}

.wf-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}

.wf-title {
  font-family: var(--p);
  font-weight: 600;
  font-size: 15px;
  color: #000000;
  margin-bottom: 5px;
}

.wf-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FEATURES — 3-col card grid ── */
.feat-sec {
  background: var(--off);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.feat-card {
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r14);
  padding: 32px;
  transition: all .25s;
}

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

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.feat-title {
  font-family: var(--p);
  font-weight: 600;
  font-size: 17px;
  color: #000000;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.feat-desc {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.7;
}

.feat-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--rpill);
}

/* ── LIVE DEMO SECTION ── */
.demo-sec {
  background: var(--white);
}

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

.demo-questions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}

.dq {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--off);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r10);
  cursor: pointer;
  transition: all .2s;
}

.dq:hover,
.dq.active {
  background: var(--redg);
  border-color: rgba(255, 61, 0, .2);
}

.dq.active .dq-num {
  background: var(--red);
  color: #fff;
}

.dq-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #000000;
  color: #fff;
  font-family: var(--p);
  font-weight: 600;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dq-text {
  font-size: 13px;
  font-weight: 500;
  color: #000000;
}

.dq-arr {
  margin-left: auto;
  color: var(--red);
  font-size: 14px;
}

/* Full chat demo panel */
.demo-panel {
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r20);
  overflow: hidden;
  box-shadow: var(--s3);
}

.demo-panel-top {
  background: linear-gradient(135deg, #000000, var(--navy2));
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dp-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #00a88b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.dp-name {
  font-family: var(--p);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.dp-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  margin-top: 1px;
}

.dp-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.dp-live-txt {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
}

.demo-convo {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--off);
  min-height: 300px;
}

.dc-user {
  align-self: flex-end;
  max-width: 80%;
  background: #000000;
  color: #fff;
  border-radius: var(--r14) var(--r14) 4px var(--r14);
  padding: 11px 16px;
  font-size: 13px;
  line-height: 1.5;
}

.dc-lbl-u {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.dc-ai {
  align-self: flex-start;
  max-width: 90%;
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r14) var(--r14) var(--r14) 4px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.6;
  color: #000000;
  box-shadow: var(--s1);
}

.dc-lbl-a {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.dc-highlight {
  background: rgba(255, 61, 0, .07);
  border-left: 3px solid var(--red);
  padding: 8px 12px;
  border-radius: 0 var(--r6) var(--r6) 0;
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink2);
}

.dc-highlight strong {
  color: #000000;
}

/* ── COMPARISON ── */
.cmp-sec {
  background: var(--off);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}

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

.cmp-table th {
  padding: 16px 20px;
  font-family: var(--p);
  font-weight: 600;
  font-size: 13px;
}

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

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

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

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

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

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

.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;
}

/* ── AUDIENCE ── */
.aud-sec {
  background: var(--white);
}

.aud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.ac {
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r14);
  padding: 28px;
  transition: all .25s;
}

.ac:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--s3);
}

.ac-ico {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.ac-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.ac-title {
  font-family: var(--p);
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  margin-bottom: 8px;
}

.ac-desc {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.65;
}

/* ── TESTIMONIALS ── */
.testi-sec {
  background: var(--off);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.tcard {
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r14);
  padding: 32px;
  transition: all .25s;
}

.tcard:hover {
  border-color: var(--teal);
  box-shadow: var(--s3);
}

.t-quote-mark {
  font-size: 40px;
  color: var(--teal);
  opacity: .25;
  line-height: 1;
  margin-bottom: 10px;
  font-family: Georgia, serif;
}

.t-quote {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 22px;
}

.t-foot {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.t-name {
  font-family: var(--p);
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

.t-role {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── SUPPORT ── */
.support-sec {
  background: var(--white);
}

.sup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.sup-card {
  text-align: center;
  background: var(--off);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r14);
  padding: 36px 28px;
  transition: all .25s;
}

.sup-card:hover {
  border-color: var(--teal);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--s3);
}

.sup-illo {
  font-size: 40px;
  margin-bottom: 18px;
  display: block;
}

.sup-title {
  font-family: var(--p);
  font-weight: 600;
  font-size: 17px;
  color: #000000;
  margin-bottom: 10px;
}

.sup-desc {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.7;
}

/* ── FAQ ── */
.faq-sec {
  background: var(--off);
  border-top: 1px solid var(--bdr);
}

.faq-wrap {
  max-width: 760px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

.faq-item.open {
  border-color: var(--teal);
}

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

.faq-icon {
  color: var(--teal);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 400;
}

.faq-a {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.75;
  margin-top: 12px;
  display: none;
}

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

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

.cta-sec::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 201, 167, .1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-sec::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 61, 0, .08) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.cta-h2 {
  font-family: var(--p);
  font-weight: 600;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 16px;
}

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

.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.75;
  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-inp {
  flex: 1;
  font-family: var(--p);
  font-size: 15px;
  color: #000000;
  background: var(--white);
  border: none;
  border-radius: var(--r10);
  padding: 15px 20px;
  outline: none;
}

.cta-inp::placeholder {
  color: var(--muted);
}

.cta-btn {
  font-family: var(--p);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  background: var(--teal);
  border: none;
  padding: 15px 26px;
  border-radius: var(--r10);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 22px rgba(0, 201, 167, .4);
  transition: all .2s;
}

.cta-btn:hover {
  background: #00b596;
  transform: translateY(-1px);
}

.cta-fine {
  font-size: 11px;
  color: rgba(255, 255, 255, .25);
  letter-spacing: .06em;
  font-weight: 500;
}

.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(26px);
  transition: opacity .6s ease, transform .6s ease;
}

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

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

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

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

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

::-webkit-scrollbar-thumb {
  background: #00C9A7;
  border-radius: 2px;
}

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

  .wrap,
  .wrap-md {
    padding: 0 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .chat-widget {
    margin-bottom: 0;
  }

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

  .feat-grid,
  .aud-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid,
  .sup-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-cell:nth-child(2) {
    border-right: none;
  }

  .stat-cell:nth-child(1),
  .stat-cell:nth-child(2) {
    border-bottom: 1px solid var(--bdr);
  }

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

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

  nav .nav-pill {
    display: none;
  }
}

@media(max-width:640px) {
  .sec {
    padding: 64px 0;
  }

  .feat-grid,
  .aud-grid {
    grid-template-columns: 1fr;
  }
.stat-cell {
    padding: 10px 10px;
    text-align: center;
}
.stat-val {
    font-size: 20px;
}
  .stat-cell {
    border-bottom: 1px solid var(--bdr) !important;
  }


  .stat-cell:last-child {
    border-bottom: none !important;
  }
}
/* ── 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;
    }
}
/* New Chnage Log Section */
@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: 480px) {
  .cmp-table td {
    padding: 12px 14px;
    font-size: 12px;
  }

  .cmp-table td::before {
    font-size: 10px !important;
  }
  .hero-h1 {
    font-size: 36px;
    line-height: 1.2;
}
}

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