*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #f7f5f1;
  color: #1c2b3a;
  overflow-x: hidden;
  line-height: 1.6;
}
.jk {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
}
:root {
  --t: #0d6e70;
  --tl: #1a9698;
  --ts: rgba(13, 110, 112, 0.08);
  --tb: rgba(13, 110, 112, 0.2);
  --n: #182638;
  --nd: #0e1b2a;
  --a: #e5a227;
  --as: rgba(229, 162, 39, 0.1);
  --w: #f7f5f1;
  --wh: #fff;
  --mu: #6a7a8a;
  --br: #e6e3de;
  --r: 20px;
  --rs: 12px;
}
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}
.sec {
  padding: 108px 0;
}
@media (max-width: 768px) {
  .wrap {
    padding: 0 22px;
  }
  .sec {
    padding: 72px 0;
  }
}
.g2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1024px) {
  .g4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .g2,
  .g3 {
    grid-template-columns: 1fr !important;
  }
  .g4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .g4 {
    grid-template-columns: 1fr;
  }
}

/* NAV */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  transition:
    background 0.4s,
    box-shadow 0.4s;
}
#nav.sc {
  background: rgba(247, 245, 241, 0.93);
  backdrop-filter: saturate(200%) blur(24px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: padding 0.4s;
}
#nav.sc .nav-inner {
  padding: 14px 0;
}
.nl {
  font-size: 14px;
  font-weight: 500;
  color: var(--n);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.nl::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--t);
  border-radius: 2px;
  transition: width 0.25s;
}
.nl:hover,
.nl.on {
  color: var(--t);
}
.nl:hover::after,
.nl.on::after {
  width: 100%;
}

/* MOBILE MENU */
#mm {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(247, 245, 241, 0.97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
#mm.op {
  display: flex;
}
.ml {
  font-size: 20px;
  font-weight: 900;
  color: var(--n);
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 8px 0;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.35s,
    transform 0.35s,
    color 0.2s;
}
#mm.op .ml {
  opacity: 1;
  transform: none;
}
#mm.op .ml:nth-child(2) {
  transition-delay: 0.05s;
}
#mm.op .ml:nth-child(3) {
  transition-delay: 0.1s;
}
#mm.op .ml:nth-child(4) {
  transition-delay: 0.15s;
}
#mm.op .ml:nth-child(5) {
  transition-delay: 0.2s;
}
#mm.op .ml:nth-child(6) {
  transition-delay: 0.25s;
}
#mm.op .ml:nth-child(7) {
  transition-delay: 0.3s;
}
#mm.op .ml:nth-child(8) {
  transition-delay: 0.35s;
}
.ml:hover {
  color: var(--t);
}
.hb {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.hb span {
  display: block;
  height: 2px;
  background: var(--n);
  border-radius: 2px;
}
.hb .l1 {
  width: 22px;
}
.hb .l2 {
  width: 15px;
}
.hb .l3 {
  width: 22px;
}
@media (max-width: 960px) {
  .hb {
    display: flex;
  }
  .nl-grp,
  .nav-cta {
    display: none !important;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 14px;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.bp {
  background: linear-gradient(135deg, var(--t), #0a5557);
  color: #fff;
  padding: 14px 28px;
  box-shadow: 0 4px 20px rgba(13, 110, 112, 0.28);
}
.bp:hover {
  box-shadow: 0 8px 32px rgba(13, 110, 112, 0.42);
  transform: translateY(-1px);
}
.bp:active {
  transform: scale(0.975);
}
.bg {
  background: rgba(255, 255, 255, 0.94);
  color: var(--n);
  padding: 14px 24px;
  border: 1.5px solid var(--br);
}
.bg:hover {
  border-color: var(--t);
  color: var(--t);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
  border-radius: 10px;
}
.bdo {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.bdo:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
}

/* BADGES */
.bdg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ts);
  border: 1px solid var(--tb);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: #fff;
  text-transform: uppercase;
}
.bdgd {
  background: rgba(13, 110, 112, 0.18);
  border: 1px solid rgba(13, 110, 112, 0.4);
  color: #bcfff8 !;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--t);
  position: relative;
  flex-shrink: 0;
}
.dot::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--t);
  opacity: 0.4;
  animation: rpl 1.6s ease-out infinite;
}
@keyframes rpl {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

/* CARDS */
.cd {
  background: var(--wh);
  border-radius: var(--r);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.055);
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s;
}
.cd:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13, 110, 112, 0.13);
}
.cdd {
  background: rgba(255, 255, 255, 0.048);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r);
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cdd:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(13, 110, 112, 0.42);
  transform: translateY(-3px);
}

/* GRADIENT TEXT */
.tg {
  background: linear-gradient(135deg, var(--t), var(--tl));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ag {
  background: linear-gradient(135deg, var(--a), #c98b1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CANVAS removed */

/* HERO GRID */
.hgb {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(13, 110, 112, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 110, 112, 0.065) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black, transparent);
}

/* ORB */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

/* MARQUEE */
@keyframes mq {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.mqt {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: mq 32s linear infinite;
}
.mqt:hover {
  animation-play-state: paused;
}
.mqi {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.54);
  flex-shrink: 0;
}
.mqs {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

/* ANIMATIONS */
@keyframes flt {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.fl {
  animation: flt 6s ease-in-out infinite;
}
@keyframes flt2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.fl2 {
  animation: flt2 4s ease-in-out 1s infinite;
}
@keyframes tin {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.tin {
  animation: tin 0.6s ease forwards;
}

/* REVEAL */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.rv.in {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.d4 {
  transition-delay: 0.32s;
}

/* PROGRESS BAR */
.pb {
  height: 6px;
  background: #edebe7;
  border-radius: 99px;
  overflow: hidden;
}
.pbf {
  height: 100%;
  background: linear-gradient(90deg, var(--t), var(--tl));
  border-radius: 99px;
  width: 0;
  transition: width 1.7s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.pbf.am {
  background: linear-gradient(90deg, var(--a), #c98b1a);
}

/* STARS */
.str {
  color: #ffd60a;
  letter-spacing: 1px;
}

/* ICON BOX */
.ib {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--ts);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t);
  flex-shrink: 0;
}
.ib.am {
  background: var(--as);
  color: var(--a);
}

/* MATERIAL ICONS */
.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
  line-height: 1;
  font-size: 22px;
}

/* FAQ */
details summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}
details summary::-webkit-details-marker {
  display: none;
}
.fi {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
details[open] .fi {
  transform: rotate(45deg);
}

/* FORM */
.ff {
  width: 100%;
  background: #eeece8;
  border: 1.5px solid rgba(28, 43, 58, 0.09);
  border-radius: var(--rs);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--n);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  font-family: inherit;
}
.ff:focus {
  border-color: var(--t);
  box-shadow: 0 0 0 3px rgba(13, 110, 112, 0.1);
}
.fl3 {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--mu);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}

/* AGENT FEATURED */
.af {
  background: rgba(255, 255, 255, 0.065);
  border: 1.5px solid rgba(13, 110, 112, 0.48);
  border-radius: var(--r);
  box-shadow:
    0 0 0 1px rgba(13, 110, 112, 0.08),
    0 20px 60px rgba(13, 110, 112, 0.18);
  position: relative;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s;
}
.af:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(13, 110, 112, 0.14),
    0 28px 72px rgba(13, 110, 112, 0.28);
}

/* PRICING */
.pf {
  background: linear-gradient(155deg, #0d6e70, #0a4e52);
  border-radius: var(--r);
  box-shadow: 0 24px 72px rgba(13, 110, 112, 0.38);
  position: relative;
  /* Clip the decorative ::before circle (right:-60px) so it can't push
     past the viewport and cause horizontal overflow when the pricing grid
     collapses to a single full-width column below 768px. Matches .asc. */
  overflow: hidden;
}
.pf::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
@media (max-width: 768px) {
  .pf {
    transform: none;
  }
}

/* ABOUT STATS */
.asc {
  background: linear-gradient(145deg, #0d6e70, #0a4e52);
  border-radius: var(--r);
  padding: 44px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.asc::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

/* CTA SECTION */
#contact {
  background: linear-gradient(135deg, var(--n), var(--nd));
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(13, 110, 112, 0.12);
  filter: blur(60px);
}

/* STEPS FLOW */
.step-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(13, 110, 112, 0.3),
    transparent
  );
  flex: 1;
  position: relative;
  top: 34px;
  margin: 0 -8px;
}
@media (max-width: 768px) {
  .step-line {
    display: none !important;
  }
}

/* SECTOR ICON */
.si {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(13, 110, 112, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

/* TESTIMONIAL FEATURED */
.tf {
  border: 1.5px solid var(--tb);
  box-shadow: 0 2px 24px rgba(13, 110, 112, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .rv {
    opacity: 1;
    transform: none;
  }
}

/* ── THEME SWITCHER WIDGET ──────────────────────────────────────── */
#tsw {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 400;
  background: rgba(14, 27, 42, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.theme-dot.active-dot {
  box-shadow: 0 0 0 3px rgba(13, 110, 112, 0.4);
  border-color: #0d6e70;
}
@media (max-width: 640px) {
  #tsw {
    right: 10px;
    padding: 10px 8px;
  }
}

/* ── HOW-IT-WORKS STEPPER ───────────────────────────────────────── */
#how-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
  min-height: 400px;
}
/* Sidebar IS a direct grid child */
.sp-sidebar {
  background: var(--wh);
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  border-right: 1px solid var(--br);
}
.sp-tab {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 28px;
  cursor: pointer;
  border: none;
  background: transparent;
  text-align: left;
  width: 100%;
  border-left: 3px solid transparent;
  transition:
    background 0.22s,
    border-color 0.22s;
  user-select: none;
  position: relative;
}
.sp-tab:hover {
  background: rgba(13, 110, 112, 0.04);
}
.sp-tab.sp-active {
  background: rgba(13, 110, 112, 0.07);
  border-left-color: var(--t);
}
.sp-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #edebe7;
  color: var(--mu);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.28s,
    color 0.28s,
    transform 0.28s,
    box-shadow 0.28s;
}
.sp-tab.sp-active .sp-num {
  background: var(--t);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(13, 110, 112, 0.35);
}
.sp-tab-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--n);
  line-height: 1.2;
  margin-bottom: 3px;
  transition: color 0.22s;
}
.sp-tab.sp-active .sp-tab-title {
  color: var(--t);
}
.sp-tab-sub {
  font-size: 12px;
  color: var(--mu);
}
/* Dividers between tabs */
.sp-divider {
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 0 0 40px;
}
.sp-divider-fill {
  height: 100%;
  width: 2px;
  background: #edebe7;
  border-radius: 2px;
  transition: background 0.4s;
}
.sp-divider-fill.active {
  background: var(--t);
}
/* Content panel */
.sp-content {
  background: #f7f5f1;
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sp-content::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(13, 110, 112, 0.05);
  pointer-events: none;
}
.sp-panel {
  display: none;
  animation: panelIn 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.sp-panel.sp-show {
  display: block;
}
@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateX(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.sp-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--t), var(--tl));
  box-shadow: 0 8px 28px rgba(13, 110, 112, 0.28);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.sp-icon-ring:hover {
  transform: scale(1.06) rotate(-3deg);
  box-shadow: 0 12px 36px rgba(13, 110, 112, 0.38);
}
.sp-feature-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.sp-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 110, 112, 0.08);
  border: 1px solid rgba(13, 110, 112, 0.16);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--t);
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  cursor: default;
}
.sp-chip:hover {
  background: rgba(13, 110, 112, 0.16);
  border-color: rgba(13, 110, 112, 0.32);
  transform: translateY(-1px);
}
@media (max-width: 860px) {
  #how-inner {
    grid-template-columns: 1fr;
  }
  .sp-sidebar {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--br);
    padding: 0;
  }
  .sp-tab {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: 16px 18px;
    border-left: none;
    border-bottom: 3px solid transparent;
    min-width: 90px;
  }
  .sp-tab.sp-active {
    border-left: none;
    border-bottom-color: var(--t);
  }
  .sp-divider {
    display: none;
  }
  .sp-content {
    padding: 32px 24px;
  }
}

/* ── BESPOKE SECTION ────────────────────────────────────────────── */
.bsp-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 16px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.2s;
}
.bsp-pill:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(13, 110, 112, 0.35);
  transform: translateX(4px);
}
.bsp-pill-active {
  background: rgba(13, 110, 112, 0.15) !important;
  border-color: rgba(13, 110, 112, 0.45) !important;
}
.bsp-pill-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(13, 110, 112, 0.2);
  color: #5ee0d4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}
.bsp-pill-active .bsp-pill-icon {
  background: var(--t);
}
.bsp-pill-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.bsp-pill-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.45;
}
.bsp-pill-arrow {
  color: rgba(255, 255, 255, 0.25);
  transition:
    color 0.25s,
    transform 0.25s;
}
.bsp-pill-active .bsp-pill-arrow {
  color: #5ee0d4;
  transform: translateX(3px);
}

#bsp-diagram {
  width: 380px;
  height: 380px;
  position: relative;
  margin: 0 auto;
  user-select: none;
}
#bsp-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
#bsp-hub-inner {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--t), var(--tl));
  box-shadow:
    0 0 0 10px rgba(13, 110, 112, 0.14),
    0 8px 40px rgba(13, 110, 112, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hubPulse 3s ease-in-out infinite;
}
@keyframes hubPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 8px rgba(13, 110, 112, 0.15),
      0 8px 40px rgba(13, 110, 112, 0.4);
  }
  50% {
    box-shadow:
      0 0 0 16px rgba(13, 110, 112, 0.07),
      0 8px 40px rgba(13, 110, 112, 0.55);
  }
}
#bsp-hub-logo {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.bsp-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(13, 110, 112, 0.18);
  transform: translate(-50%, -50%);
  animation: ringRotate 22s linear infinite;
}
.bsp-ring-1 {
  width: 200px;
  height: 200px;
}
.bsp-ring-2 {
  width: 320px;
  height: 320px;
  border-color: rgba(13, 110, 112, 0.08);
  animation-direction: reverse;
  animation-duration: 34s;
}
@keyframes ringRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.bsp-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateX(var(--dist))
    rotate(calc(-1 * var(--angle)));
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: filter 0.3s;
  z-index: 5;
}
.bsp-node-inner {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(20, 36, 58, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s,
    transform 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.bsp-node:hover .bsp-node-inner,
.bsp-node.bsp-lit .bsp-node-inner {
  border-color: rgba(13, 110, 112, 0.6);
  box-shadow: 0 4px 28px rgba(13, 110, 112, 0.4);
  background: rgba(13, 110, 112, 0.2);
  transform: scale(1.1);
}
.bsp-node.bsp-dim {
  filter: grayscale(0.8) opacity(0.35);
}
.bsp-node-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.bsp-node.bsp-lit .bsp-node-label {
  color: #5ee0d4;
}
.bsp-node.bsp-dim .bsp-node-label {
  color: rgba(255, 255, 255, 0.2);
}
@keyframes dashFlow {
  to {
    stroke-dashoffset: -16;
  }
}
.bsp-conn {
  stroke: rgba(13, 110, 112, 0.45);
  stroke-width: 1.5;
  stroke-dasharray: 4 5;
  fill: none;
  animation: dashFlow 0.7s linear infinite;
  transition:
    stroke 0.3s,
    opacity 0.3s;
}
.bsp-conn.dim {
  opacity: 0.07;
}
#bsp-tooltip {
  display: none;
  position: absolute;
  background: rgba(14, 27, 42, 0.96);
  border: 1px solid rgba(13, 110, 112, 0.45);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  pointer-events: none;
  white-space: nowrap;
  z-index: 20;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
@media (max-width: 860px) {
  #bsp-diagram {
    width: 300px;
    height: 300px;
  }
  #bsp-info {
    width: 300px !important;
  }
  .bsp-node {
    transform: translate(-50%, -50%) rotate(var(--angle))
      translateX(calc(var(--dist) * 0.72)) rotate(calc(-1 * var(--angle)));
  }
}
@media (max-width: 640px) {
  #bsp-diagram,
  #bsp-info {
    display: none !important;
  }
}

/* ── RICH HOVER MICRO-INTERACTIONS ─────────────────────────────── */

/* Service cards — icon lift + colour shift */
.cd:hover .material-symbols-outlined[style*="color:var(--t)"] {
  transform: scale(1.18) translateY(-2px);
}
/* Generic icon transition inside cards */
.cd .material-symbols-outlined {
  transition:
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.2s;
}

/* Industry/dark cards — icon scale + glow */
.cdd:hover .si {
  transform: scale(1.12);
  box-shadow: 0 0 0 6px rgba(13, 110, 112, 0.15);
}
.si {
  transition:
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.28s;
}

/* Stats bar — number colour pop on hover */
.stat-num {
  transition:
    color 0.22s,
    transform 0.22s,
    letter-spacing 0.22s;
}
.stat-item:hover .stat-num {
  color: var(--t);
  transform: scale(1.04);
  letter-spacing: -3px;
}

/* Testimonial cards — subtle lift + quote mark */
.cd.tcard {
  position: relative;
  overflow: hidden;
}
.cd.tcard::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 120px;
  font-weight: 900;
  color: rgba(13, 110, 112, 0.06);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}
.cd.tcard:hover::before {
  color: rgba(13, 110, 112, 0.12);
}

/* Pricing cards — ghost hover glow */
.cd.pcard {
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s;
}
.cd.pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(13, 110, 112, 0.14);
}
.pf {
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s;
}
.pf:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(13, 110, 112, 0.48);
}

/* FAQ rows — left border slide */
details {
  border-left: 3px solid transparent;
  transition:
    border-color 0.25s,
    background 0.25s;
}
details:hover,
details[open] {
  border-left-color: var(--t);
}

/* Bespoke stat strip — hover highlight */
.bsp-stat {
  transition: background 0.22s;
}
.bsp-stat:hover {
  background: rgba(13, 110, 112, 0.08) !important;
}
.bsp-stat p.jk {
  transition: color 0.22s;
}
.bsp-stat:hover p.jk {
  color: #5ee0d4;
}

/* Agent card icon boxes — rotate on hover */
.agent-icon {
  transition:
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s;
}
.cdd:hover .agent-icon,
.af:hover .agent-icon {
  transform: scale(1.08) rotate(-4deg);
}

/* Nav CTA button — shimmer sweep */
@keyframes shimmer {
  0% {
    left: -60%;
  }
  100% {
    left: 120%;
  }
}
.btn.bp {
  position: relative;
  overflow: hidden;
}
.btn.bp::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: skewX(-15deg);
  transition: none;
  pointer-events: none;
}
.btn.bp:hover::after {
  animation: shimmer 0.6s ease forwards;
}

/* Sector card title uppercase tracking */
.cdd h4 {
  transition:
    letter-spacing 0.22s,
    color 0.22s;
}
.cdd:hover h4 {
  letter-spacing: 0.1em;
  color: #5ee0d4;
}

/* About stat card number scale */
.asc .jk {
  transition: transform 0.28s;
}
.asc:hover .jk {
  transform: scale(1.03);
}

/* Contact info rows — slide right */
.cinfo-row {
  transition:
    transform 0.22s,
    background 0.22s;
  border-radius: 14px;
  padding: 16px 18px;
}
.cinfo-row:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.05);
}

/* Footer links — colour from left */
.ft-link {
  position: relative;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.ft-link:hover {
  color: #5ee0d4 !important;
  padding-left: 6px;
}

/* Marker line on nav brand hover */
.nav-logo-sq {
  transition:
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.28s;
}

/* ── END HOVER MICRO-INTERACTIONS ──────────────────────────────── */

/* ── FLOATING CHATBOT ───────────────────────────────────────────── */
#chat-widget {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 1000;
}
#chat-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--t), var(--tl));
  box-shadow: 0 4px 24px rgba(13, 110, 112, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
#chat-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(13, 110, 112, 0.6);
}
#chat-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e5a227;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f7f5f1;
  animation: badgePop 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes badgePop {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
#chat-window {
  position: absolute;
  bottom: 72px;
  left: 0;
  width: 340px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom left;
  animation: chatOpen 0.28s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes chatOpen {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
#chat-window.open {
  display: flex;
}
#chat-header {
  background: linear-gradient(135deg, var(--t), var(--tl));
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#chat-msgs {
  flex: 1;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  max-height: 280px;
  min-height: 180px;
  background: #f7f5f1;
}
.chat-msg {
  animation: msgIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}
@keyframes msgIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.chat-bot p {
  background: #fff;
  border-radius: 14px 14px 14px 4px;
  padding: 11px 14px;
  font-size: 13px;
  line-height: 1.55;
  color: #1c2b3a;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
  display: inline-block;
  max-width: 90%;
}
.chat-user p {
  background: linear-gradient(135deg, var(--t), var(--tl));
  border-radius: 14px 14px 4px 14px;
  padding: 11px 14px;
  font-size: 13px;
  line-height: 1.55;
  color: #fff;
  display: inline-block;
  max-width: 90%;
  margin-left: auto;
}
.chat-user {
  display: flex;
  justify-content: flex-end;
}
#chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.chat-qr {
  background: #fff;
  border: 1px solid rgba(13, 110, 112, 0.2);
  color: var(--t);
  border-radius: 99px;
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.18s,
    border-color 0.18s,
    transform 0.18s;
}
.chat-qr:hover {
  background: rgba(13, 110, 112, 0.07);
  border-color: var(--t);
  transform: translateY(-1px);
}
#chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid #edebe7;
  background: #fff;
}
#chat-input {
  flex: 1;
  border: 1.5px solid #edebe7;
  border-radius: 10px;
  padding: 9px 13px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  color: #1c2b3a;
}
#chat-input:focus {
  border-color: var(--t);
}
#chat-send {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--t), var(--tl));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
#chat-send:hover {
  opacity: 0.85;
}
/* ── END CHATBOT ──────────────────────────────────────────────────── */

/* ── COMPARE SECTION ────────────────────────────────────────────── */
.cmp-header {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  gap: 0;
}
.cmp-header-prob {
  flex: 1;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  border-radius: 10px;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.06);
}
.cmp-header-sol {
  flex: 1;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--t);
  background: rgba(13, 110, 112, 0.06);
  text-align: right;
}

.cmp-row {
  display: flex;
  align-items: stretch;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition:
    box-shadow 0.28s,
    transform 0.28s;
}
.cmp-row:hover {
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.cmp-prob {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 20px;
  background: #fefefe;
  border-right: 1px solid #f2efe8;
}
.cmp-sol {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 20px;
  background: rgba(13, 110, 112, 0.022);
}
.cmp-text {
  flex: 1;
}
.cmp-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.cmp-icon-prob {
  background: rgba(239, 68, 68, 0.08);
}
.cmp-icon-sol {
  background: rgba(13, 110, 112, 0.09);
}

.cmp-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 5px;
}
.cmp-label-prob {
  color: #ef4444;
}
.cmp-label-sol {
  color: var(--t);
}
.cmp-h {
  font-size: 15px;
  font-weight: 800;
  color: var(--n);
  line-height: 1.25;
  margin-bottom: 5px;
}
.cmp-p {
  font-size: 13px;
  color: var(--mu);
  line-height: 1.6;
}

.cmp-arrow {
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(13, 110, 112, 0.04),
    rgba(13, 110, 112, 0.09)
  );
  border-left: 1px solid #f2efe8;
  border-right: 1px solid #f2efe8;
}

@media (max-width: 768px) {
  .cmp-row {
    flex-direction: column;
  }
  .cmp-arrow {
    flex: 0 0 32px;
    border: none;
    border-top: 1px solid #f2efe8;
    border-bottom: 1px solid #f2efe8;
  }
  .cmp-arrow .material-symbols-outlined {
    transform: rotate(90deg);
  }
  .cmp-header {
    display: none;
  }
  .cmp-prob {
    border-right: none;
    border-bottom: 1px solid #f2efe8;
  }
}
/* ── END COMPARE ─────────────────────────────────────────────────── */

/* ══ EXTRACTED INLINE STYLES ═════════════════════════════════════════ */

/* Spacing / layout utilities */
.mb-6 {
  margin-bottom: 6px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-12 {
  margin-bottom: 12px;
}
.mb-14 {
  margin-bottom: 14px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-18 {
  margin-bottom: 18px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-22 {
  margin-bottom: 22px;
}
.mb-28 {
  margin-bottom: 28px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mb-36 {
  margin-bottom: 36px;
}
.mb-52 {
  margin-bottom: 52px;
}
.mb-56 {
  margin-bottom: 56px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-64 {
  margin-bottom: 64px;
}
.mb-72 {
  margin-bottom: 72px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-28 {
  margin-top: 28px;
}
.mt-36 {
  margin-top: 36px;
}
.mw-380 {
  max-width: 380px;
}
.mw-420 {
  max-width: 420px;
}
.mw-470 {
  max-width: 470px;
}
.mw-480 {
  max-width: 480px;
}
.mw-490 {
  max-width: 490px;
}
.wrap-z {
  position: relative;
  z-index: 1;
}

/* Section backgrounds */
.sec-white {
  background: var(--wh);
}
.sec-warm {
  background: var(--w);
}
.sec-warm2 {
  background: #f0ede8;
}
.sec-dark {
  background: var(--nd);
  position: relative;
  overflow: hidden;
}

/* Shared section header + copy */
.sec-head {
  text-align: center;
}
.sec-sub {
  font-size: 17px;
  color: var(--mu);
  margin: 0 auto;
  line-height: 1.7;
}

/* Orbs (positioned instances) */
.orb-hero-1 {
  width: 600px;
  height: 600px;
  background: rgba(13, 110, 112, 0.08);
  top: -100px;
  right: -120px;
  z-index: 0;
}
.orb-hero-2 {
  width: 380px;
  height: 380px;
  background: rgba(229, 162, 39, 0.07);
  bottom: -60px;
  left: -90px;
  z-index: 0;
}
.orb-agents {
  width: 700px;
  height: 700px;
  background: rgba(13, 110, 112, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.orb-bespoke-1 {
  width: 560px;
  height: 560px;
  background: rgba(13, 110, 112, 0.12);
  top: -80px;
  right: -120px;
  z-index: 0;
}
.orb-bespoke-2 {
  width: 400px;
  height: 400px;
  background: rgba(229, 162, 39, 0.06);
  bottom: -60px;
  left: -80px;
  z-index: 0;
}
.orb-industries {
  width: 700px;
  height: 700px;
  background: rgba(13, 110, 112, 0.09);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.orb-faq {
  width: 500px;
  height: 500px;
  background: rgba(13, 110, 112, 0.08);
  top: 0;
  right: -100px;
  z-index: 0;
}

/* Buttons — size + layout helpers */
.btn-xl {
  font-size: 16px;
  padding: 16px 32px;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}
.btn-md {
  padding: 14px 30px;
  font-size: 15px;
}
.btn-nudge {
  padding: 13px 28px;
  font-size: 14px;
}
.btn-ghost-lg {
  font-size: 16px;
  padding: 16px 26px;
}
.btn-full {
  width: 100%;
  justify-content: center;
}
.btn-ico {
  font-size: 18px;
}
.btn-ico-sm {
  font-size: 17px;
}
.cta-center {
  display: flex;
  justify-content: center;
}

/* MOBILE MENU */
.mm-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--n);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mm-cta {
  margin-top: 16px;
}

/* NAV */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.nav-logo-sq {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  background: transparent;
  border-radius: 0;
}
.nav-logo-txt {
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.3px;
}
.nav-brand-name {
  font-weight: 800;
  font-size: 16px;
  color: var(--n);
  letter-spacing: -0.3px;
}
.nav-brand-name .hl {
  color: var(--t);
}
.nl-grp {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.hero-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-grid {
  align-items: center;
  gap: 80px;
}
.hero-h1 {
  font-size: clamp(40px, 5.5vw, 74px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -2px;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.75;
  color: var(--mu);
  max-width: 490px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-avatars {
  display: flex;
}
.hero-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid var(--w);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.hero-avatar + .hero-avatar {
  margin-left: -10px;
}
.hero-avatar-1 {
  background: linear-gradient(135deg, var(--t), var(--tl));
}
.hero-avatar-2 {
  background: linear-gradient(135deg, var(--n), #3d5a6b);
}
.hero-avatar-3 {
  background: linear-gradient(135deg, var(--a), #c98b1a);
}
.hero-avatar-more {
  background: #e6e3de;
  color: var(--mu);
  font-size: 9px;
}
.hero-stars {
  font-size: 15px;
}
.hero-proof-txt {
  font-size: 12px;
  color: var(--mu);
  font-weight: 500;
  margin-top: 2px;
}

/* HERO DASHBOARD MOCKUP */
.dash-wrap {
  position: relative;
}
.dash-card {
  padding: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.13);
}
.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.dash-kicker {
  font-size: 10px;
  font-weight: 700;
  color: var(--mu);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dash-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--n);
  margin-top: 3px;
}
.dash-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}
.dash-stat {
  background: var(--w);
  border-radius: 14px;
  padding: 16px;
}
.dash-stat-label {
  font-size: 10px;
  color: var(--mu);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.dash-stat-num {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
}
.dash-stat-num.teal {
  color: var(--t);
}
.dash-stat-num.navy {
  color: var(--n);
}
.dash-stat-delta {
  font-size: 11px;
  font-weight: 600;
  margin-top: 3px;
}
.dash-stat-delta.teal {
  color: var(--t);
}
.dash-stat-delta.amber {
  color: var(--a);
}
.dash-bar-block {
  margin-bottom: 14px;
}
.dash-bar-block.last {
  margin-bottom: 20px;
}
.dash-bar-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}
.dash-bar-row .navy {
  color: var(--n);
}
.dash-bar-row .teal {
  color: var(--t);
}
.dash-bar-row .amber {
  color: var(--a);
}
.dash-live {
  background: rgba(13, 110, 112, 0.06);
  border: 1px solid rgba(13, 110, 112, 0.15);
  border-radius: 10px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-live-dot {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
}
.dash-live-dot .pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--t);
  opacity: 0.5;
  animation: rpl 1.6s ease-out infinite;
}
.dash-live-dot .core {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--t);
}
.dash-live-txt {
  font-size: 12px;
  font-weight: 700;
  color: var(--t);
}
.toast {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}
.toast-1 {
  bottom: -52px;
  left: -28px;
  border-radius: 16px;
  padding: 13px 17px;
  gap: 12px;
  min-width: 200px;
}
.toast-2 {
  top: -41px;
  right: -20px;
  border-radius: 14px;
  padding: 12px 16px;
  gap: 10px;
  min-width: 160px;
  animation-delay: 1.2s;
}
.toast-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.toast-ico-1 {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--a), #c98b1a);
}
.toast-ico-2 {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--t), var(--tl));
}
.toast-ico .material-symbols-outlined {
  color: #fff;
}
.toast-ico-1 .material-symbols-outlined {
  font-size: 17px;
}
.toast-ico-2 .material-symbols-outlined {
  font-size: 15px;
}
.toast-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--n);
}
.toast-title.sm {
  font-size: 11px;
}
.toast-sub {
  font-size: 11px;
  color: var(--mu);
}
.toast-sub.sm {
  font-size: 10px;
}

/* TICKER */
.ticker {
  background: var(--n);
  padding: 14px 0;
  overflow: hidden;
}

/* VIDEO */
.video-title {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--n);
}
.video-sub {
  max-width: 640px;
  margin-top: 18px;
}
.video-frame {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11, 31, 51, 0.18);
  background: var(--n);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 768px) {
  .video-title {
    font-size: 30px;
    letter-spacing: -1px;
  }
}

/* STATS */
.stats-sec {
  background: var(--wh);
  padding: 72px 0;
  border-bottom: 1px solid var(--br);
}
.stats-grid {
  text-align: center;
}
.stat-num {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1;
}
.stat-num.teal {
  color: var(--t);
}
.stat-num.navy {
  color: var(--n);
}
.stat-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--mu);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 8px;
}

/* AGENTS */
.agents-title {
  font-size: clamp(30px, 4.5vw, 60px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 14px;
}
.agents-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.48);
  max-width: 470px;
  margin: 0 auto;
  line-height: 1.65;
}
.agents-grid {
  margin-bottom: 22px;
}
.agent-card {
  padding: 36px 28px;
}
.agent-featured {
  padding: 38px 28px;
}
.agent-ico {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.agent-ico .material-symbols-outlined {
  font-size: 26px;
}
.agent-ico-teal {
  background: rgba(13, 110, 112, 0.2);
}
.agent-ico-teal .material-symbols-outlined {
  color: #5ee0d4;
}
.agent-ico-solid {
  background: var(--t);
  box-shadow: 0 8px 24px rgba(13, 110, 112, 0.45);
}
.agent-ico-solid .material-symbols-outlined {
  color: #fff;
}
.agent-ico-amber {
  background: rgba(229, 162, 39, 0.15);
}
.agent-ico-amber .material-symbols-outlined {
  color: var(--a);
}
.agent-h {
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.agent-p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.68;
  margin-bottom: 24px;
}
.agent-feats {
  margin-bottom: 28px;
}
.agent-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}
.agent-feat.last {
  border-bottom: none;
}
.agent-feat .material-symbols-outlined {
  font-size: 16px;
  flex-shrink: 0;
  color: #5ee0d4;
}
.agent-feat.amber .material-symbols-outlined {
  color: var(--a);
}
.agent-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--t), var(--tl));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 99px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.agent-cta-amber {
  display: flex;
  justify-content: center;
  padding: 12px;
  border-radius: 12px;
  background: rgba(229, 162, 39, 0.12);
  border: 1px solid rgba(229, 162, 39, 0.32);
  color: var(--a);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.agent-cta-amber:hover {
  background: rgba(229, 162, 39, 0.22);
}
.mini-card {
  padding: 22px 18px;
}
.mini-ico {
  color: #5ee0d4;
  font-size: 22px;
  margin-bottom: 9px;
  display: block;
}
.mini-h {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.mini-p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.55;
}

/* COMPARE (supplemental) */
.compare-title {
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: -1.2px;
  margin-bottom: 14px;
}
.cmp-spacer {
  flex: 0 0 50px;
}
.cmp-hdr-ico {
  font-size: 16px;
  vertical-align: middle;
  margin-right: 5px;
}
.cmp-ico {
  font-size: 22px;
}
.cmp-ico.prob {
  color: #ef4444;
}
.cmp-ico.sol {
  color: var(--t);
}
.cmp-arrow-ico {
  color: var(--t);
  font-size: 20px;
}
.cmp-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.delay-0 {
  transition-delay: 0s;
}
.delay-06 {
  transition-delay: 0.06s;
}
.delay-12 {
  transition-delay: 0.12s;
}
.delay-18 {
  transition-delay: 0.18s;
}
.delay-24 {
  transition-delay: 0.24s;
}
.delay-30 {
  transition-delay: 0.3s;
}
.compare-cta {
  text-align: center;
  margin-top: 56px;
}
.compare-note {
  font-size: 13px;
  color: var(--mu);
  margin-top: 14px;
}

/* HOW IT WORKS (panel copy) */
.how-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1.2px;
  margin-bottom: 10px;
}
.how-note {
  font-size: 17px;
  color: var(--mu);
  max-width: 380px;
  margin: 0 auto;
}
.sp-icon-ring .material-symbols-outlined {
  color: #fff;
  font-size: 32px;
}
.sp-kicker {
  font-size: 10px;
  font-weight: 800;
  color: var(--t);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.sp-title {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.sp-desc {
  font-size: 15px;
  color: var(--mu);
  line-height: 1.72;
  margin-bottom: 24px;
}
.sp-chip .material-symbols-outlined {
  font-size: 14px;
}
.sp-cta-wrap {
  margin-top: 28px;
}
.sp-note-box {
  margin-top: 28px;
  padding: 18px 20px;
  background: rgba(13, 110, 112, 0.07);
  border-radius: 14px;
  border: 1px solid rgba(13, 110, 112, 0.15);
}
.sp-note-txt {
  font-size: 13px;
  font-weight: 600;
  color: var(--t);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sp-note-txt .material-symbols-outlined {
  font-size: 16px;
}

/* SERVICES */
.svc-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 52px;
}
.svc-title {
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 900;
  letter-spacing: -1px;
}
.svc-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--t);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 2px solid var(--t);
  padding-bottom: 3px;
}
.svc-all .material-symbols-outlined {
  font-size: 16px;
}
.svc-card {
  padding: 26px;
}
.svc-ico {
  color: var(--t);
  font-size: 26px;
  margin-bottom: 12px;
  display: block;
}
.svc-h {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 7px;
}
.svc-p {
  font-size: 13px;
  color: var(--mu);
  line-height: 1.6;
}

/* BESPOKE */
.bsp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 72px;
}
.bsp-col {
  max-width: 560px;
}
.bsp-title {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 18px;
}
.bsp-title .hl {
  color: #5ee0d4;
}
.bsp-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.72;
  margin-bottom: 32px;
}
.bsp-pills {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bsp-pill-icon .material-symbols-outlined {
  font-size: 20px;
}
.bsp-pill-arrow {
  font-size: 18px;
  margin-left: auto;
  flex-shrink: 0;
}
.bsp-cta-wrap {
  margin-top: 36px;
}
.bsp-diagram-col {
  flex: 1;
  min-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bsp-node {
  --dist: 155px;
}
.ang-0 {
  --angle: 0deg;
}
.ang-36 {
  --angle: 36deg;
}
.ang-72 {
  --angle: 72deg;
}
.ang-108 {
  --angle: 108deg;
}
.ang-144 {
  --angle: 144deg;
}
.ang-180 {
  --angle: 180deg;
}
.ang-216 {
  --angle: 216deg;
}
.ang-252 {
  --angle: 252deg;
}
.ang-288 {
  --angle: 288deg;
}
.ang-324 {
  --angle: 324deg;
}
.bsp-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
#bsp-info {
  margin-top: 20px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  min-height: 64px;
  transition: all 0.3s;
  width: 380px;
}
.bsp-info-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.bsp-info-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}
.bsp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
}
.bsp-stat {
  background: rgba(255, 255, 255, 0.03);
  padding: 28px 32px;
}
.bsp-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.bsp-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* INDUSTRIES */
.industries-title {
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.2px;
  margin-bottom: 12px;
}
.industries-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.44);
  max-width: 420px;
  margin: 0 auto;
}
.ind-card {
  padding: 26px 22px;
}
.si .material-symbols-outlined {
  color: #5ee0d4;
  font-size: 20px;
}
.ind-h {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 7px;
}
.ind-p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.6;
}

/* TESTIMONIALS */
.testi-title {
  font-size: clamp(26px, 3.5vw, 50px);
  font-weight: 900;
  letter-spacing: -1px;
}
.testi-card {
  padding: 38px;
  display: flex;
  flex-direction: column;
}
.testi-stars {
  font-size: 15px;
  margin-bottom: 18px;
}
.testi-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--n);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 24px;
}
.testi-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--br);
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.testi-avatar-1 {
  background: linear-gradient(135deg, var(--t), var(--tl));
}
.testi-avatar-2 {
  background: linear-gradient(135deg, var(--n), #3d5a6b);
}
.testi-avatar-3 {
  background: linear-gradient(135deg, var(--a), #c98b1a);
}
.testi-name {
  font-weight: 700;
  font-size: 14px;
}
.testi-role {
  font-size: 10px;
  font-weight: 700;
  color: var(--mu);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* ABOUT */
.about-grid {
  align-items: center;
  gap: 72px;
}
.asc-inner {
  position: relative;
  z-index: 1;
}
.asc-h {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.asc-p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 32px;
}
.asc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.asc-stat-num {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
}
.asc-stat-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.44);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
}
.asc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.asc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  padding: 6px 13px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}
.asc-tag .material-symbols-outlined {
  font-size: 14px;
  color: #5ee0d4;
}
.about-h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.about-p {
  font-size: 16px;
  color: var(--mu);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-p.tight {
  margin-bottom: 32px;
}
.about-feats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-feat-ico {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}
.about-feat-ico .material-symbols-outlined {
  font-size: 18px;
}
.about-feat-h {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 3px;
}
.about-feat-p {
  font-size: 13px;
  color: var(--mu);
  line-height: 1.6;
}

/* PRICING */
.pricing-title {
  font-size: clamp(26px, 3.5vw, 52px);
  font-weight: 900;
  letter-spacing: -1.2px;
  margin-bottom: 10px;
}
.pricing-grid {
  align-items: start;
  padding-top: 20px;
}
.price-card {
  padding: 40px 34px;
}
.price-featured {
  padding: 52px 34px 40px;
}
.price-tier {
  font-size: 11px;
  font-weight: 800;
  color: var(--mu);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 12px;
}
.price-tier.lt {
  color: rgba(255, 255, 255, 0.55);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 5px;
}
.price-amt {
  font-size: 48px;
  font-weight: 900;
  color: var(--n);
  letter-spacing: -2px;
}
.price-amt.sm {
  font-size: 36px;
  letter-spacing: -1.5px;
}
.price-amt.lt {
  color: #fff;
}
.price-per {
  font-size: 14px;
  color: var(--mu);
  font-weight: 500;
}
.price-per.lt {
  color: rgba(255, 255, 255, 0.5);
}
.price-desc {
  font-size: 13px;
  color: var(--mu);
  margin-bottom: 26px;
  line-height: 1.5;
}
.price-desc.lt {
  color: rgba(255, 255, 255, 0.5);
}
.price-feats {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.price-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.price-feat .material-symbols-outlined {
  color: var(--t);
  font-size: 18px;
  flex-shrink: 0;
}
.price-feat.off {
  color: var(--mu);
}
.price-feat.off .material-symbols-outlined {
  color: #d0ccc7;
}
.price-feat.lt {
  color: rgba(255, 255, 255, 0.85);
}
.price-feat.lt .material-symbols-outlined {
  color: #5ee0d4;
}
.price-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 7px 22px;
  border-radius: 0 0 14px 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}
.price-cta-white {
  width: 100%;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  color: var(--t);
  font-weight: 800;
  border-radius: 12px;
  padding: 16px;
  font-size: 15px;
}

/* FAQ */
.faq-grid {
  align-items: start;
  gap: 80px;
}
.faq-title {
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.faq-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.44);
  line-height: 1.65;
  margin-bottom: 28px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  overflow: hidden;
}
.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.faq-summary .fi {
  color: rgba(255, 255, 255, 0.45);
  font-size: 20px;
  flex-shrink: 0;
}
.faq-answer {
  padding: 0 24px 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* CONTACT */
.contact-grid {
  gap: 72px;
  align-items: start;
}
.contact-h2 {
  font-size: clamp(26px, 3.5vw, 50px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.contact-lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.72;
  margin-bottom: 36px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.contact-info-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-info-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(13, 110, 112, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-ico .material-symbols-outlined {
  color: #5ee0d4;
  font-size: 20px;
}
.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.contact-info-val {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}
.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  padding: 7px 13px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}
.contact-card {
  padding: 44px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}
.contact-card-h {
  font-size: 22px;
  font-weight: 800;
  color: var(--n);
  margin-bottom: 5px;
}
.contact-card-sub {
  font-size: 13px;
  color: var(--mu);
  margin-bottom: 28px;
}
.form-body {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.form-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%236A7A8A" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>');
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
}
.form-note {
  font-size: 11px;
  color: var(--mu);
  text-align: center;
  line-height: 1.5;
}
.form-done {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.form-done-ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(13, 110, 112, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-done-ico .material-symbols-outlined {
  color: var(--t);
  font-size: 28px;
}
.form-done-h {
  font-size: 20px;
  font-weight: 800;
  color: var(--n);
  margin-bottom: 8px;
}
.form-done-p {
  font-size: 14px;
  color: var(--mu);
}

/* FOOTER */
.footer {
  background: var(--nd);
  padding: 68px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 40px;
  margin-bottom: 52px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-logo {
  height: 60px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
}
.footer-logo span {
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.footer-brand-name {
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.3px;
}
.footer-about {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.36);
  line-height: 1.7;
  max-width: 230px;
  margin-bottom: 20px;
}
.footer-col-h {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.32);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ft-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.26);
}

/* CHATBOT (supplemental) */
.chat-btn-ico {
  font-size: 26px;
  color: #fff;
}
.chat-close-ico {
  font-size: 24px;
  color: #fff;
  display: none;
}
.chat-head-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-head-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-head-avatar .material-symbols-outlined {
  color: #fff;
  font-size: 20px;
}
.chat-head-name {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.chat-head-status {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 5px;
}
.chat-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
}
.chat-head-close {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-head-close .material-symbols-outlined {
  color: #fff;
  font-size: 18px;
}
.chat-bot-2 {
  animation-delay: 0.4s;
}
.chat-send-ico {
  font-size: 19px;
  color: #fff;
}

/* THEME SWITCHER (built by JS) */
.tsw-label {
  font-size: 9px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-align: center;
}
.tsw-dots {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
}
.theme-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
  display: block;
  padding: 0;
  outline: none;
}
.theme-dot:hover {
  transform: scale(1.2);
}

/* ══ RESPONSIVE ≤1024px — tablet/small-laptop ═══════════════════════════
   Tightens section padding, grid gaps and the fixed (non-clamp) font sizes
   so the layout stays comfortable between the desktop and 768px breakpoints. */
@media (max-width: 1200px) {
  #nav.sc {
    padding: 0 10px;
  }
}
@media (max-width: 1024px) {
  /* Layout & section rhythm */
  .wrap {
    padding: 0 32px;
  }
  .sec {
    padding: 76px 0;
  }
  .g2 {
    gap: 44px;
  }
  .g3 {
    gap: 18px;
  }

  /* Shared section spacing utilities */
  .mb-52 {
    margin-bottom: 40px;
  }
  .mb-56 {
    margin-bottom: 42px;
  }
  .mb-60 {
    margin-bottom: 44px;
  }
  .mb-64 {
    margin-bottom: 46px;
  }
  .mb-72 {
    margin-bottom: 52px;
  }
  .sec-sub {
    font-size: 15px;
  }

  /* HERO */
  #hero {
    padding-top: 88px;
    padding-bottom: 48px;
  }
  .hero-grid {
    gap: 48px;
  }
  .hero-sub {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .hero-btns {
    margin-bottom: 32px;
  }
  .dash-card {
    padding: 22px;
  }
  .dash-stat-num {
    font-size: 24px;
  }

  /* STATS */
  .stats-sec {
    padding: 56px 0;
  }
  .stat-num {
    font-size: 42px;
    letter-spacing: -1.8px;
  }

  /* AGENTS */
  .agents-title {
    margin-bottom: 12px;
  }
  .agents-sub {
    font-size: 16px;
  }
  .agent-card {
    padding: 28px 22px;
  }
  .agent-featured {
    padding: 30px 22px;
  }
  .agent-h {
    font-size: 19px;
  }
  .agent-p {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .agent-feats {
    margin-bottom: 22px;
  }

  /* HOW IT WORKS */
  .how-title {
    margin-bottom: 8px;
  }
  .sp-content {
    padding: 38px 40px;
  }
  .sp-title {
    font-size: 23px;
  }
  .sp-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* COMPARE */
  .cmp-h {
    font-size: 14px;
  }
  .cmp-p {
    font-size: 12px;
  }

  /* SERVICES */
  .svc-head {
    margin-bottom: 40px;
  }
  .svc-card {
    padding: 22px;
  }

  /* BESPOKE */
  .bsp-head {
    margin-bottom: 52px;
    gap: 32px;
  }
  .bsp-desc {
    font-size: 15px;
    margin-bottom: 26px;
  }
  .bsp-stat {
    padding: 22px 24px;
  }
  .bsp-stat-num {
    font-size: 30px;
  }

  /* INDUSTRIES */
  .industries-sub {
    font-size: 15px;
  }
  .ind-card {
    padding: 22px 18px;
  }

  /* TESTIMONIALS */
  .testi-card {
    padding: 30px;
  }
  .testi-quote {
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* ABOUT */
  .about-grid {
    gap: 48px;
  }
  .about-p {
    font-size: 15px;
  }
  .about-feats {
    margin-bottom: 28px;
  }
  .asc {
    padding: 36px;
  }
  .asc-stat-num {
    font-size: 32px;
  }

  /* PRICING */
  .price-card {
    padding: 32px 26px;
  }
  .price-featured {
    padding: 44px 26px 32px;
  }
  .price-amt {
    font-size: 40px;
    letter-spacing: -1.5px;
  }
  .price-amt.sm {
    font-size: 32px;
  }

  /* FAQ */
  .faq-grid {
    gap: 48px;
  }
  .faq-summary {
    padding: 18px 20px;
    font-size: 14px;
  }
  .faq-answer {
    padding: 0 20px 18px;
    font-size: 13px;
  }

  /* CONTACT */
  .contact-grid {
    gap: 48px;
  }
  .contact-lead {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .contact-info {
    margin-bottom: 28px;
  }
  .contact-card {
    padding: 34px;
  }

  /* FOOTER */
  .footer {
    padding: 56px 0 24px;
  }
  .footer-grid {
    gap: 32px;
    margin-bottom: 42px;
  }
}

/* ══ RESPONSIVE ≤991px — small tablet ═══════════════════════════════════
   Further compresses section rhythm, grid gaps and card padding. */
@media (max-width: 991px) {
  /* Layout & section rhythm */
  .wrap {
    padding: 0 28px;
  }
  .sec {
    padding: 60px 0;
  }
  .g2 {
    gap: 36px;
  }
  .g3 {
    gap: 16px;
  }
  .g4 {
    gap: 12px;
  }

  /* Shared section spacing utilities */
  .mb-52 {
    margin-bottom: 34px;
  }
  .mb-56 {
    margin-bottom: 36px;
  }
  .mb-60 {
    margin-bottom: 38px;
  }
  .mb-64 {
    margin-bottom: 40px;
  }
  .mb-72 {
    margin-bottom: 44px;
  }
  .mt-28 {
    margin-top: 22px;
  }
  .mt-36 {
    margin-top: 28px;
  }

  /* HERO */
  #hero {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-bottom: 40px;
  }
  .hero-grid {
    gap: 40px;
  }
  .hero-btns {
    margin-bottom: 28px;
  }

  /* STATS */
  .stats-sec {
    padding: 48px 0;
  }

  /* AGENTS */
  .agents-grid {
    margin-bottom: 18px;
  }
  .agent-card {
    padding: 24px 20px;
  }
  .agent-featured {
    padding: 26px 20px;
  }

  /* HOW IT WORKS */
  .sp-content {
    padding: 34px 32px;
  }

  /* SERVICES */
  .svc-head {
    margin-bottom: 34px;
  }

  /* BESPOKE */
  .bsp-head {
    margin-bottom: 44px;
  }
  .bsp-stat {
    padding: 20px 20px;
  }
  .bsp-stat-num {
    font-size: 26px;
  }

  /* TESTIMONIALS */
  .testi-card {
    padding: 26px;
  }

  /* ABOUT */
  .about-grid {
    gap: 40px;
  }
  .about-feats {
    margin-bottom: 24px;
  }
  .asc {
    padding: 32px;
  }

  /* PRICING */
  .pricing-grid {
    padding-top: 12px;
  }
  .price-card {
    padding: 28px 22px;
  }
  .price-featured {
    padding: 38px 22px 28px;
  }

  /* FAQ */
  .faq-grid {
    gap: 40px;
  }

  /* CONTACT */
  .contact-grid {
    gap: 40px;
  }
  .contact-card {
    padding: 30px;
  }

  /* FOOTER */
  .footer {
    padding: 48px 0 22px;
  }
  .footer-grid {
    gap: 28px;
    margin-bottom: 36px;
  }
}

/* ══ RESPONSIVE ≤767px — bespoke stat sizing ═══════════════════════════ */
@media (max-width: 767px) {
  .bsp-stat-num {
    font-size: 24px;
  }
}

/* ══ RESPONSIVE ≤575px — phones ════════════════════════════════════════
   Compact single-column rhythm, smaller bespoke stat numbers, and
   heading font sizes stepped down to suit phone-width screens. */
@media (max-width: 575px) {
  /* Responsive (mobile) menu — smaller links on phones */
  .ml {
    font-size: 18px;
    padding: 7px 0;
  }

  /* Layout & section rhythm */
  .wrap {
    padding: 0 18px;
  }
  .sec {
    padding: 52px 0;
  }
  .g2,
  .g3 {
    gap: 22px;
  }
  .g4 {
    gap: 12px;
  }

  /* Section header margins */
  .mb-52 {
    margin-bottom: 28px;
  }
  .mb-56 {
    margin-bottom: 30px;
  }
  .mb-60 {
    margin-bottom: 32px;
  }
  .mb-64 {
    margin-bottom: 32px;
  }
  .mb-72 {
    margin-bottom: 36px;
  }

  /* HEADINGS — clamp floors are too large for phones; step them down.
     Each rule overrides the clamp()/fixed min so titles shrink with the
     viewport instead of staying locked at their desktop minimum. */
  .hero-h1 {
    font-size: 34px;
    letter-spacing: -1px;
    margin-bottom: 18px;
  }
  .agents-title {
    font-size: 27px;
    letter-spacing: -1px;
  }
  .agents-sub {
    font-size: 15px;
  }
  .compare-title {
    font-size: 26px;
    letter-spacing: -0.8px;
  }
  .how-title {
    font-size: 26px;
    letter-spacing: -0.8px;
  }
  .how-note {
    font-size: 15px;
  }
  .svc-title {
    font-size: 25px;
    letter-spacing: -0.6px;
  }
  .bsp-title {
    font-size: 27px;
    letter-spacing: -1px;
  }
  .bsp-desc {
    font-size: 15px;
  }
  .industries-title {
    font-size: 26px;
    letter-spacing: -0.8px;
  }
  .industries-sub {
    font-size: 14px;
  }
  .testi-title {
    font-size: 25px;
    letter-spacing: -0.6px;
  }
  .about-h2 {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .asc-h {
    font-size: 21px;
  }
  .pricing-title {
    font-size: 25px;
    letter-spacing: -0.8px;
  }
  .faq-title {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .contact-h2 {
    font-size: 24px;
    letter-spacing: -0.8px;
  }
  .contact-card-h {
    font-size: 20px;
  }
  .sec-sub {
    font-size: 14px;
  }

  /* HERO */
  #hero {
    padding-top: 74px;
    padding-bottom: 74px;
  }
  .toast-1 {
    left: -7px;
  }
  .dash-wrap {
    position: relative;
    margin-top: 30px;

    padding-bottom: 32px;
  }
  .hero-grid {
    gap: 32px;
  }
  .hero-sub {
    font-size: 15px;
  }
  .dash-card {
    padding: 18px;
  }

  /* STATS */
  .stats-sec {
    padding: 40px 0;
  }
  .stat-num {
    font-size: 30px;
    letter-spacing: -1px;
  }

  /* AGENTS */
  .agent-card,
  .agent-featured {
    padding: 22px 18px;
  }
  .agent-h {
    font-size: 18px;
  }

  /* HOW IT WORKS */
  .sp-content {
    padding: 28px 22px;
  }
  .sp-title {
    font-size: 21px;
  }

  /* SERVICES */
  .svc-card {
    padding: 20px;
  }

  /* BESPOKE */
  .bsp-stats {
    grid-template-columns: 1fr 1fr;
  }
  .bsp-stat {
    padding: 18px 16px;
  }
  .bsp-stat-num {
    font-size: 22px;
  }

  /* TESTIMONIALS */
  .testi-card {
    padding: 24px;
  }

  /* ABOUT */
  .asc {
    padding: 26px;
  }
  .asc-stat-num {
    font-size: 28px;
  }

  /* PRICING */
  .price-card,
  .price-featured {
    padding: 26px 20px;
  }
  .price-amt {
    font-size: 28px;
  }
  .price-amt.sm {
    font-size: 28px;
  }

  /* CONTACT */
  .contact-card {
    padding: 26px;
  }

  /* FOOTER */
  .footer {
    padding: 44px 0 20px;
  }
  /* Collapse the 4-column footer to 2 columns. At its full 4-up width the
     link columns fall below the min-width of single words like
     "Testimonials"/"Automation" on narrow phones, forcing horizontal
     overflow. Two columns keep every word inside its track. */
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 20px;
  }
  /* .footer-grid > div:first-child {
    grid-column: auto;
  } */
   .footer-grid > :first-child {
    grid-column: 1 / -1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer-about{
  max-width: 100%;
  text-align: center;
}
  .form-row2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
  }

  /* CHATBOT — shrink so the panel fits within the viewport on phones.
     Pull the widget closer to the corner and size the window to the
     available width instead of a fixed 340px. */
  #chat-widget {
    bottom: 18px;
    left: 18px;
  }
  #chat-btn {
    width: 50px;
    height: 50px;
  }
  #chat-window {
    bottom: 62px;
    width: calc(100vw - 36px);
    max-width: 320px;
  }
  #chat-msgs {
    max-height: 240px;
    min-height: 150px;
    padding: 14px 12px;
  }
  #chat-header {
    padding: 13px 14px;
  }
  #chat-input-row {
    padding: 10px 12px;
  }
}

/* ══ RESPONSIVE ≤400px — small phones ══════════════════════════════════
   Final step-down for the narrowest devices so headings never overflow
   and long words don't force horizontal scroll. */
@media (max-width: 400px) {
  .wrap {
    padding: 0 14px;
  }

  /* Headings — one more notch smaller */
  .hero-h1 {
    font-size: 30px;
    letter-spacing: -0.5px;
  }
  .agents-title {
    font-size: 24px;
  }
  .compare-title {
    font-size: 23px;
  }
  .how-title {
    font-size: 23px;
  }
  .svc-title {
    font-size: 22px;
  }
  .bsp-title {
    font-size: 24px;
  }
  .industries-title {
    font-size: 23px;
  }
  .testi-title {
    font-size: 22px;
  }
  .about-h2 {
    font-size: 22px;
  }
  .asc-h {
    font-size: 20px;
  }
  .pricing-title {
    font-size: 22px;
  }
  .faq-title {
    font-size: 22px;
  }
  .contact-h2 {
    font-size: 22px;
  }
  .sp-title {
    font-size: 19px;
  }

  /* Guard against long words (URLs, emails) overflowing narrow screens */
  .hero-h1,
  .agents-title,
  .compare-title,
  .how-title,
  .svc-title,
  .bsp-title,
  .industries-title,
  .testi-title,
  .about-h2,
  .pricing-title,
  .faq-title,
  .contact-h2 {
    overflow-wrap: break-word;
  }

  /* Stats & bespoke numbers a touch smaller to hold two-up layout */
  .stat-num {
    font-size: 25px;
  }
  .bsp-stats {
    grid-template-columns: 1fr;
  }
  .footer-grid{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-bottom {
    text-align: center;
    justify-content: center;
}
}

.bdg.text-white{
  color: #fff !important;
  border-color: #ffffff85 !important;
}

#tsw{
  display: none;
}