/* =====================================================================
   WFX · Fashion PLM Software — landing page
   Brand system from Figma source:
   • Primary  #0099C4   • Secondary #00CEC6
   • Ink #212529 · Muted #4A5565 · Cream #FBE8CF
   • Mint bg #F5FDFF · Lavender #F0F1F7
   • Display: Cabin 700 · Body: Open Sans 400/500/700
   ===================================================================== */
:root {
  --teal: #0099c4;
  --teal-2: #00cec6;
  --teal-deep: rgba(0, 153, 196, 1);
  --teal-soft: rgba(0, 153, 196, 0.1);
  --teal-line: rgba(0, 153, 196, 0.35);

  --ink: #212529;
  --ink-2: #2e3540;
  --muted: #4a5565;
  --muted-2: #6b7480;

  --cream: #fbe8cf;
  --mint: #f5fdff;
  --lavender: #f0f1f7;
  --paper: #ffffff;

  --line: rgba(33, 37, 41, 0.08);
  --line-2: rgba(33, 37, 41, 0.14);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;

  --shadow-sm:
    0 1px 2px rgba(33, 37, 41, 0.05), 0 4px 14px rgba(33, 37, 41, 0.04);
  --shadow-md:
    0 6px 22px rgba(33, 37, 41, 0.07), 0 2px 6px rgba(33, 37, 41, 0.04);
  --shadow-lg:
    0 24px 56px rgba(33, 37, 41, 0.1), 0 8px 22px rgba(33, 37, 41, 0.05);
  --shadow-brand: 0 12px 36px rgba(0, 153, 196, 0.22);

  --grad-cta: linear-gradient(95deg, #00cec6 0%, #0099c4 100%);
  --grad-text: linear-gradient(95deg, #0099c4 0%, #00cec6 100%);
  --grad-mint: linear-gradient(180deg, #ffffff 0%, #f5fdff 100%);
  --grad-cream: linear-gradient(180deg, #ffffff 0%, #fff7ec 100%);
  --text-white: #eef4fa;
  --text-grey: #8190a4;
  --accent-blue: #2197d6;
  --green-dot: #4ade80;
  --quote-teal: #2c7e84;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Open Sans",
    system-ui,
    -apple-system,
    Segoe UI,
    Helvetica,
    Arial,
    sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

/* =====================================================================
   TYPOGRAPHY (Cabin display + Open Sans body)
===================================================================== */
.display,
h1,
h2,
h3,
h4 {
  font-family: "Cabin", "Open Sans", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
}
h1 {
  font-size: clamp(46px, 5.6vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
}
h2 {
  font-size: clamp(34px, 4vw, 45px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin: 0;
  text-wrap: balance;
}
h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.18;
  margin: 0;
}
h4 {
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-2);
  box-shadow: 0 0 0 4px rgba(0, 206, 198, 0.18);
}
.eyebrow.light {
  color: rgba(255, 255, 255, 0.85);
}
.eyebrow.light .dot {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 540px;
  margin: 0;
}
.muted {
  color: var(--muted);
}

/* =====================================================================
   LAYOUT
===================================================================== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
section {
  position: relative;
}
.section {
  padding: 120px 0;
}
.section-head {
  text-align: center;
  max-width: 787px;
  margin: 0 auto 43px;
}
.section-head h2 {
  margin: 14px 0 14px;
}
.section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
  text-wrap: pretty;
}

/* =====================================================================
   BUTTONS
===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  color: #fff;
  background-color: #00b5b8;
  box-shadow:
    0 8px 22px rgba(0, 153, 196, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25) !;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 30px rgba(0, 153, 196, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-ghost {
  color: var(--teal);
  background: #fff;
  border: 1.5px solid var(--teal);
}
.btn-ghost:hover {
  background: var(--teal-soft);
}
.btn-dark {
  color: #fff;
  background: var(--ink);
}
.btn-dark:hover {
  background: #000;
}
.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn:hover .arrow {
  transform: translateX(3px);
}

/* =====================================================================
   NAV
===================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo svg {
  height: 28px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 15px;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.nav-links a:hover {
  background: var(--teal-soft);
  color: var(--teal-deep);
}
.nav-links .chev {
  opacity: 0.55;
  font-size: 10px;
  transform: translateY(1px);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =====================================================================
   HERO  — thread in background only
===================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 110px;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 153, 196, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 153, 196, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(60% 50% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero::before,
.trusted::after,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero::before {
  width: 560px;
  height: 560px;
  left: -180px;
  top: -180px;
  opacity: 0.55;
  background: radial-gradient(circle, #00b1c9 0%, transparent 70%);
}
.trusted::after,
.hero::after {
  width: 640px;
  height: 640px;
  right: -220px;
  bottom: -280px;
  opacity: 0.45;
  background: radial-gradient(circle, #fbe8cf -104%, transparent 53%);
}

/* the thread, behind everything */
.hero-thread-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
}
.hero-thread-draw {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: heroThreadDraw 2.6s cubic-bezier(0.7, 0, 0.2, 1) 0.25s forwards;
}
@keyframes heroThreadDraw {
  to {
    stroke-dashoffset: 0;
  }
}
.hero-thread-stitch {
  stroke-dasharray: 6 8;
  opacity: 0;
  animation: heroThreadStitch 22s linear infinite 2.6s forwards;
}
@keyframes heroThreadStitch {
  0% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
  6% {
    opacity: 0.55;
  }
  100% {
    opacity: 0.55;
    stroke-dashoffset: -360;
  }
}
.hero-thread-bead {
  fill: #0099c4;
  animation: beadPulse 1.6s ease-in-out infinite;
}
@keyframes beadPulse {
  0%,
  100% {
    r: 5;
  }
  50% {
    r: 7;
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.ai-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(
    95deg,
    rgba(0, 206, 198, 0.14),
    rgba(0, 153, 196, 0.14)
  );
  border: 1px solid rgba(0, 153, 196, 0.25);
  color: var(--teal-deep);
}
.ai-pill .ai-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00cec6;
  box-shadow: 0 0 0 4px rgba(0, 206, 198, 0.22);
  animation: beadPulse2 1.8s ease-in-out infinite;
}
@keyframes beadPulse2 {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(0, 206, 198, 0.22);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(0, 206, 198, 0.1);
  }
}

.hero h1 .accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .underline {
  position: relative;
  white-space: nowrap;
}
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 4px;
  height: 10px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8' preserveAspectRatio='none'><path d='M0 4 Q12 0 24 4 T48 4 T72 4 T96 4 T120 4 T144 4 T168 4 T200 4' fill='none' stroke='%2300CEC6' stroke-width='1.8' opacity='.85'/></svg>")
    repeat-x;
  background-size: 100% 100%;
}
.hero p.lede {
  margin: 24px 0 32px;
  max-width: 520px;
  font-size: 19px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 20px;
}
.hero-trust .stars {
  color: #f5a623;
  letter-spacing: 0.04em;
  font-size: 15px;
}
.hero-trust strong {
  color: var(--ink);
  font-weight: 700;
}
.hero-trust .sep {
  width: 1px;
  height: 18px;
  background: var(--line-2);
}

/* hero visual — garment passport */
.hero-card {
  position: relative;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, #ffffff 0%, #f5fdff 100%);
  border: 1px solid var(--line);
  padding: 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hpp-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(
    90deg,
    rgba(0, 153, 196, 0.06),
    rgba(0, 206, 198, 0.08)
  );
  border-bottom: 1px dashed rgba(33, 37, 41, 0.16);
}
.hpp-bar .pp-id {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 700;
  font-size: 11.5px;
  background: var(--ink);
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  letter-spacing: 0.06em;
}
.hpp-bar .pp-name {
  color: var(--ink);
  font-weight: 600;
  flex: 1;
  font-size: 14px;
}
.hpp-bar .pp-stage {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad-cta);
  padding: 5px 10px;
  border-radius: 50px;
}
.hpp-frame {
  position: relative;
  background: #fff;
  height: 457px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px dashed rgba(33, 37, 41, 0.16);
}
.frame-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  background: #fcfefe;
}
.frame-dots {
  display: flex;
  gap: 6px;
}
.frame-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e5eaee;
}
.frame-dots span:nth-child(1) {
  background: #ff9c9c;
}
.frame-dots span:nth-child(2) {
  background: #ffd27a;
}
.frame-dots span:nth-child(3) {
  background: #9ce0ab;
}
.frame-tabs {
  display: flex;
  gap: 4px;
  font-size: 11px;
  color: var(--muted);
}
.frame-tabs .tab {
  padding: 4px 8px;
  border-radius: 5px;
  background: #f1f6f7;
}
.frame-tabs .tab.active {
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-weight: 600;
}
.frame-body {
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 12px;
  flex: 1;
  min-height: 0;
}

.mini-side {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11.5px;
  color: var(--ink-2);
}
.mini-side .row {
  padding: 7px 9px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mini-side .row .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccd3da;
}
.mini-side .row.active {
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-weight: 700;
}
.mini-side .row.active .dot {
  background: var(--teal);
}

.mini-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.mini-main .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
}
.mini-main .head strong {
  color: var(--ink);
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mini-card {
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  padding: 7px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mini-swatch {
  height: 40px;
  border-radius: 5px;
  background: linear-gradient(135deg, #f5fdff, #fbe8cf);
}
.mini-swatch.b {
  background: linear-gradient(135deg, #f0f1f7, #f5fdff);
}
.mini-swatch.c {
  background: linear-gradient(135deg, #fbe8cf, #ffd7c0);
}
.mini-card .meta {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  color: var(--muted);
}
.mini-card .meta b {
  color: var(--ink);
}

.mini-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  font-size: 11px;
}
.mini-table .row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-top: 1px solid var(--line);
}
.mini-table .row:first-child {
  border-top: 0;
  background: #f7fafb;
  color: var(--muted);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mini-table .row > div {
  padding: 6px 9px;
}
.pill {
  display: inline-block;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.pill-ok {
  background: rgba(34, 153, 84, 0.13);
  color: #1f6a3d;
}
.pill-warn {
  background: rgba(244, 165, 58, 0.18);
  color: #a66400;
}
.pill-info {
  background: var(--teal-soft);
  color: var(--teal-deep);
}

.hpp-tape {
  position: relative;
  height: 24px;
  background: #fbfefe;
  display: flex;
  align-items: center;
  padding: 0 16px;
}
.hpp-tape svg {
  flex: 1;
  height: 14px;
  display: block;
}
.hpp-tape-num {
  font-family: "Open Sans";
  font-size: 10px;
  color: var(--muted);
  margin-left: 8px;
  letter-spacing: 0.08em;
}

/* AI toast on the hero card */
.ai-toast {
  position: absolute;
  left: 18px;
  bottom: 78px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(0, 153, 196, 0.25);
  border-radius: 12px;
  padding: 9px 12px 9px 10px;
  box-shadow: var(--shadow-md);
  max-width: 240px;
  animation: aiToastIn 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s both;
}
@keyframes aiToastIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.ai-toast small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}
.ai-toast strong {
  font-size: 12px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.005em;
}

/* floating chips on hero card */
.chip {
  position: absolute;
  z-index: 7;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 9px 14px;
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  animation: floaty 6s ease-in-out infinite;
}
.chip .ico {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 11px;
}
.chip-1 {
  top: 24px;
  left: -22px;
  animation-delay: 0.2s;
}
.chip-1 .ico {
  background: var(--grad-cta);
}
.chip-2 {
  top: 46%;
  right: -26px;
  animation-delay: 1.1s;
}
.chip-2 .ico {
  background: linear-gradient(135deg, #f5a623, #e07b00);
}
.chip-3 {
  bottom: 39px;
  animation-delay: 0.6s;
  left: -28px;
}
.chip-3 .ico {
  background: linear-gradient(135deg, #7b61ff, #3d2fa8);
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* =====================================================================
   TRUSTED BY — real customer logos
===================================================================== */
.trusted {
  background: var(--paper);
  /* border-top: 1px solid var(--line); */
  border-bottom: 1px solid var(--line);
  padding: 18px 0 48px 0;
  overflow: hidden;
}
.trusted-logo-subtext {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  text-wrap: pretty;
  font-family: "Cabin";
  text-align: center;
  margin-bottom: 12px;
}
.trusted .label {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-top: 20px;
}
.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}
.marquee-track {
  display: flex;
  gap: 72px;
  align-items: center;
  animation: scroll 120s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.brand-logo {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: #111111;
  opacity: 0.8;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    opacity 0.25s ease,
    color 0.25s ease;
  font-size: 22px;
}
.brand-logo:hover {
  opacity: 1;
  color: var(--teal-deep);
}
.brand-logo.serif {
  font-family: "Georgia", serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.brand-logo.spaced {
  letter-spacing: 0.25em;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
}
.brand-logo.allcaps {
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 20px;
}
.brand-logo.script {
  font-family: "Cabin", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -1px;
}
.brand-logo.bold {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1px;
}
.brand-logo.condensed {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-logo .mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

/* =====================================================================
   PROBLEM — "Tear in the Tape"
===================================================================== */
.problem {
  background:
    radial-gradient(
      50% 40% at 12% 20%,
      rgba(0, 153, 196, 0.05),
      transparent 60%
    ),
    radial-gradient(
      50% 40% at 88% 80%,
      rgba(251, 232, 207, 0.4),
      transparent 60%
    ),
    #ffffff;
  padding-top: 60px;
  padding-bottom: 85px;
}
.problem .section-head h2 em {
  font-style: normal;
  background: linear-gradient(95deg, #0099c4 0%, #00cec6 60%, #f5a623 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.problem .section-head h2 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f5a623, transparent);
}

.cutting-table {
  position: relative;
  padding: 0px 0 12px;
  margin-top: 24px;
}
.problem-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  z-index: 2;
}
.prob-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease,
    border-color 0.25s ease;
  box-shadow: 0 1px 0 rgba(33, 37, 41, 0.02);
  overflow: hidden;
  justify-content: space-between;
}
.prob-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 153, 196, 0.5),
    rgba(245, 166, 35, 0.4),
    transparent
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.prob-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 50px rgba(33, 37, 41, 0.08),
    0 4px 12px rgba(33, 37, 41, 0.04);
  border-color: var(--teal-line);
}
.prob-card:hover::before {
  transform: scaleX(1);
}

.prob-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.prob-num {
  font-family: "Open Sans", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, var(--ink) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.prob-tag {
  font-family: "Cabin", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--teal-deep);
  background: var(--teal-soft);
  padding: 5px 9px;
  border-radius: 6px;
  border: 1px solid var(--teal-line);
}
.prob-art {
  position: relative;
  height: 170px;
  border-radius: 14px;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(33, 37, 41, 0.03) 0 1px,
      transparent 1px 12px
    ),
    linear-gradient(180deg, #fafcfd 0%, #f5fdff 100%);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.prob-card:hover .prob-art {
  background: linear-gradient(180deg, #f5fdff 0%, #ecfafc 100%);
}
.prob-body h4 {
  font-size: 22px;
  line-height: 1.22;
  margin: 0 0 8px;
  text-wrap: balance;
}
.prob-body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.prob-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-2);
}
.prob-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}
.prob-metric small {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700;
}
.prob-metric strong {
  font-family: "Cabin", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.prob-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c24a4a;
  box-shadow: 0 0 0 4px rgba(194, 74, 74, 0.15);
  animation: probPulse 2s ease-in-out infinite;
}
@keyframes probPulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(194, 74, 74, 0.15);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(194, 74, 74, 0.05);
  }
}

.problem-answer {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 26px;
  border-radius: 50px;
  background: linear-gradient(
    95deg,
    rgba(0, 181, 184, 0.08) 0%,
    rgba(244, 165, 58, 0.08) 100%
  );
  border: 1px solid var(--teal-line);
  max-width: 852px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.pa-pulse {
  position: relative;
  width: 14px;
  height: 14px;
  flex: none;
}
.pa-pulse span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--teal);
  animation: aiBlip 1.8s ease-out infinite;
}
.pa-pulse span:nth-child(2) {
  animation-delay: 0.3s;
  background: var(--teal-2);
}
.pa-pulse span:nth-child(3) {
  animation-delay: 0.6s;
}
.pa-pulse::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--teal);
}
@keyframes aiBlip {
  0% {
    transform: scale(0.4);
    opacity: 0.9;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
.pa-text {
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 500;
}
.pa-cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pa-cta:hover {
  text-decoration: underline;
}

/* =====================================================================
   TRUSTED BY — Brand Carousel
===================================================================== */
.trusted {
  padding: 45px 0;
}

.trusted .label {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.trusted-carousel {
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  min-height: 120px;
  display: block;
  overflow: visible !important;
}

.carousel-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  outline: none;
  width: auto !important;
}

.carousel-slide img {
  max-width: 150px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.3s ease;
  width: 100%;
}

.carousel-slide:hover img {
  opacity: 1;
}

/* Slick carousel overrides */
.trusted-carousel.slick-initialized {
  display: block;
}

.trusted-carousel .slick-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  float: none !important;
  height: auto;
  min-height: 120px;
  width: auto !important;
  overflow: visible !important;
}

.trusted-carousel .slick-list {
  margin: 0 -10px;
  display: block;
  min-height: 120px;
  /* overflow: visible !important; */
}

.trusted-carousel .slick-track {
  display: flex;
  align-items: center;
  position: relative;
  left: 0;
  top: 0;
  zoom: 1;
  min-height: 120px;
}

/* =====================================================================
   BUSINESS IMPACT — 5 ways to grow
===================================================================== */
.business-impact {
  background:
    radial-gradient(
      50% 40% at 15% 15%,
      rgba(0, 206, 198, 0.05),
      transparent 60%
    ),
    radial-gradient(
      50% 40% at 85% 85%,
      rgba(251, 232, 207, 0.3),
      transparent 60%
    ),
    #ffffff;
  padding: 60px 0 80px;
  border-top: 1px solid #80808015;
}

.impact-list {
  display: flex;
  flex-direction: column;
  gap: 0;

  max-width: 80%;
  margin: 0 auto;
  margin-top: 40px;
}

.impact-item {
  display: grid;
  grid-template-columns: 100px 1fr 1.5fr;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid transparent;
  transition: background-color 0.3s ease;
  position: relative;
}

.impact-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #00cec6 0%, #0099c4 100%);
  transition: height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.impact-item:last-child {
  border-bottom: none;
}

.impact-item:hover {
  background: linear-gradient(180deg, #f5fdff, #ecf7f8);
}

.impact-item:hover::before {
  height: 100%;
}

.impact-num-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-num {
  font-family:
    Open Sans,
    sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px var(--teal);
  line-height: 1;
  letter-spacing: -0.03em;
}

.impact-title-col {
  display: flex;
  align-items: center;
}

.impact-title-col h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
  width: 200px;
}

.impact-title-col h3 em {
  font-style: normal;
  color: var(--teal-2);
  font-weight: 700;
}

.impact-desc-col {
  display: flex;
  align-items: center;
}

.impact-desc-col p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.impact-desc-col p strong {
  color: var(--ink);
  font-weight: 700;
}

/* =====================================================================
   CAPABILITIES — "The Thread" pinned-parallax
===================================================================== */
.capabilities {
  background:
    radial-gradient(
      60% 50% at 18% 10%,
      rgba(0, 153, 196, 0.08),
      transparent 60%
    ),
    radial-gradient(
      60% 50% at 82% 90%,
      rgba(251, 232, 207, 0.5),
      transparent 60%
    ),
    linear-gradient(180deg, #ffffff 0%, #f5fdff 50%, #ffffff 100%);
  position: relative;
}
/* .capabilities::after {
  content: "";
  position: fixed;
  width: 500px;
  height: 500px;
  background: linear-gradient(
    0deg,
    rgba(255, 248, 240, 1) 66%,
    rgba(237, 221, 83, 0) 100%
  );
  top: 203px;
  right: 0;
} */
.thread-rail {
  position: sticky;
  top: 61px;
  z-index: 5;
  padding: 0;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.thread-track {
  position: relative;
  padding: 30px 0; /* space above and below line */
  display: flex;
  align-items: center;
}
.straight-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background: #e2e8f0;
  z-index: 1;
  top: 51px;
}
.straight-line-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(90deg, #0099c4, #00cec6);
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 2px;
}
.stations {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.station {
  pointer-events: auto;
  background: none;
  border: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  padding: 0;
  color: var(--muted);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.station-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  display: grid;
  place-items: center;
  color: #6f7884;
  font-size: 12px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 2;
}
.station.passed .station-dot {
  border-color: var(--teal);
  color: var(--teal);
}
.station.active .station-dot {
  background: linear-gradient(90deg, #00d1cf 0, #0099c4 100%);
  /* border-color: var(--teal); */
  color: #fff;
}
.station.active .station-dot::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(0, 181, 184, 0.08);
  border: 1px solid rgba(0, 181, 184, 0.15);
  z-index: -1;
  animation: stationPulse 2s ease-in-out infinite;
}

@keyframes stationPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 181, 184, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(0, 181, 184, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 181, 184, 0);
  }
}
.station-label {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.station-label strong {
  font-size: 15px;
  font-weight: 700;
  color: #4a5565;
  transition: color 0.25s;
}
.station.passed .station-label strong {
  color: #212529;
}
.station.active .station-label strong {
  color: var(--teal);
}

.cap-pin-wrap {
  position: relative;
}
.cap-pin {
  position: sticky;
  top: 200px;
  height: calc(100vh - 170px);
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0px;
  align-items: center;
}
.cap-text {
  padding: 20px 0;
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-start;
}
.cap-text-stack {
  position: relative;
  width: 100%;
  min-height: 480px;
}
.cap-slide {
  position: absolute;
  inset: auto 0 0 0;
  top: 0;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.cap-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.slide-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.slide-num {
  font-family: "Cabin", sans-serif;
  font-size: 12px;
  color: var(--teal-deep);
  background: var(--teal-soft);
  padding: 4px 9px;
  border-radius: 6px;
  letter-spacing: 0.06em;
}
.slide-stage {
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.cap-slide h3 {
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 7px;
  text-wrap: balance;
}
.cap-slide p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 22px;
  /* max-width: 520px; */
}
.cap-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cap-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-2);
}
.cap-list .check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--teal-soft);
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}
.ai-ribbon {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(
    95deg,
    rgba(0, 206, 198, 0.1),
    rgba(0, 153, 196, 0.1)
  );
  border: 1px solid rgba(0, 153, 196, 0.22);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 11px;
  width: 97%;
  position: relative;
}
.ai-ribbon .ai-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}
.ai-ribbon .ai-text small {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 700;
}
.ai-ribbon .ai-text strong {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 600;
}
.ai-pulse {
  position: relative;
  width: 14px;
  height: 14px;
  flex: none;
}
.ai-pulse span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #00b5b8;
  animation: aiBlip 1.8s ease-out infinite;
}
.ai-pulse span:nth-child(2) {
  animation-delay: 0.3s;
  background: #00b5b8;
}
.ai-pulse span:nth-child(3) {
  animation-delay: 0.6s;
  background: #00b5b8;
}
.ai-pulse::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #00b5b8;
}
.ai-pulse.small {
  width: 10px;
  height: 10px;
  margin-top: 3px;
}
.ai-pulse.small::after {
  inset: 3px;
}
.cap-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cap-link {
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cap-link:hover {
  text-decoration: underline;
}

/* RIGHT — passport */
.cap-stage-right {
  height: 100%;
  display: flex;
  align-items: baseline;
  width: 100%;
  text-align: center;
  justify-content: end;
}
.cap-stage-right img {
  max-width: 83%;
}
.passport {
  width: 100%;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, #ffffff 0%, #f5fdff 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.passport::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #00b5b8, #f4a53a, #0e8a8c);
}
.passport-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  /* background: linear-gradient(180deg, #fbfefe, #f5fdff); */
}
.pp-id {
  font-family: "Open Sans";
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--teal-deep);
  background: var(--teal-soft);
  padding: 5px 9px;
  border-radius: 6px;
}
.pp-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  flex: 1;
}
.pp-stage {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad-cta);
  padding: 5px 10px;
  border-radius: 50px;
}
.passport-body {
  padding: 14px;
  background: linear-gradient(180deg, #f5fdff, #ecf7f8);
}
.passport-handoff {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 18px;
  border-top: 1px solid var(--line);
  background: #fff;
  font-size: 11.5px;
}
.hand-arrow {
  color: var(--muted);
  letter-spacing: 0.04em;
}
.hand-arrow.right {
  margin-left: auto;
}
.hand-pill {
  font-family: "Open Sans";
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-2);
  background: #f4f9f9;
  border: 1px solid var(--line);
  padding: 4px 9px;
  border-radius: 6px;
}

.cap-screen {
  position: relative;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #f5fdff, #e5f4f6);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: clamp(341px, 50vh, 540px);
  /* padding: 14px; */
}
.cap-screen .grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(33, 37, 41, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 37, 41, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(70% 70% at 50% 50%, #000 30%, transparent 90%);
}
.cap-screen-frame {
  position: relative;
  z-index: 2;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}
.cap-screen-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.cap-screen-bar .crumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  flex: 1;
}
.cap-screen-bar .crumbs b {
  color: var(--ink);
}
.cap-screen-body {
  position: relative;
  flex: 1;
  min-height: 0;
}
.cap-view {
  position: absolute;
  inset: 0;
  padding: 18px;
  opacity: 0;
  transform: scale(0.985) translateY(8px);
  transition:
    opacity 0.5s ease,
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.cap-view.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.cap-progress {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 6px;
  z-index: 6;
}
.cap-progress span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(33, 37, 41, 0.18);
  transition: all 0.25s;
}
.cap-progress span.active {
  background: var(--teal);
  width: 22px;
  border-radius: 8px;
}

/* shared screen elements */
.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.kpi {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  background: #fcfefe;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.kpi .lab {
  font-size: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
}
.kpi .val {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 2px;
  font-family: "Cabin", sans-serif;
}
.kpi .delta {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-deep);
  margin-top: 2px;
}
.kpi .delta.down {
  color: #c24a4a;
}

.assort-table {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.assort-table .h,
.assort-table .r {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr 1.1fr;
  font-size: 12.5px;
}
.assort-table .h {
  background: #f6fafb;
  color: var(--muted);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.assort-table .h > div,
.assort-table .r > div {
  padding: 9px 12px;
}
.assort-table .r {
  border-top: 1px solid var(--line);
}
.assort-table .r:hover {
  background: #f8fcfc;
}
.bar-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bar {
  flex: 1;
  height: 6px;
  background: #eef3f4;
  border-radius: 99px;
  overflow: hidden;
}
.bar > i {
  display: block;
  height: 100%;
  background: var(--grad-cta);
  border-radius: 99px;
  animation: barGrow 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes barGrow {
  from {
    width: 0;
  }
}

.tp-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
  height: 100%;
}
.tp-l {
  display: grid;
  grid-template-rows: 1.2fr 0.9fr;
  gap: 10px;
}
.tp-hero {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(135deg, #fbe8cf 0%, #f4d5a8 40%, #f0f1f7 100%);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.tp-hero .silhouette {
  width: 60%;
  height: 88%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0)
  );
  clip-path: polygon(
    40% 0,
    60% 0,
    68% 12%,
    82% 18%,
    86% 35%,
    72% 40%,
    75% 100%,
    25% 100%,
    28% 40%,
    14% 35%,
    18% 18%,
    32% 12%
  );
}
.swatch-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.sw {
  aspect-ratio: 1;
  border-radius: 10px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.sw::after {
  content: attr(data-h);
  position: absolute;
  left: 6px;
  bottom: 5px;
  font-size: 9px;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 600;
  font-family: "Open Sans";
}
.tp-r {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tp-meta {
  font-size: 11px;
  color: var(--muted);
}
.tp-meta b {
  color: var(--ink);
}
.tp-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 12px;
}
.tp-row b {
  font-weight: 600;
}

.dev-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 14px;
  height: 100%;
}
.spec-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spec-img {
  height: 55%;
  border-radius: 10px;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(0, 153, 196, 0.08) 0 8px,
      transparent 8px 16px
    ),
    linear-gradient(180deg, #f5fdff, #e5f3f3);
  border: 1px dashed rgba(0, 153, 196, 0.3);
  position: relative;
}
.spec-img::after {
  content: "FRONT • BACK • DETAIL";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Open Sans";
  font-size: 11px;
  color: var(--teal-deep);
  letter-spacing: 0.16em;
}
.spec-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  font-size: 11.5px;
}
.spec-meta div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--line);
  padding: 4px 0;
}
.spec-meta b {
  color: var(--ink);
}
.thread {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.msg {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12.5px;
}
.msg.you {
  background: #f5fdff;
  border-color: var(--teal-line);
}
.msg .who {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}
.who .av {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.av .a {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--grad-cta);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 9.5px;
  font-weight: 700;
}

.src-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 14px;
  height: 100%;
}
.vendor-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vendor {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
}
.vendor.active {
  border-color: var(--teal);
  background: var(--teal-soft);
}
.vendor .name {
  display: flex;
  align-items: center;
  gap: 9px;
}
.vendor .badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fbe8cf, #f0f1f7);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}
.vendor .stat {
  font-size: 11px;
  color: var(--muted);
}
.rfq {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fcfefe;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rfq h4 {
  margin: 0;
  font-size: 14px;
}
.rfq-table {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.rfq-table .h,
.rfq-table .r {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  font-size: 11.5px;
}
.rfq-table .h {
  background: #f4f9f9;
  color: var(--muted);
  font-weight: 700;
}
.rfq-table .h > div,
.rfq-table .r > div {
  padding: 7px 10px;
}
.rfq-table .r {
  border-top: 1px solid var(--line);
}
.rfq-table .r.win {
  background: var(--teal-soft);
}

.prod-grid {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  height: 100%;
}
.prod-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.timeline {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tl-row {
  display: grid;
  grid-template-columns: 140px 1fr 90px;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}
.tl-row .nm {
  font-weight: 600;
}
.tl-bar {
  position: relative;
  height: 12px;
  background: #f1f5f6;
  border-radius: 99px;
  overflow: hidden;
}
.tl-bar > i {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 99px;
  background: var(--grad-cta);
}
.tl-bar > i.warn {
  background: linear-gradient(90deg, #f5a623, #d87800);
}
.tl-bar > i.late {
  background: linear-gradient(90deg, #e96a6a, #c04141);
}
.tl-row .st {
  font-size: 11px;
  color: var(--muted);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.ai-toast.cap {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 6;
  max-width: 74%;
}

/* =====================================================================
   WFX DIFFERENCE  (continuation of capability story)
===================================================================== */
.diff {
  background: linear-gradient(180deg, #ffffff 0%, #f0f1f7 100%);
  padding: 70px 0;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 0px;
}
.diff-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease;
  overflow: hidden;
  transition:
    box-shadow 0.35s,
    border-color 0.35s !important;
  animation: floatY 5s ease-in-out infinite !important;
}
.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-line);
}
.diff-card .head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  justify-content: flex-start;
}
.diff-card .icon {
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 153, 196, 0.25);
}
.diff-card .icon svg {
  width: 32px;
  height: 32px;
}
.diff-card h3 {
  font-size: 24px;
  margin: 0 0 4px;
}
.stage_containt {
  text-align: left;
}
.diff-card .stage {
  font-family: "Cabin";
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.diff-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}
.diff-thread {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 80px;
  background: radial-gradient(
    60% 60% at 0% 0%,
    rgba(0, 153, 196, 0.12),
    transparent 60%
  );
  pointer-events: none;
}

/* =====================================================================
   HEAD-TO-HEAD COMPARISON  ("WFX Vs Generic")
===================================================================== */
.h2h {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #f5fdff 100%);

  padding: 70px 0;
}
.h2h-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 1080px;
  margin: 48px auto 0;
}
.h2h-row {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 1.1fr;
  border-bottom: 1px solid var(--line);
}
.h2h-row:last-child {
  border-bottom: none;
}
.h2h-row > div {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.h2h-row .feat {
  font-weight: 700;
  color: var(--ink);
  font-family: "Cabin";
}
.h2h-row .wfx {
  background: linear-gradient(180deg, #f5fdff, #ecf7f8);
  color: var(--ink);
  font-weight: 500;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.h2h-row .gen {
  color: var(--muted);
}
.h2h-row.head {
  background: var(--ink);
  color: #fff;
  border: none;
}
.h2h-row.head > div {
  padding: 20px 24px;
  font-family: "Cabin";
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.h2h-row.head > div.feat {
  color: rgba(255, 255, 255, 0.7);
}
.h2h-row.head .wfx {
  background: transparent;
  border: none;
  color: #fff;
}
.h2h-row.head .gen {
  color: rgba(255, 255, 255, 0.7);
}
.h2h-row.head .wfx-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.h2h-row.head .wfx-brand::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal-2);
}
.icon-check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
}
.icon-cross {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(33, 37, 41, 0.06);
  color: var(--muted);
  display: grid;
  place-items: center;
}

/* =====================================================================
   CUSTOMER STORIES — sticky-left + horizontal-scroll-right
===================================================================== */
.stories {
  background: linear-gradient(180deg, #f0f1f7 0%, #ffffff 100%);
  padding: 140px 0;
  overflow: hidden;
}
.stories-stage {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.stories-left {
  position: sticky;
  top: 120px;
  align-self: start;
  max-width: 440px;
}
.stories-left .small {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}
.stories-left h2 {
  margin-top: 14px;
  text-wrap: balance;
}
.stories-left p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin: 18px 0 26px;
  max-width: 400px;
}
.stories-progress {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.stories-progress span {
  height: 3px;
  flex: 1;
  background: #e0e4ea;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.stories-progress span > i {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--grad-cta);
  width: 0;
  transition: width 0.4s;
}
.stories-progress span.done > i {
  width: 100%;
}
.stories-progress span.active > i {
  width: 50%;
}

.stories-track {
  display: flex;
  gap: 24px;
  /* horizontal scroll on the right column */
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  scrollbar-width: thin;
}
.stories-track::-webkit-scrollbar {
  height: 8px;
}
.stories-track::-webkit-scrollbar-track {
  background: #e0e4ea;
  border-radius: 4px;
}
.stories-track::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 4px;
}

.story-card {
  flex: 0 0 460px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.story-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.story-brand .name {
  font-family: "Cabin";
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.story-brand .country {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.story-meta {
  font-family: "Open Sans";
  font-size: 11.5px;
  color: var(--muted-2);
  letter-spacing: 0.06em;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.story-meta span {
  padding: 4px 8px;
  background: var(--lavender);
  border-radius: 6px;
}
.story-result {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px dashed var(--line-2);
  border-bottom: 1px dashed var(--line-2);
}
.story-result .num {
  font-family: "Cabin";
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
}
.story-result .lab {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
  font-weight: 500;
}
.story-quote {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.story-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 6px;
}
.story-cta a {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.story-cta a:hover {
  text-decoration: underline;
}
.story-photo {
  height: 180px;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(135deg, #fbe8cf 0%, #f0f1f7 50%, #f5fdff 100%);
  position: relative;
  display: grid;
  place-items: center;
}
.story-photo .silhouette {
  width: 50%;
  height: 80%;
  background: linear-gradient(
    180deg,
    rgba(33, 37, 41, 0.2),
    rgba(33, 37, 41, 0.05)
  );
  clip-path: polygon(
    40% 0,
    60% 0,
    68% 12%,
    82% 18%,
    86% 35%,
    72% 40%,
    75% 100%,
    25% 100%,
    28% 40%,
    14% 35%,
    18% 18%,
    32% 12%
  );
}

/* =====================================================================
   CATEGORIES WE SERVE
===================================================================== */
.cats {
  background: #fff;
  padding-bottom: 80px;
  padding-top: 70px;
  border-top: 1px solid #80808015;
}
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.cat-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-card);
  transition:
    box-shadow 0.35s,
    border-color 0.35s !important;
  animation: floatY 5s ease-in-out infinite !important;
  will-change: transform;
  cursor: default;
  overflow: hidden;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-line);
}
.cat-card .ico {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(0, 153, 196, 0.25);
}
.cat-card .ico svg {
  width: 40px;
  height: 40px;
}
.cat-card h4 {
  font-size: 18px;
  margin: 0;
  font-family: "Cabin";
}
.cat-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.cat-card .tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  /* margin-top: auto; */
}
.cat-card .tags span {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-deep);
  background: var(--teal-soft);
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

/* =====================================================================
   INTEGRATIONS NETWORK
===================================================================== */
.integrations {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff, #f5fdff);
  overflow: hidden;
}
.int-canvas {
  position: relative;
  height: 560px;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, #ffffff 0%, #f5fdff 100%);
  border: 1px solid var(--line);
  overflow: hidden;
}
.int-canvas .core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #6fe3d9, #00cec6 50%, #0099c4);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Cabin";
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  box-shadow:
    0 0 0 14px rgba(0, 153, 196, 0.1),
    0 0 0 32px rgba(0, 153, 196, 0.04),
    0 30px 80px rgba(0, 153, 196, 0.3);
}
.int-canvas .ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(0, 153, 196, 0.3);
  border-radius: 50%;
}
.ring-1 {
  width: 320px;
  height: 320px;
  animation: spinSlow 28s linear infinite;
}
.ring-2 {
  width: 520px;
  height: 520px;
  animation: spinSlow 50s linear infinite reverse;
}
@keyframes spinSlow {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.int-node {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  animation: nodeFloat 6s ease-in-out infinite;
}
.int-node:hover {
  transform: scale(1.06);
  box-shadow: var(--shadow-lg);
  z-index: 5;
}
.int-node .glyph {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
@keyframes nodeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* =====================================================================
   IN THEIR WORDS — testimonials with text+video
===================================================================== */
.testi {
  padding-bottom: 80px;
  padding-top: 70px;
  background: #fff;
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-line);
}
.testi-card.video {
  background: linear-gradient(180deg, #f5fdff, #ffffff);
}
.testi-quote-mark {
  font-family: "Cabin";
  font-size: 60px;
  line-height: 0.6;
  color: var(--teal-2);
  margin-bottom: -12px;
}
.testi-card blockquote {
  font-family: "Cabin";
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  font-weight: 500;
  text-wrap: pretty;
}
.testi-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  /* border-top: 1px dashed var(--line-2); */
  padding-top: 18px;
}
.testi-av {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: "Cabin";
  border-radius: 50%;
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 5px;
}
.testi-av.text {
  padding: 0;
}
.testi-name {
  font-weight: 700;
  color: var(--ink);
  font-family: "Cabin";
}
.testi-role {
  font-size: 13px;
  color: var(--muted);
}
.testi-video {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  background: linear-gradient(135deg, #fbe8cf 0%, #f0f1f7 50%, #f5fdff 100%);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  transition: transform 0.3s ease;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.testi-video:hover {
  transform: scale(1.01);
}
.testi-video .play,
.hub-thumb .play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--teal);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: absolute;
  /* top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
}
.testi-video:hover .play {
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.testi-video .play svg {
  margin-left: 3px;
}
.testi-video .duration {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-family: "Open Sans";
  font-size: 11px;
  font-weight: 700;
  background: rgba(33, 37, 41, 0.85);
  color: #fff;
  padding: 4px 8px;
  border-radius: 5px;
}

/* =====================================================================
   FAQ
===================================================================== */
.faq {
  padding: 120px 0;
  background: linear-gradient(180deg, #f5fdff, #ffffff);
}
.faq-link:hover {
  color: #0099c4;
}
.faq-list {
  max-width: 950px;
  margin: 48px auto 0;
  /* border-top: 1px solid var(--line); */
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  font-family: "Cabin";
}
.faq-q .ic {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  display: grid;
  place-items: center;
  transition: all 0.25s;
  color: var(--teal-deep);
}
.faq-item.open .faq-q .ic {
  transform: rotate(45deg);
  background: var(--teal-soft);
  border-color: var(--teal-line);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 340px;
}
.faq-a-inner {
  padding: 0 0 22px;
  max-width: 680px;
}

/* =====================================================================
   KNOWLEDGE HUB
===================================================================== */
.hub {
  background: #fff;
  padding: 70px 0;
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.hub-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  cursor: pointer;
}
.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-line);
}
.hub-thumb {
  /* height: 200px; */
  background: linear-gradient(135deg, #fbe8cf, #f0f1f7);
  position: relative;
  display: grid;
  place-items: center;
  font-family: "Cabin";
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.hub-thumb.alt-1 {
  background: linear-gradient(135deg, #f5fdff, #fbe8cf);
}
.hub-thumb.alt-2 {
  background: linear-gradient(135deg, #f0f1f7, #f5fdff);
}
.hub-thumb.alt-3 {
  background: linear-gradient(135deg, #fbe8cf, #f5fdff 60%, #f0f1f7);
}
.hub-meta {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.hub-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-deep);
  background: var(--teal-soft);
  padding: 4px 9px;
  border-radius: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: flex-start;
}
.hub-card h4 {
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
}
.hub-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.hub-card .read {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* =====================================================================
   ENTERPRISE IMPACT
===================================================================== */
.enterprise-impact {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background:
    radial-gradient(
      125% 95% at 50% 118%,
      rgba(42, 158, 150, 0.3),
      transparent 58%
    ),
    radial-gradient(
      95% 100% at 80% 52%,
      rgba(28, 108, 140, 0.22),
      transparent 55%
    ),
    radial-gradient(
      150% 130% at 12% 6%,
      rgba(8, 26, 42, 0.92),
      transparent 52%
    ),
    linear-gradient(135deg, #06182a 0%, #0b2236 46%, #0a2031 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.enterprise-impact .deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.enterprise-impact .content {
  position: relative;
  z-index: 1;
  animation: fadeIn 0.9s ease both;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Pill Badge */
.pill {
  position: absolute;
  top: 8.6%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.7cqw;
  padding: 0.85cqw 1.6cqw;
  border: 1px solid rgba(120, 160, 175, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.015);
  font-size: 0.92cqw;
  font-weight: 600;
  letter-spacing: 0.34em;
  color: #cfe0ec;
  text-transform: uppercase;
}

.pill .dot {
  width: 0.62cqw;
  height: 0.62cqw;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.8);
}

/* Quote Mark */
.qmark {
  position: absolute;
  top: 17.2%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55cqw;
}

.qmark i {
  display: block;
  width: 1cqw;
  height: 2.4cqw;
  background: #2c7e84;
  transform: skewX(-12deg);
  border-radius: 0.18cqw;
  opacity: 0.9;
}

/* Main Quote */
.quote {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 700;
  font-size: 3.02cqw;
  line-height: 1.235;
  letter-spacing: -0.018em;
  margin: 0;
  color: #8190a4;
}

.quote .ln {
  display: block;
}

.quote .w {
  color: #eef4fa;
}

.quote .g {
  color: #8190a4;
}

.quote .b {
  color: #2197d6;
}

.quote .teal {
  background: linear-gradient(95deg, #52e3a0 0%, #33dabb 55%, #2ad4c6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #34d9b4;
}

/* Footer */
.footer {
  position: absolute;
  bottom: 11.5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2.6cqw;
  width: 90%;
  justify-content: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.1cqw;
}

.logo {
  width: 3.5cqw;
  height: 3.5cqw;
  border-radius: 0.95cqw;
  background: linear-gradient(150deg, #3ec7cf 0%, #3fd2a8 55%, #56e08a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.3cqw;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(60, 200, 170, 0.35);
  flex-shrink: 0;
}

.brand-text .name {
  color: #eef4fa;
  font-weight: 700;
  font-size: 1.28cqw;
  letter-spacing: -0.005em;
  white-space: nowrap;
  margin: 0;
}

.brand-text .sub {
  color: #8190a4;
  font-weight: 400;
  font-size: 0.96cqw;
  margin-top: 0.18cqw;
  margin-bottom: 0;
}

.divider {
  width: 1px;
  height: 3.4cqw;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(140, 170, 185, 0.5),
    transparent
  );
}

.stats {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.stat .num {
  color: #eef4fa;
  font-weight: 700;
  font-size: 2.95cqw;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  margin: 0;
}

.stat .lbl {
  color: #8190a4;
  font-weight: 600;
  font-size: 0.82cqw;
  letter-spacing: 0.22em;
  margin-top: 0.6cqw;
  white-space: nowrap;
  margin-bottom: 0;
  text-transform: uppercase;
}

/* =====================================================================
   FOOTER
===================================================================== */
.footer {
  background: #0e1419;
  color: #a9bac2;
  padding: 64px 0 28px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-family: "Cabin";
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer ul a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #677a84;
}
.footer .footer-logo {
  margin-bottom: 18px;
}
.footer .footer-logo svg {
  height: 24px;
  width: auto;
}
.footer .blurb {
  color: #7b95a2;
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 300px;
}
.footer .socials {
  display: flex;
  gap: 10px;
}
.footer .socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.footer .socials a:hover {
  background: var(--teal);
  color: #fff;
}

/* =====================================================================
   REVEAL UTILITY
===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* =====================================================================
   RESPONSIVE
===================================================================== */
@media (max-width: 980px) {
  .hero-grid,
  .demo-grid,
  .testi-grid,
  .stories-stage {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .stories-left {
    position: relative;
    top: auto;
  }
  .problem-row,
  .diff-grid,
  .hub-grid,
  .cats-grid {
    grid-template-columns: 1fr;
  }
  .cap-pin {
    grid-template-columns: 1fr;
    height: auto;
    position: relative;
    top: auto;
  }
  .cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .h2h-row {
    grid-template-columns: 1fr;
  }
  .h2h-row > div {
    border-bottom: 1px solid var(--line);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
}

.hero {
  position: relative;
  /* min-height: 100vh; */
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0;
  font-family:
    "Cabin",
    "Open Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  padding-bottom: 0;
}

/* Background Thread SVG */
.hero-thread {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Content Container */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 7px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
}

/* ============================================
   LEFT SIDE - TEXT CONTENT
   ============================================ */

.hero-left {
  width: 50%;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 50px;
  /* background: #fff;
  border: 1px solid var(--teal-line);
  box-shadow:
    0 1px 0 rgba(33, 37, 41, 0.03),
    0 8px 22px rgba(0, 153, 196, 0.1); */
  font-family: "Cabin" sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.hero-eyebrow-div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
}

.eyebrow-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #00b5b8;
  border-radius: 1px;
}

/* Headline */
.hero h1 {
  font-family: "Cabin", sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.05;
  color: #1a1a2e;
  margin: 0 0 24px 0;
  letter-spacing: -2px;
}

.hero h1 em {
  font-style: italic;
  color: #f4a53a;
  font-weight: 500;
  font-family: "Cabin", serif;
}

.hero h1 .shipment {
  color: #00b5b8;
  font-weight: 700;
}

/* Description */
.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #4a5568;
  margin: 0 0 32px 0;
  max-width: 460px;
}

/* CTAs */
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #00d1cf 0, #0099c4 100%) !important;
  border-radius: 50px !important;
  padding: 9px 36px !important;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  justify-content: center;
}

.btn-primary:hover {
  background: #008b8e;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #00b5b8;
  padding: 13px 44px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #00b5b8;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(0, 181, 184, 0.05);
  border-color: #008b8e;
  color: #008b8e;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 61px;
}

.stat-item {
  display: flex;
  /* flex-direction: column; */
  gap: 4px;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  /* text-transform: uppercase; */
  color: #a0aec0;
}

/* ============================================
   RIGHT SIDE - PRODUCT CARD VISUAL
   ============================================ */

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  left: 0%;
  top: 2px;
  width: 100%;
  height: 391px;
  z-index: 1;
  background: rgba(247, 248, 252, 0.4);
  border-radius: 26px;
  padding: 17px 20px;
  box-sizing: border-box;
  overflow: hidden;
  pointer-events: none;
}

.skeleton-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.skeleton-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(180, 186, 210, 0.5);
}

.skeleton-dots span:nth-child(1) {
  background: rgba(180, 186, 210, 0.45);
}

.skeleton-dots span:nth-child(3) {
  background: rgba(180, 186, 210, 0.55);
}

.skeleton-bars {
  margin-top: 18px;
  display: flex;
  gap: 18px;
}

.skeleton-bars div {
  height: 10px;
  border-radius: 8px;
  background: rgba(180, 186, 210, 0.25);
  width: 65px;
}

.skeleton-bars div:nth-child(1) {
  /* width: 108px; */
  background: rgba(180, 186, 210, 0.3);
}

.skeleton-bars div:nth-child(2),
.skeleton-bars div:nth-child(3) {
  width: 92px;
}

.skeleton-bars div:nth-child(4) {
  width: 80px;
  background: rgba(180, 186, 210, 0.2);
}

.skeleton-circle {
  position: absolute;
  right: 49px;
  top: 37px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(180, 186, 210, 0.25);
}

.hero-bg-decoration {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-search-bar {
  position: absolute;
  top: -14px;
  right: 40px;
  z-index: 10;
  background: #ffffff;
  border-radius: 15px;
  box-shadow:
    0 20px 44px -24px rgba(60, 64, 120, 0.4),
    0 3px 10px -6px rgba(60, 64, 120, 0.18);
  display: flex;
  align-items: center;
  padding: 6px 13px;
  gap: 0px;
  width: 212px;
}

.hero-search-bar input {
  flex: 1;
  border: none;
  background: none;
  font-size: 10px;
  color: #212529;
  outline: none;
}

.hero-search-bar input::placeholder {
  color: #a4aaba;
}

.hero-search-bar svg {
  color: #9aa3b2;
  flex-shrink: 0;
}

.hero-visual {
  display: flex;
  gap: 0px;
  padding: 12px 20px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
}

/* Hero Panels */
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  position: relative;
}

.hero-panel-left {
  top: 40px;
  position: absolute;
  width: 214px;
  z-index: 1;
  left: 0;
}
.hero-panel-right {
  right: -24px;
  position: absolute;
  width: 214px;
  z-index: 1;
  top: 70px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

.panel-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid #e8eef2;
  padding: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  animation: float 6s ease-in-out infinite;
}

.panel-card:nth-child(1) {
  animation-delay: 0s;
}

.panel-card:nth-child(2) {
  animation-delay: 0.5s;
}
.hero-panel.hero-panel-right .panel-card:nth-child(2) {
  animation-delay: 0.5s;
  margin-left: -30px;
}

.panel-card:nth-child(3) {
  animation-delay: 1s;
}

.panel-card:nth-child(4) {
  animation-delay: 1.5s;
}

.panel-card:nth-child(5) {
  animation-delay: 2s;
}

/* .panel-card:hover {
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.08);
  animation-play-state: paused;
} */

/* AI Features Card - Clean Design */
.ai-features-card {
  background: #ffffff;
  padding: 9px;
}

.ai-header-clean {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ai-header-box1 {
  display: flex;
  gap: 6px;
}
.ai-header-box2 {
  display: flex;
  align-items: center;
}
.ai-icon-circle {
  width: 25px;
  height: 25px;
  background: linear-gradient(140deg, rgb(25, 182, 214), rgb(12, 147, 182));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
}

.ai-title-section {
  display: flex;
  align-items: center;
  gap: 0;
}

.ai-title-clean {
  font-size: 12px;
  font-weight: 700;
  color: #212529;
  line-height: 1.1;
}

.ai-badge-clean {
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ai-badge-clean.upcoming {
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgb(12, 155, 189);
  background: rgb(228, 244, 248);
  padding: 5px 11px;
  border-radius: 11px;
}

.ai-header-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0099c4;
  margin: 8px 0 10px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
}

.ai-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-feature-row {
  border: 1.5px solid rgb(238, 240, 244);
  border-radius: 15px;
  padding: 8px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ai-Smart-row {
  border-top: 1.5px solid rgb(238, 240, 244);
  border-radius: 0px;
  padding: 4px 7px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #13a6c8;
}
.ai-Smart-row .ai-feature-name {
  color: #13a6c8;
}
.ai-checkmark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: rgb(15, 166, 200);
}

.ai-checkmark-plus {
  color: #00cec6;
  font-size: 12px;
  font-weight: 700;
  min-width: 12px;
  flex-shrink: 0;
}

.ai-feature-ico {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  color: #6b7480;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-feature-name {
  font-size: 8px;
  font-weight: 500;
  color: #212529;
  flex: 1;
  line-height: 1.2;
}

.ai-feature-text {
  font-size: 6px;
  font-weight: 500;
  color: #212529;
  flex: 1;
  line-height: 1.1;
}

.ai-feature-status {
  flex-shrink: 0;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgb(12, 155, 189);
  background: rgb(228, 244, 248);
  padding: 5px 11px;
  border-radius: 11px;
}

.ai-feature-status.coming {
  color: #999;
}

.ai-features-card .panel-head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding-bottom: 0;
  border-bottom: none;
}

.ai-features-card .panel-ico {
  font-size: 16px;
  color: #00cec6;
}

.ai-features-card .panel-title {
  font-size: 14px;
  font-weight: 700;
  color: #212529;
}

.panel-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.panel-badge-item {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 4px;
}

.panel-badge-item.upcoming {
  color: #0099c4;
  background: rgba(0, 153, 196, 0.12);
}

.ai-features-card .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #f5f5f5;
}

.ai-features-card .feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-ico {
  font-size: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
}

.feature-label {
  font-size: 13px;
  font-weight: 500;
  color: #212529;
  flex: 1;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.feature-status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0099c4;
  background: rgba(0, 153, 196, 0.12);
  padding: 4px 9px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.feature-item.upcoming .feature-status {
  color: #999;
  background: #f0f0f0;
  text-transform: capitalize;
}

/* Bulk Run Card */
.bulk-run-card {
  background: #ffffff;
}

.bulk-run-card .bulk-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 0;
  border-bottom: none;
}

.bulk-ico {
  width: 28px;
  height: 28px;
  background: #ffe5cc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.bulk-title {
  font-size: 10px;
  font-weight: 700;
  color: #212529;
  flex: 1;
}

.bulk-percent {
  font-size: 10px;
  font-weight: 700;
  color: #999;
}

.bulk-bar {
  position: relative;
  width: 100%;
  height: 4px;
  background: #e8eef2;
  border-radius: 4px;
  overflow: visible;
  margin-bottom: 25px;
}

.bulk-fill {
  height: 100%;
  background: linear-gradient(90deg, #00cec6 0%, #0099c4 100%);
  border-radius: 4px;
  transition: width 0.5s ease;
  position: relative;
}

.bulk-fill::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #00cec6;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 206, 198, 0.3);
  background: rgb(255, 255, 255);
  box-shadow:
    rgb(15, 166, 200) 0px 0px 0px 3px,
    rgba(0, 0, 0, 0.18) 0px 2px 6px;
}

.bulk-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 0;
  margin-top: 16px;
}

.bulk-steps::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: #e8eef2;
  z-index: 0;
}

.bulk-steps::after {
  content: "";
  position: absolute;
  left: 0;
  width: 62%;
  top: 0;
  height: 2px;
  background: rgb(15, 166, 200);
  z-index: 0;
}

.bulk-steps .step {
  flex: 1;
  font-size: 9px;
  font-weight: 600;
  text-align: center;
  color: #999;
  position: relative;
  z-index: 1;
  padding: 0;
  background: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.bulk-steps .step::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e8eef2;
  border: none;
  box-shadow: none;
  flex-shrink: 0;
  margin-top: -6px;
}

.bulk-steps .step.done::before {
  background: rgb(15, 166, 200);
  box-shadow: none;
}

.bulk-steps .step.done {
  color: rgb(15, 166, 200);
}

.bulk-steps .step.active::before {
  background: rgb(15, 166, 200);
  box-shadow: none;
  width: 12px;
  height: 12px;
}

.bulk-steps .step.active {
  color: #212529;
  font-weight: 700;
}

/* Tech Pack Card */
.tech-pack-card .panel-head,
.vendors-card .panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 0;
  border-bottom: none;
}

.tech-pack-card .panel-title,
.vendors-card .panel-title {
  font-size: 12px;
  font-weight: 600;
  color: #212529;
  letter-spacing: -0.005em;
}

.tech-pack-card .panel-badge,
.vendors-card .panel-badge {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0099c4;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spec-item {
  display: grid;
  grid-template-columns: 125px 1fr 0px;
  align-items: center;
  gap: 0px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.spec-label {
  font-size: 10px;
  font-weight: 400;
  color: #666;
  text-align: left;
}

.spec-val {
  font-size: 10px;
  font-weight: 700;
  color: #212529;
  text-align: center;
  margin: 0;
  letter-spacing: -0.01em;
}
.spec-itme-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.spec-tol {
  font-size: 12px;
  color: #999;
  font-weight: 500;
  text-align: right;
  /* min-width: 40px; */
}

/* Panel Head with Icon */
.panel-head-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgb(15, 166, 200);
}

.panel-head-icon div.svg {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  stroke: rgb(15, 166, 200);
  background: rgb(231, 244, 249);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.panel-head-icon div.svg svg {
  width: 15px;
  height: 15px;
}
/* Vendors Card */
.vendor-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vendor-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
}

.vendor-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.vendor-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.vendor-name {
  font-size: 13px;
  font-weight: 600;
  color: #212529;
  line-height: 1.2;
}

.vendor-meta {
  font-size: 11px;
  color: #999;
  font-weight: 400;
}

.vendor-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  margin-left: 8px;
  flex-shrink: 0;
}

.vendor-badge.ok {
  font-size: 8px;
  font-weight: 800;
  color: rgb(46, 125, 50);
  background: rgb(211, 237, 212);
  padding: 7px 13px;
  border-radius: 16px;
}

.vendor-badge.wait {
  font-size: 8px;
  font-weight: 800;
  color: rgb(183, 121, 31);
  background: rgb(251, 230, 179);
  padding: 7px 12px;
  border-radius: 16px;
}

/* Daily Avg Card */
.daily-avg-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.daily-avg-header {
  padding: 0px 3px;
  border-radius: 12px;
  border-bottom: none;
  margin-bottom: 4px;
  gap: 6px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.daily-avg-label {
  font-size: 8px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.daily-avg-time-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.daily-avg-time-hours {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  line-height: 1;
}

.daily-avg-time-mins {
  font-size: 24px;
  font-weight: 700;
  color: #00cec6;
  line-height: 1;
}

/* Daily Avg Chart */
.daily-avg-chart {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.chart-bars {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  gap: 6px;
  height: 90px;
}

.bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 21px;
}

.bar-stack {
  width: 11px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  border-radius: 3px;
  overflow: visible;
  background: transparent;
  gap: 1px;
}

.bar-segment {
  width: 100%;
  min-height: 3px;
  border-radius: 3px;
  flex-shrink: 0;
  display: block;
}

.bar-label {
  font-size: 10px;
  font-weight: 600;
  color: #999;
  text-align: center;
  min-width: 25px;
  letter-spacing: 0.05em;
}

.chart-label {
  font-size: 11px;
  font-weight: 700;
  color: #999;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.chart-bars .bar {
  flex: 1;
  background: linear-gradient(180deg, #ff9e5e 0%, #f4a83d 50%, #ffb86c 100%);
  border-radius: 3px;
  opacity: 0.85;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(244, 168, 61, 0.15);
}

.chart-bars .bar:nth-child(2) {
  background: linear-gradient(180deg, #ff7a6b 0%, #ff9e5e 100%);
}

.chart-bars .bar:nth-child(3) {
  background: linear-gradient(180deg, #ff6b9d 0%, #ff9e5e 100%);
}

.chart-bars .bar:nth-child(4) {
  background: linear-gradient(180deg, #00cec6 0%, #0099c4 100%);
}

.chart-bars .bar:nth-child(5) {
  background: linear-gradient(180deg, #ffb86c 0%, #f4a83d 100%);
}

.chart-bars .bar:nth-child(6) {
  background: linear-gradient(180deg, #ff9e5e 0%, #ff7a6b 100%);
}

.chart-bars .bar:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Center Hero Card */
.hero-card-center {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  grid-column: 2;
  /* padding: 24px; */
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8eef2;
}

/* Main Card */
.hero-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  max-width: 100%;
  border: 1px solid #e8eef2;
  margin-top: 51px;
}

/* Card Header */
.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: linear-gradient(
    90deg,
    rgba(0, 181, 184, 0.1),
    rgba(244, 165, 58, 0.1)
  );
  color: #ffffff;
  border-bottom: 1px solid #e8eef2;
}

.hero-card-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-dots {
  display: flex;
  gap: 6px;
}

.card-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red {
  background: #ff5f57;
}
.dot-yellow {
  background: #ffbd2e;
}
.dot-green {
  background: #28c840;
}

.card-title-bar {
  font-size: 13px;
  font-weight: 500;
  color: #0e1b26;
  font-family: "Open Sans";
}

.card-badge {
  background: #00b5b8;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}

/* Card Body */
.hero-card-body {
  display: flex;
  min-height: 340px;
  background: #ffffff;
}

/* Sidebar */
.card-sidebar {
  width: 120px;
  background: #f8fafb;
  border-right: 1px solid #ebf0f4;
  padding: 12px 0;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: #8b95a5;
  cursor: pointer;
  transition: all 0.15s ease;
  font-weight: 500;
}

.sidebar-item:hover {
  color: #1a1a2e;
  background: rgba(0, 181, 184, 0.06);
}

.sidebar-item.active {
  color: #00b5b8;
  background: rgba(0, 181, 184, 0.1);
  font-weight: 600;
}

.sidebar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00b5b8;
}

/* Main Content Area */
.card-main {
  flex: 1;
  padding: 18px 20px;
  position: relative;
  background: #ffffff;
}

.card-main-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ebf0f4;
}

.card-product-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 3px;
}

.card-meta {
  font-size: 12px;
  color: #8b95a5;
  font-weight: 500;
}

.approved-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34, 197, 94, 0.08);
  color: #16a34a;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 16px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Tabs */
.card-tabs {
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid #ebf0f4;
  padding-bottom: 10px;
}

.card-tab {
  padding: 0 0 8px 0;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  color: #8b95a5;
  background: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -10px;
}

.card-tab:hover {
  color: #1a1a2e;
}

.card-tab.active {
  color: #00b5b8;
  border-bottom-color: #00b5b8;
  background: none;
}

/* Data Fields */
.card-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.card-field {
  flex: 1;
  background: #f3f5f8;
  border-radius: 8px;
  padding: 11px 12px;
  border: none;
}

.card-field-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #a0aec0;
  margin-bottom: 6px;
}

.card-field-value {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
}

.card-field-value.teal {
  color: #00b5b8;
}

/* AI Thread Notification */
.card-thread {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0fffe;
  border: 1px solid #d4f5f3;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 14px;
}

.copilot-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b5b8, #00a8ab);
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.copilot-text {
  font-size: 12px;
  color: #1a1a2e;
  font-weight: 600;
}

/* ============================================
   FLOATING TAGS
   ============================================ */

.hero-tag {
  position: absolute;
  background: #ffffff;
  border-radius: 10px;
  padding: 11px 15px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.12),
    0 3px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid #e8eef2;
  z-index: 10;
}

.hero-tag-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(40, 200, 64, 0.12);
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-tag-icon.robot-icon {
  background: rgba(244, 165, 58, 0.15);
  color: #f97316;
}

.hero-tag-text {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.2;
}

.hero-tag-sub {
  font-size: 11px;
  color: #8b95a5;
  margin-top: 1px;
  font-weight: 500;
}

/* Tag Positions */
.tag1 {
  top: -20px;
  right: -30px;
  animation: float 3s ease-in-out infinite;
}

.tag2 {
  bottom: 30px;
  right: -40px;
  animation: float 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
  }

  .tag1,
  .tag2 {
    display: none;
  }

  .enterprise-impact {
    height: auto;
    min-height: 550px;
  }

  .pill {
    font-size: 12px;
  }

  .quote {
    font-size: 28px;
  }

  .stat .num {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 60px 20px;
  }

  .hero-content {
    padding: 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .hero-card {
    width: 100%;
  }

  .hero-card-body {
    flex-direction: column;
  }

  .card-sidebar {
    width: 100%;
    display: flex;
    overflow-x: auto;
    padding: 8px;
    border-right: none;
    border-bottom: 1px solid #edf2f7;
  }

  .sidebar-item {
    white-space: nowrap;
    padding: 8px 14px;
  }

  .card-main {
    padding: 16px;
  }
}
/* ============================================================
       3. SECTION
       ============================================================ */
.integrations {
  position: relative;
  padding: 80px 24px 60px;
  background: linear-gradient(180deg, #ffffff 0%, #f5fdff 100%);
  overflow: hidden;
}
.integration .type,
.ai-ribbon .type {
  position: absolute;
  border: 1px solid #efa64a;
  top: -1px;
  right: 24px;
  background: #efa64a;
  padding: 2px 15px;
  font-weight: 300;
  border-radius: 0px 0px 9px 9px;
  font-size: 11px;
  box-shadow: 0px 5px 13px #00000024;
  color: #fff;
}
.integrations::before,
.integrations::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.integrations::before {
  width: 700px;
  height: 700px;
  left: -240px;
  top: -240px;
  background: radial-gradient(
    circle,
    rgba(0, 206, 198, 0.22) 0%,
    transparent 70%
  );
}
.integrations::after {
  width: 620px;
  height: 620px;
  right: -220px;
  bottom: -260px;
  background: radial-gradient(
    circle,
    rgba(251, 232, 207, 0.55) 0%,
    transparent 70%
  );
}

/* soft grid background pattern */
.integrations .grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 153, 196, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 153, 196, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(70% 70% at 50% 50%, #000 30%, transparent 90%);
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

/* ============================================================
       4. SECTION HEADER
       ============================================================ */
.head {
  text-align: center;
  /* max-width: 780px; */
  /* margin: 0 auto 64px; */
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* padding: 7px 14px; */
  /* border-radius: 50px;
  background: #fff;
  border: 1px solid var(--teal-line);
  box-shadow:
    0 1px 0 rgba(33, 37, 41, 0.03),
    0 6px 18px rgba(0, 153, 196, 0.08); */
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-family: "Cabin", sans-serif;
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}
.head h2 {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.2vw, 45px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 18px 0 16px;
  color: var(--ink);
  text-wrap: balance;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.head h2 .accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.head p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
       5. LOGO GRID -- 2 rows of floating cards
       ============================================================ */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
  margin-top: 40px;
}
.logo-grid.row-2 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}

/* a single integration card */
.integration {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-card);
  transition:
    box-shadow 0.35s,
    border-color 0.35s;
  animation: floatY 5s ease-in-out infinite;
  will-change: transform;
}
.integration:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-line);
  animation-play-state: paused;
}
.integration:hover .logo-mark {
  transform: scale(1.06);
}

/* staggered delays so each card floats in its own phase */
.integration:nth-child(1) {
  animation-delay: 0s;
  animation-duration: 5s;
}
.integration:nth-child(2) {
  animation-delay: 0.7s;
  animation-duration: 5.6s;
}
.integration:nth-child(3) {
  animation-delay: 1.4s;
  animation-duration: 5.2s;
}
.integration:nth-child(4) {
  animation-delay: 2.1s;
  animation-duration: 5.8s;
}
.integration:nth-child(5) {
  animation-delay: 2.8s;
  animation-duration: 5.4s;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* the logo mark area */
.logo-mark {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  flex: none;
  box-shadow: 0 8px 18px rgba(33, 37, 41, 0.1);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.logo-mark .mono {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}

/* brand-specific logo colours */
.lm-adobe {
  background: linear-gradient(135deg, #ff8c00 0%, #d85700 100%);
}
.lm-netsuite {
  /* background: linear-gradient(135deg, #1b7bc8 0%, #0e4677 100%); */
}
.lm-sap {
  background: linear-gradient(135deg, #008fd3 0%, #003d6e 100%);
}
.lm-dynamics {
  /* background: linear-gradient(135deg, #00a1f1 0%, #0072c6 100%); */
}
.lm-shopify {
  background: linear-gradient(135deg, #95bf47 0%, #5e8e3e 100%);
}
.lm-clo {
  /* background: linear-gradient(135deg, #00b5e2 0%, #006d8c 100%); */
}
.lm-browz {
  background: linear-gradient(135deg, #7b61ff 0%, #3d2fa8 100%);
}
.lm-magento {
  background: linear-gradient(135deg, #f26322 0%, #b83a0b 100%);
}
.lm-api {
  /* background: linear-gradient(135deg, #00cec6 0%, #0099c4 100%); */
}

/* card text */
.integration .name {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.2;
  margin-top: 5px;
}
.integration .role {
  font-family: "Cabin", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
}

/* tiny "Connected" tag */
/* .integration::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-2);
  box-shadow: 0 0 0 3px rgba(0, 206, 198, 0.2);
} */

/* ============================================================
       6. SCROLLING METADATA ROW + CTA
       ============================================================ */
.meta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 28px 0 40px;
  border-top: 1px dashed var(--line-2);
  margin-top: 8px;
}
.meta-row .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
}
.meta-row .item strong {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 18px;
}
.meta-row .item .ic {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--teal-soft);
  color: var(--teal-deep);
  display: grid;
  place-items: center;
}

/* CTA panel */
.cta {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 32px;
  background: linear-gradient(135deg, #f2fbfc 0%, #fcf5ec 100%);
  border: 1px solid var(--teal-line);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 153, 196, 0.1);
}
.cta h3 {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.18;
  margin: 0 0 10px;
  color: var(--ink);
  text-wrap: balance;
}
.cta p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 50px;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
  transition:
    transform 0.2s,
    box-shadow 0.25s,
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.btn-primary {
  color: #fff;
  background: var(--grad-cta);
  box-shadow:
    0 10px 24px rgba(0, 153, 196, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 153, 196, 0.4);
}
.btn-ghost {
  color: var(--teal-deep);
  background: #fff;
  border: 1.5px solid var(--teal);
}
.btn-ghost:hover {
  background: var(--teal-soft);
}

/* ============================================================
       INTEGRATION STATS + CTA
       ============================================================ */
.integration-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 48px 0;
  margin-top: 40px;
  border-top: 1px solid #80808015;
  border-bottom: 1px solid #80808015;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 33px;
  height: 33px;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.stat-content {
  display: flex;
  gap: 4px;
  align-items: center;
  gap: 12px;
}

.stat-number {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  line-height: normal;
  font-family: "Open Sans";
  font-weight: 400;
  letter-spacing: 0.5px;
}

.integration-cta {
  text-align: center;
  max-width: 820px;
  margin: 56px auto 0;
  padding: 52px 40px;
  background: linear-gradient(135deg, #f2fbfc 0%, #fcf5ec 100%);
  border: 1px solid var(--teal-line);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 153, 196, 0.1);
}

.integration-cta h3 {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--ink);
  text-wrap: balance;
}

.integration-cta p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.integration-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
}

.integration-cta .btn {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
}

.integration-cta .btn-secondary {
  color: var(--teal);
  background: #fff;
  border: 1.5px solid var(--teal-line);
}

.integration-cta .btn-secondary:hover {
  background: var(--teal-soft);
  border-color: var(--teal);
}

/* ============================================================
       7. RESPONSIVE
       ============================================================ */
@media (max-width: 980px) {
  .integrations {
    padding: 80px 0px 100px;
  }
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .logo-grid.row-2 {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }
  .integration-stats {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 0px 0;
  }
}
@media (max-width: 560px) {
  .logo-grid,
  .logo-grid.row-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .head h2 {
    font-size: 32px;
  }
  .integration-stats {
    grid-template-columns: 1fr;
  }
  .stat-item {
    gap: 12px;
  }
  .integration-cta {
    padding: 36px 24px;
    margin-top: 40px;
  }
  .integration-cta h3 {
    font-size: 20px;
  }
  .integration-cta p {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .integration-cta-buttons {
    gap: 20px;
  }
}

/* ============================================
   FAQ SECTION STYLES
   WFX PLM Feature Page
   ============================================ */

.faq-section {
  padding: 70px 0 70px;
  background: #f9fbfb;
  font-family:
    "Cabin",
    "Open Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0e8a8c;
  margin-bottom: 16px;
}

.section-title {
  font-family: "Cabin", serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a2e;
  margin: 0;
  letter-spacing: -0.5px;
}

.section-title em {
  font-style: italic;
  color: #00b5b8;
  font-weight: 500;
}

/* Layout */
.faq-layout {
  align-items: flex-start;
}

/* ============================================
   FAQ LIST
   ============================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  border-bottom: 1px solid #0e1b2614;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: transparent;
}

.faq-item:last-child {
  border-bottom: 0px solid #f1f5f9;
}

.faq-item.open {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  margin: 16px 0;
  border-radius: 8px;
}

/* Question Button */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: all 0.2s ease;
  border-radius: 8px 8px 0 0;
}

.faq-item.open .faq-question {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.faq-question-text {
  font-size: 15.5px;
  font-weight: 600;
  color: #4a5565;
  line-height: 1.4;
  padding-right: 20px;
}

.faq-item.open .faq-question-text {
  color: #0099c4;
}

/* Icon */
.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 400;
  flex-shrink: 0;
  color: #4a5565;
  transition: all 0.3s ease;
  line-height: 10px;
}

.faq-item.open .faq-icon {
  color: #0099c4;
}

/* Answer */
.faq-answer-wrapper {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.35s ease;
}

.faq-item.open .faq-answer-wrapper {
  opacity: 1;
}

.faq-answer {
  font-size: 15px;
  line-height: 1.6;
  color: #718096;
  padding: 24px;
  text-align: left;
}
.offerBarText a {
  display: flex;
}
.nav-link {
  display: flex;
  align-items: center;
}
/* ============================================
   CTA CARD
   ============================================ */

.faq-cta-card {
  background: #00b5b8;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  color: #ffffff;
  position: sticky;
  top: 100px;
  box-shadow: 0 10px 40px rgba(0, 181, 184, 0.2);
}

/* Avatar */
.faq-cta-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-cta-avatar-img {
  font-size: 32px;
  line-height: 1;
}

/* Title */
.faq-cta-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #ffffff;
}

/* Description */
.faq-cta-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

/* CTA Button */
.btn-faq-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f4a53a;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  width: 100%;
}

.btn-faq-cta:hover {
  background: #e0952f;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(244, 165, 58, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-cta-card {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 60px 0 0px;
  }

  .section-title {
    font-size: 26px;
  }

  .faq-question-text {
    font-size: 14px;
  }

  .faq-cta-card {
    padding: 32px 24px;
  }
}

/* ============================================
   DEMO / CONTACT FORM SECTION STYLES
   WFX PLM Feature Page
   ============================================ */

.demo-section {
  background-image: url(/assets/img/smart-with-ai/BannerBG.webp);
  padding: 95px 0;
  background-size: cover;
  padding-bottom: 95px;
}

/* Subtle background texture */
.demo-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(0, 181, 184, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(14, 138, 140, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.demo-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ============================================
   LEFT CONTENT
   ============================================ */

.demo-left {
  color: #ffffff;
}

.demo-left h2 {
  font-family: "Cabin", serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 57px;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.demo-left h2 em {
  font-style: normal;
  color: #00b5b8;
}

.demo-left p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  max-width: 340px;
}

/* ============================================
   RIGHT FORM
   ============================================ */

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.demo-form .btn.btn-primary {
  width: 100%;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0 16px;
  transition: all 0.2s ease;
}

.form-field:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.form-field:focus-within {
  border-color: #00b5b8;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 181, 184, 0.15);
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field.textarea {
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
}

/* Icon */
.field-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255);
  margin-right: 12px;
  flex-shrink: 0;
}

.form-field:focus-within .field-icon {
  color: #00b5b8;
}

/* Inputs */
.form-field input,
.form-field select,
.form-field textarea {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  padding: 14px 0;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255);
}

.form-field textarea {
  resize: none;
  line-height: 1.5;
  min-height: 80px;
  padding-top: 0px;
}

/* Select dropdown */
.form-field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
}

.form-field select option {
  background: transparent;
  color: #000000;
  padding: 10px;
}

.form-field select:invalid,
.form-field select option[value=""] {
  color: rgba(255, 255, 255);
}

/* Submit Button */
.btn-get-demo {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #00b5b8 0%, #0e8a8c 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
  font-family: inherit;
}

.btn-get-demo:hover {
  background: linear-gradient(135deg, #00c4c7 0%, #0f9a9c 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 181, 184, 0.3);
}

.btn-get-demo:active {
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .demo-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .demo-left {
    text-align: center;
  }

  .demo-left p {
    max-width: 100%;
  }

  .demo-left h2 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .testi-card blockquote {
    font-size: 14px;
  }
  .testi-card {
    padding: 27px;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  }
  .stat-icon {
    width: 25px;
    height: 25px;
    font-size: 11px;
  }
  .stat-number {
    font-size: 16px;
  }
  .integrations {
    padding: 58px 0px 60px;
  }
  .integrations .head {
    margin-bottom: 38px;
  }
  .modal-content {
    max-width: 411px;
  }
  .modal-content .erp-buyer-guide-content h2,
  .modal-content .plm-buyer-guide-content h2 {
    font-size: 39px;
    line-height: 50px;
  }
  .demo-section {
    padding: 60px 0;
  }

  .demo-left h2 {
    font-size: 32px;
    line-height: 39px;
  }
  .footer_content_area .text-center {
    display: flex;
    justify-content: center;
  }
  .story-card.active img {
    height: auto !important;
  }
  .stories-grid {
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .demo-inner {
    padding: 0 20px;
    gap: 22px;
  }

  .enterprise-impact {
    height: auto;
    min-height: auto;
    padding: 40px 20px;
  }

  .enterprise-impact .content {
    height: auto;
    min-height: 550px;
  }

  .pill {
    top: 5%;
    font-size: 11px;
    padding: 10px 16px;
  }

  .qmark {
    top: 12%;
  }

  .qmark i {
    width: 10px;
    height: 20px;
  }

  .quote {
    font-size: 20px;
    line-height: 1.4;
  }

  .footer {
    bottom: 8%;
    width: 95%;
    gap: 15px;
    flex-wrap: wrap;
  }

  .logo {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-text .name {
    font-size: 13px;
  }

  .brand-text .sub {
    font-size: 11px;
    margin-top: 2px;
  }

  .divider {
    height: 30px;
  }

  .stat .num {
    font-size: 24px;
  }

  .stat .lbl {
    font-size: 10px;
    margin-top: 4px;
  }
}

/* HeroPassport.css */

.hero-right {
  position: relative;
  width: 47%;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* FLOATING CHIPS */

.chip {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 14px 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.chip b {
  font-size: 15px;
  color: #24303d;
}

.chip p {
  margin-top: 4px;
  font-size: 12px;
  color: #7e8794;
}

.chip-1 {
  top: -11px;
}

.chip-2 {
  right: -24px;
  top: 270px;
}

/* .chip-3 {
  left: 140px;
  bottom: 90px;
} */

.ico {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1dc7b4, #00a98f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ico.orange {
  background: linear-gradient(135deg, #f4a53a, #e07b00);
}

.ico.purple {
  background: linear-gradient(135deg, #3e3a5e, #5e58a0);
}

/* MAIN CARD */

.hero-passport-card {
  border-radius: 30px;
  overflow: hidden;
  background: #f9faf8;
  border: 1px solid #dfe3dc;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* HEADER */

.hpp-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 27px;
  border-bottom: 1px dashed #d7d7d7;
}

.left-head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.pp-id {
  background: #152536;
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
}

.pp-name {
  font-size: 13px;
  color: #24303d;
  font-weight: 700;
}

.pp-stage {
  background: #dcefe2;
  color: #11804c;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}

/* FRAME */

.hpp-frame {
  width: 100%;
}

/* TOP BAR */

.frame-bar {
  padding: 8px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.frame-dots {
  display: flex;
  gap: 10px;
}

.frame-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.frame-dots span:nth-child(1) {
  background: #ef8e8e;
}

.frame-dots span:nth-child(2) {
  background: #efc96f;
}

.frame-dots span:nth-child(3) {
  background: #8fd392;
}

.frame-tabs {
  display: flex;
  gap: 12px;
}

.tab {
  border: none;
  padding: 10px 18px;
  border-radius: 12px;
  background: #eceeed;
  color: #6e7783;
  cursor: pointer;
}

.tab.active {
  background: #d9eef0;
  color: #0099a8;
  font-weight: 600;
}

.ai-tag {
  background: #fae8c6;
  color: #c57f00;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}

/* BODY */

.frame-body {
  display: flex;
  border-top: 1px solid #ececec;
}

/* SIDEBAR */

.mini-side {
  width: 198px;
  padding: 8px;
  border-right: 1px solid #ececec;
}

.mini-side .row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #68717d;
  padding: 8px 10px;
  border-radius: 14px;
  margin-bottom: 0px;
  font-size: 11px;
}

.mini-side .row.active {
  background: #dff0f1;
  color: #00a3b0;
  font-weight: 600;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bcc2ca;
}

.active .dot {
  background: #00a9b7;
}

/* AI TOAST */

.hero-ai-toast {
  margin-top: 11px;
  background: #fff3e5;
  border-radius: 14px;
  padding: 8px 14px;
}

.hero-ai-toast small {
  display: block;
  color: #cb8400;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-ai-toast strong {
  display: block;
  margin-top: 10px;
  color: #24303d;
  line-height: 1.5;
  font-size: 10px;
}

/* MAIN */

.mini-main {
  flex: 1;
  padding: 3px 1px;
}

.head {
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
}

.head strong {
  color: #24303d;
  font-size: 16px;
}

.head span {
  /* color: #8a93a0; */
}

/* CARDS */

.mini-cards {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}

.mini-card {
  width: 99px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #ececec;
  padding: 14px;
}

.mini-swatch {
  height: 60px;
  border-radius: 14px;
  background: #ecece4;
}

.mini-swatch.b {
  background: #eceaf5;
}

.mini-swatch.c {
  background: #f3ebe4;
}

.meta {
  margin-top: 14px;
}

.meta b {
  display: block;
  color: #24303d;
}

.meta span {
  color: #9aa2ad;
  font-size: 8px;
}

/* TABLE */

.mini-table {
  margin-top: 10px;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  overflow: hidden;
}

.mini-table .row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  padding: 3px 25px;
  border-top: 1px solid #ececec;
  align-items: center;
  font-size: 14px;
  color: #2f3945;
}

.mini-table .row:first-child {
  border-top: none;
}

.table-head {
  background: #eef0ef;
  font-weight: 700;
  color: #6c7682;
}

.pill {
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

.pill-ok {
  background: #def4e4;
  color: #24874f;
}

.pill-warn {
  background: #fff1db;
  color: #c77f00;
}

.pill-info {
  background: #e2efff;
  color: #3675cc;
}

/* BOTTOM TAPE */

.hpp-tape {
  height: 40px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0 3px;
  position: relative;
}
.hpp-tape.left-tape {
  border-top: 1px solid rgba(14, 27, 38, 0.35);
  background: transparent;
  padding: 0 0px;
  width: 84%;
}
.tick {
  width: 1px;
  height: 8px;
  background: rgba(14, 27, 38, 0.35);
}

.tick.medium {
  height: 12px;
}

.tick.large {
  height: 18px;
}

.hpp-tape-num {
  position: absolute;
  right: 18px;
  bottom: 6px;
  font-size: 12px;
  color: #6f7884;
}
.hero-section {
  position: relative;
  overflow: visible;
  /* padding: 80px 20px; */
  width: 50%;
  padding-bottom: 20px;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ================= SATELLITES ================= */

.satellite {
  position: absolute;
  width: 178px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 15px;
  padding: 13px;
  padding: 13px 14px;
  box-shadow:
    0 18px 32px -16px rgba(33, 37, 41, 0.18),
    0 0 0 1px rgba(0, 153, 196, 0.05);
  animation: floaty 7s ease-in-out infinite;
}

.sat-ai {
  left: -20px;
  top: -51px;
}

.sat-track {
  left: -20px;
}

.sat-techpack {
  right: -20px;
  top: -60px;
}

.sat-vendor {
  right: -20px;
}

.sat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
}

.sat-ico {
  width: 25px;
  height: 25px;
  border-radius: 12px;
  background: #00b7d6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

.beige {
  background: #ecd8bc;
  color: #8a5b1f;
}

.sat-title {
  font-size: 12px;
  font-weight: 700;
  color: #232323;
}

.sat-meta {
  margin-left: auto;
  font-size: 7px;
  letter-spacing: 2px;
  color: #999;
  font-weight: 700;
}

/* ================= AI FEATURES ================= */

.ai-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-feature {
  display: flex;
  align-items: center;
  background: linear-gradient(95deg, #f2fbfc, #fcf5ec);
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 8px;
  color: #555;
  font-size: 12px;
}

.ai-feature b {
  color: #222;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00b7d6;
  margin-right: 6px;
}

/* ================= TRACK ================= */

.track-bar {
  height: 6px;
  background: #ececec;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}

.track-bar i {
  width: 42%;
  height: 100%;
  background: #00b7d6;
  display: block;
  border-radius: 30px;
}

.track-bar::after {
  content: "";
  position: absolute;
  top: 42%;
  left: 39%;
  width: 12px;
  height: 13px;
  background: #00b7d6;
  border: 4px solid white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.track-steps {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 12px;
}

.track-steps .done {
  color: #00b7d6;
}

.track-steps .now {
  color: #111;
}

/* ================= CENTER CARD ================= */

.hero-card {
  background: #fff;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  box-shadow: 0 10px 12px rgba(0, 0, 0, 0.08);
  width: 317px;
}

.passport-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 14px 0px 14px;
  border-bottom: 0px solid #ececec;
  justify-content: space-between;
}

.pp-id {
  color: #333;
  border-radius: 12px;
  padding: 9px 6px;
  font-weight: 700;
  font-size: 11px;
  font-family: "Cabin";
  background: transparent;
}

.pp-name {
  flex: 1;
  font-size: 10px;
  font-weight: 700;
  color: #222;
}

.pp-stage {
  background: #00b7d6;
  color: white;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
}

.product-photo {
  position: relative;
  margin: 10px 24px 24px 24px;
  height: 208px;
  background: rgb(241, 242, 245);
  border-radius: 28px;
  border: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-photo svg {
  width: 200px;
}

.gsm-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  background: white;
  border: 1px solid #a9dcec;
  color: #008db1;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 8px;
  font-weight: 700;
}

.photo-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: white;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 8px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #555;
}

.spec-rows {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 6px;
  padding: 0 24px 15px;
}

.spec-rows div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.lab {
  font-size: 13px;
  color: #999;
  /* margin-bottom: 6px; */
}

.val {
  font-size: 11px;
  font-weight: 700;
  color: #222;
}

.colorways {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 21px 11px 26px;
}

.label {
  font-size: 7px;
  letter-spacing: 2px;
  color: #888;
  font-weight: 700;
}

.swatches {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sw {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 1px #ddd;
}

.sw1 {
  background: #dfc8aa;
}

.sw2 {
  background: #1f2430;
}

.sw3 {
  background: #be4b48;
}

.sw4 {
  background: #6e8fb3;
}

.more {
  font-weight: 700;
  color: #777;
}

.ai-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgb(238, 241, 244);
  padding: 13px 24px;
  justify-content: space-between;
}
.ai-bar-text svg {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}

.ai-dot {
  width: 6px;
  height: 6px;
  background: #00b7d6;
  border-radius: 50%;
}

.ai-label {
  color: #008db1;
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 700;
}

.ai-msg {
  font-size: 6px;
  color: #666;
}

/* ================= TECH PACK ================= */

.pom-rows {
  display: flex;
  flex-direction: column;
}

.pom {
  display: flex;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid #ececec;
}

.pom:last-child {
  border-bottom: none;
}

.pom .nm {
  flex: 1;
  color: #555;
  font-size: 12px;
}

.pom .val {
  font-weight: 700;
  color: #222;
}

.pom .tol {
  margin-left: 12px;
  color: #999;
  font-size: 11px;
}

/* ================= VENDOR ================= */

.v-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid #ececec;
}

.name {
  font-size: 12px;
  font-weight: 700;
  color: #222;
}

.sub {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

.pill-ok,
.pill-wait {
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.pill-ok {
  background: #def5e5;
  color: #2d8a57;
}

.pill-wait {
  background: #f9edd2;
  color: #b68116;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .hero-visual {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-panel {
    max-width: 100%;
  }

  .hero-panel-left,
  .hero-panel-right {
    max-width: 100%;
  }

  .satellite,
  .hero-card,
  .hero-card-center {
    position: relative;
    inset: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
  }
}

.stories-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* BACKGROUND */

.stories-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  left: -220px;
  top: -180px;
  border-radius: 50%;
  background: rgba(0, 206, 198, 0.12);
  filter: blur(120px);
}

.stories-section::after {
  content: "";
  position: absolute;
  width: 392px;
  height: 295px;
  right: 0px;
  bottom: -300px;
  border-radius: 50%;
  background: rgba(251, 232, 207, 0.5);
  filter: blur(120px);
}

/* PIN */
.stories-section {
  position: relative;
  overflow: visible;
}
.pin-wrap {
  height: 300vh;
  position: relative;
}

.pin-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 32px;
  /* padding-top: 69px; */
}

/* GRID */

.stories-grid {
  width: 100%;
  max-width: 1350px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */

.left-side {
  max-width: 500px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* border: 1px solid rgba(0, 153, 196, 1);
  padding: 10px 18px;
  border-radius: 50px; */
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(0, 153, 196, 1);
  margin-bottom: 3px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00cec6;
}

.left-side h2 {
  font-size: 45px;
  line-height: 1;
  font-weight: 700;
  color: #212529;
  margin-bottom: 23px;
}

.left-side h2 span {
  background: linear-gradient(90deg, #0099c4, #00cec6);
  -webkit-background-clip: text;
  color: transparent;
}

.lede {
  font-size: 18px;
  line-height: 1.8;
  color: #5c6673;
  margin-bottom: 34px;
}

/* SHOWING */

.showing-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* padding: 14px 20px; */
  border-radius: 50px;
  /* background: linear-gradient(90deg, #f4fcfd, #fff6ea); */
  /* border: 1px solid rgba(0, 153, 196, 0.15); */
  margin-bottom: 28px;
}

.strip_line {
  width: 50px;
  height: 2px;
  background: #e7e7e7;
}
.strip_line.passed {
  width: 50px;
  height: 2px;
  background: #e7e7e7;
}
.strip_line.active {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #00cec6, #0099c4);
}
.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00cec6;
}

.count {
  font-size: 15px;
  font-weight: 700;
  color: #006d8c;
  font-family: "Open Sans";
}

.brand-name {
  font-size: 14px;
  font-weight: 700;
}

/* DOTS */

.dots {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50px;
  border: none;
  background: #00b7d6;
}

.dot.active,
.dot.passed {
  background: linear-gradient(90deg, #00cec6, #0099c4);
}

/* BUTTONS */

.buttons {
  display: flex;
  gap: 14px;
}

.btn {
  border-radius: 50px;
  padding: 15px 28px !important;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.primary {
  border: none;
  color: #fff;
  background: linear-gradient(90deg, #00cec6, #0099c4);
  box-shadow: 0 18px 30px rgba(0, 153, 196, 0.2);
}

.secondary {
  background: white;
  border: 1px solid #0099c4;
  color: #006d8c;
}

/* RIGHT */

.right-side {
  position: relative;
  /* height: 720px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CARD */

.story-card {
  position: absolute;
  width: 100%;
  max-width: 488px;
  background: white;
  border-radius: 28px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.7s ease;
}

.story-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 5;
}
.story-card.active img {
  height: 288px;
  object-fit: cover;
}
.story-card.prev {
  opacity: 0;
  transform: translateY(-40px) scale(0.95);
}
.story-card img {
  border-radius: 12px;
}

.story-card::before {
  content: "";
  position: absolute;
  left: 27px;
  top: -2px;
  width: 91%;
  height: 5px;
  background: linear-gradient(90deg, #00cec6, #0099c4);
  border-radius: 50%;
}

/* COVER */

.cover {
  height: 230px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fbe8cf, #f0f1f7, #f5fdff);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.shirt {
  width: 120px;
  height: 170px;
  background: rgba(0, 0, 0, 0.12);
  clip-path: polygon(
    25% 0%,
    75% 0%,
    100% 20%,
    82% 40%,
    82% 100%,
    18% 100%,
    18% 40%,
    0% 20%
  );
}

/* HEAD */

.story-head {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 16px;
  margin-top: 13px;
}

.story-head h3 {
  font-size: 38px;
  color: #212529;
}

.story-head span {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #5d6875;
  font-weight: 700;
}

/* TAGS */

.tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}

.tag {
  background: #f0f1f7;
  padding: 5px 11px;
  border-radius: 8px;
  font-size: 12px;
  color: #596472;
}

/* LINE */

.line {
  height: 1px;
  margin: 8px 0;
  background: repeating-linear-gradient(
    to right,
    rgba(0, 0, 0, 0.18) 0 6px,
    transparent 6px 12px
  );
}

/* METRIC */

.metric-row {
  display: flex;
  gap: 24px;
  align-items: center;
}

.metric-row h1 {
  font-size: 58px;
  line-height: 1;
  background: linear-gradient(90deg, #0099c4, #00cec6);
  -webkit-background-clip: text;
  color: transparent;
  font-family: "Open Sans", sans-serif;
}

.metric-row p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
  color: #2e3540;
}

/* QUOTE */

.quote {
  font-size: 13px;
  line-height: 16px;
  color: #4a5565;
  font-style: italic;
  margin-bottom: 1px;
}

/* FOOTER */

.story-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 7px;
}

.read-btn {
  border: none;
  background: none;
  color: rgba(0, 153, 196, 1);
  font-weight: 700;
  font-size: 15px;
}

.read-time {
  background: #f0f1f7;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: #5b6673;
  font-style: italic;
}

/* MOBILE */

@media (max-width: 991px) {
  .pin-wrap {
    height: auto;
  }

  .pin-inner {
    position: relative;
    height: auto;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .right-side {
    height: auto;
  }

  .story-card {
    position: relative;
    opacity: 1;
    transform: none;
    margin-bottom: 30px;
  }
}
.enterprise-impact_section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.enterpriseImpact_stage {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 65px 0px;
  background: #f5fdff;
}
.enterpriseImpact_stage::before,
.enterpriseImpact_stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.enterpriseImpact_stage::before {
  width: 700px;
  height: 700px;
  left: -240px;
  top: -240px;
  background: radial-gradient(
    circle,
    rgba(0, 206, 198, 0.22) 0%,
    transparent 70%
  );
}
.enterpriseImpact_stage::after {
  width: 620px;
  height: 620px;
  right: -220px;
  bottom: -260px;
  background: radial-gradient(
    circle,
    rgba(251, 232, 207, 0.55) 0%,
    transparent 70%
  );
}
/* decorative background layer */
.deco {
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.content {
  inset: 0;
  animation: fade 0.9s ease both;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ENTERPRISE IMPACT pill */
.quote_pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(0, 153, 196, 1);
}
.quote_pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-2);
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.8);
}
.quote_pill span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(0, 153, 196, 1);
}

/* stylized quote mark */
.quote_qmark {
  top: 17.2%;
  left: 50%;
  display: flex;
  gap: 0.55cqw;
}
.quote_qmark i {
  display: block;
  width: 1cqw;
  height: 2.4cqw;
  background: linear-gradient(90deg, #00d1cf 0, #0099c4 100%);
  transform: skewX(-12deg);
  border-radius: 0.18cqw;
  opacity: 0.9;
}

/* main quote */
.quote_section {
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.235;
  letter-spacing: -0.018em;
  max-width: 866px;
}
/* .quote_section .ln {
  display: block;
} */
.quote_section .w {
  color: #212529;
}
.quote_section .g {
  color: #212529;
}
.quote_section .b {
  background: linear-gradient(90deg, #00d1cf 0, #0099c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #34d9b4;
}
.quote_section .teal {
  background: linear-gradient(90deg, #00d1cf 0, #0099c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #34d9b4;
}

/* bottom info row */
.footer_section {
  display: flex;
  align-items: center;
  gap: 2.6cqw;
}
.footer_section .brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer_section .logo {
  width: 3.5cqw;
  height: 3.5cqw;
  border-radius: 0.95cqw;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.3cqw;
  letter-spacing: 0.02em;
  box-shadow: none;
}
.footer_section .logo img {
  width: 100%;
  object-fit: contain;
  border-radius: 5px;
}

.footer_section .brand-text .name {
  color: #000000;
  font-weight: 700;
  font-size: 1.28cqw;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.footer_section .brand-text .sub {
  color: var(--text-grey);
  font-weight: 400;
  font-size: 0.96cqw;
  margin-top: 0.18cqw;
}
.footer_section .divider {
  width: 1px;
  height: 3.4cqw;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(140, 170, 185, 0.5),
    transparent
  );
}
.footer_section.stats {
  display: flex;
  align-items: flex-start;
  gap: 2.4cqw;
}
.footer_section .stat .num {
  color: #212529;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.footer_section .stat .lbl {
  color: var(--text-grey);
  font-weight: 600;
  font-size: 0.82cqw;
  letter-spacing: 0.22em;
  margin-top: 0.6cqw;
  white-space: nowrap;
}
.modal {
  padding-top: 110px;
  left: 0;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  transition: 5s ease-in-out;
  position: fixed;
  width: 100%;
}
.modal-content {
  display: flex;
  flex-direction: column;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: #fff;
  margin: auto;
  padding: 0 10px;
  border: 0 solid #242733;
  width: 729px;
  border-radius: 0;
  position: relative;
}
.modal-content .container .row {
  padding-top: 16px;
}
.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 0 10px;
  border: 0 solid #242733;
  width: 729px;
  border-radius: 0;
  position: relative;
}
.modal-content .erp-buyer-guide-content input,
.modal-content .plm-buyer-guide-content input {
  padding: 8px 15px;
}
.modal-content .erp-buyer-guide-content #guide-btn input,
.modal-content .plm-buyer-guide-content #guide-btn input {
  padding: 8px 15px;
  color: #fff;
}
.modal-content .erp-buyer-guide-content p,
.modal-content .plm-buyer-guide-content p {
  font-size: 11px;
  margin-top: 10px;
  margin-bottom: 0;
  color: #5d5d5f;

  font-weight: 500;
}
.modal-content .erp-buyer-guide-content h2,
.modal-content .plm-buyer-guide-content h2 {
  color: #242733;

  font-size: 46px;
  line-height: 61px;
  margin-bottom: 10px;
}
.modal-content .erp-buyer-guide-content h3,
.modal-content .plm-buyer-guide-content h3 {
  font-size: 13px;
  margin-bottom: 15px;
  color: #242733;

  font-weight: 500;
}
.modal-content .free-guide-btn a {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 25px;
  text-decoration: none;
}
.free-guide-btn #formsubmit {
  padding: 8px 0;
  width: 100%;
}
.modal-content .erp-guide-img img {
  width: 39%;
  position: absolute;
  right: 51px;
}
.modal-content .guide-img img {
  width: 50%;
  position: absolute;
  right: 35px;
}
.erp-buyer-guide-content,
.plm-buyer-guide-content {
  padding-left: 8px;
  padding-bottom: 25px;
}

.modal-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
  align-items: center;
}

.modal-form-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.modal-form-content {
  width: 100%;
  max-width: 400px;
}
.modal-form-content .thanks-text {
  color: #000;
  font-size: 11px;
}
.modal-form-content .thanks-text p {
  margin-bottom: 0;
}

.modal-form-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #212529;
  line-height: 1.2;
}

.modal-form-content h3 {
  font-size: 16px;
  font-weight: 400;
  color: #4a5565;
  margin: 0 0 28px 0;
}

.form-group {
  margin-bottom: 16px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: #0099c4;
}

.form-input::placeholder {
  color: #999;
}

.error-message {
  color: #c24a4a;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

.email-error-msg {
  color: #d32f2f;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

.thanks-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
}

.thanks-text svg {
  flex-shrink: 0;
}

.modal-submit-btn {
  width: 100%;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  background: linear-gradient(95deg, #00cec6 0%, #0099c4 100%);
  color: white;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.modal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 153, 196, 0.3);
}

.modal-submit-btn:active {
  transform: translateY(0);
}

.modal-image-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-content {
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.guide-image {
  max-width: 350px;
  width: 100%;
  height: auto;
}

.success-message {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: rgba(4, 168, 0, 0.05);
}

.success-message p {
  margin: 0;
  color: #04a800;
  font-weight: 600;
  font-size: 14px;
}

/* =====================================================================
   RESPONSIVE DESIGN — MOBILE-FIRST REBUILD
===================================================================== */

/* -----  EXTRA SMALL (< 480px)  ----- */
@media (max-width: 479px) {
  .container {
    max-width: 100%;
    padding: 0 12px;
  }

  h1 {
    font-size: 24px;
    line-height: 1.2;
  }

  h2 {
    font-size: 20px;
    line-height: 1.2;
  }

  h3 {
    font-size: 16px;
  }

  h4 {
    font-size: 14px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .nav-inner {
    height: 56px;
    padding: 0 12px;
  }

  .logo svg {
    height: 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    gap: 6px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 14px;
    font-size: 12px;
  }

  .hero {
    padding: 32px 0 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-left h1 {
    font-size: 22px;
    margin: 0 0 12px 0;
  }

  .hero-left .lede {
    font-size: 14px;
    margin: 12px 0 16px;
    max-width: 100%;
  }

  .hero-eyebrow {
    font-size: 11px;
  }

  .hero-ctas {
    flex-direction: row !important;
    gap: 8px;
    margin-bottom: 20px;
  }

  .hero-ctas a,
  .hero-ctas button {
    width: 100%;
    text-align: center;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    margin-top: 16px;
  }

  .hpp-tape {
    display: none;
  }

  .trusted {
    padding: 32px 0 40px;
  }

  .trusted .label {
    font-size: 10px;
    margin-bottom: 28px;
  }

  .carousel-slide {
    padding: 16px 10px;
    min-height: 70px;
  }

  .carousel-slide img {
    max-height: 48px;
  }

  .trusted-carousel .slick-slide {
    margin: 0 8px;
    float: left;
  }

  .trusted-carousel .slick-list {
    margin: 0 -8px;
  }

  .problem {
    padding: 32px 0 40px;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head h2 {
    font-size: 20px;
    margin: 8px 0;
  }

  .section-head p {
    font-size: 13px;
  }

  .problem-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .prob-card {
    padding: 14px;
    gap: 12px;
  }

  .prob-num {
    font-size: 32px;
  }

  .prob-tag {
    font-size: 9px;
    padding: 4px 6px;
  }

  .prob-art {
    height: 120px;
  }

  .prob-body h4 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .prob-body p {
    font-size: 12px;
  }

  .prob-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-top: 8px;
    border-top: none;
  }

  .prob-metric small {
    font-size: 10px;
  }

  .prob-metric strong {
    font-size: 16px;
  }

  .problem-answer {
    flex-direction: column;
    padding: 12px 16px;
    gap: 8px;
    margin-top: 24px;
  }

  .pa-text {
    font-size: 12px;
  }

  .pa-cta {
    font-size: 12px;
  }

  .business-impact {
    padding: 40px 0 48px;
  }

  .impact-list {
    gap: 0;
  }

  .impact-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 16px;
    border-bottom: 1px solid var(--line);
    border-left: 3px solid transparent;
    position: relative;
  }

  .impact-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #00cec6 0%, #0099c4 100%);
    transition: height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .impact-item:hover {
    background: linear-gradient(180deg, #f5fdff, #ecf7f8);
  }

  .impact-item:hover::before {
    height: 100%;
  }

  .impact-num-col {
    text-align: center;
    margin-bottom: 4px;
  }

  .impact-num {
    font-size: 32px;
    -webkit-text-stroke: 1.5px var(--teal);
  }

  .impact-title-col,
  .impact-desc-col {
    display: flex;
    align-items: flex-start;
  }

  .impact-title-col h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .impact-desc-col p {
    font-size: 13px;
  }

  .capabilities {
    padding: 32px 0;
  }

  .thread-rail {
    top: 48px;
    padding: 8px 0;
  }

  .thread-track {
    padding: 16px 0;
  }

  .station {
    gap: 4px;
    flex: 0 1 auto;
  }

  .station-dot {
    width: 26px;
    height: 26px;
    font-size: 8px;
  }

  .station-label {
    display: none;
  }

  .cap-pin-wrap {
    height: auto !important;
  }

  .cap-pin {
    position: relative;
    top: auto !important;
    height: auto;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
  }

  .cap-text {
    padding: 0;
  }

  .cap-text-stack {
    min-height: auto;
  }

  .cap-slide {
    position: relative;
    inset: auto;
    transform: none;
    opacity: 1;
    margin-bottom: 24px;
  }

  .cap-slide.active {
    margin-bottom: 24px;
  }

  .slide-num {
    font-size: 9px;
    padding: 2px 6px;
  }

  .slide-stage {
    font-size: 10px;
  }

  .cap-slide h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .cap-slide p {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .cap-list {
    gap: 6px;
    margin-bottom: 12px;
  }

  .cap-list li {
    font-size: 12px;
    gap: 8px;
  }

  .cap-list .check {
    width: 18px;
    height: 18px;
    font-size: 9px;
  }

  .ai-ribbon {
    width: 100%;
    padding: 8px 10px;
    gap: 6px;
  }

  .ai-ribbon .ai-text small {
    font-size: 9px;
  }

  .ai-ribbon .ai-text strong {
    font-size: 11px;
  }

  .cap-links {
    gap: 8px;
    flex-wrap: wrap;
  }

  .cap-link {
    font-size: 11px;
    width: 100%;
  }

  .cap-stage-right {
    width: 100%;
    height: auto;
  }

  .passport {
    width: 100%;
    border-radius: 12px;
  }

  .passport-bar {
    padding: 10px 12px;
    gap: 8px;
    flex-wrap: wrap;
  }

  .pp-id {
    font-size: 9px;
  }

  .pp-name {
    display: none;
  }

  .pp-stage {
    font-size: 9px;
  }

  .cap-screen {
    height: 250px;
    border-radius: 10px;
  }

  .cap-screen-bar {
    padding: 8px 12px;
  }

  .cap-screen-bar .frame-dots {
    gap: 4px;
  }

  .cap-screen-bar .frame-dots span {
    width: 6px;
    height: 6px;
  }

  .kpis {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 8px;
  }

  .kpi {
    padding: 6px 8px;
  }

  .kpi .lab {
    font-size: 5px;
  }

  .kpi .val {
    font-size: 10px;
  }

  .kpi .delta {
    font-size: 10px;
  }

  .assort-table .h,
  .assort-table .r {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 1fr;
    font-size: 10px;
  }

  .tp-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tp-l {
    grid-template-rows: 1fr auto;
  }

  .swatch-row {
    gap: 4px;
  }

  .dev-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .spec-meta {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    font-size: 9px;
  }

  .src-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .vendor {
    padding: 8px 10px;
    font-size: 11px;
  }

  .rfq {
    padding: 10px;
  }

  .rfq h4 {
    font-size: 12px;
  }

  .rfq-table .h,
  .rfq-table .r {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
    font-size: 9px;
  }

  .prod-kpis {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .timeline {
    padding: 10px;
    gap: 8px;
  }

  .tl-row {
    grid-template-columns: 70px 1fr 50px;
    gap: 6px;
    font-size: 10px;
  }

  .tl-row .nm {
    font-size: 9px;
  }

  .diff {
    padding: 32px 0;
  }

  .diff-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .diff-card {
    padding: 16px;
    gap: 12px;
  }

  .diff-card .head {
    gap: 10px;
  }

  .diff-card .icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .diff-card .icon svg {
    width: 20px;
    height: 20px;
  }

  .diff-card h3 {
    font-size: 16px;
  }

  .diff-card .stage {
    font-size: 10px;
  }

  .diff-card p {
    font-size: 12px;
    line-height: 1.5;
  }

  .h2h {
    padding: 32px 0;
  }

  .h2h-table {
    margin: 16px auto 0;
    border-radius: 12px;
  }

  .h2h-row {
    grid-template-columns: 1.1fr 0.95fr 0.95fr;
  }

  .h2h-row > div {
    padding: 10px 10px;
    font-size: 10px;
  }

  .h2h-row.head > div {
    padding: 12px 10px;
    font-size: 11px;
  }

  .stories {
    padding: 40px 0;
  }

  .stories-stage {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stories-left {
    position: relative;
    top: auto;
    max-width: 100%;
  }

  .stories-left h2 {
    font-size: 20px;
    margin-top: 4px;
  }

  .stories-left p {
    font-size: 13px;
    margin: 8px 0 12px;
  }

  .stories-progress {
    gap: 4px;
    margin-top: 12px;
  }

  .stories-track {
    gap: 12px;
    padding-bottom: 12px;
  }

  .story-card {
    flex: 0 0 calc(100vw - 24px);
    padding: 16px;
  }

  .story-brand {
    margin-bottom: 10px;
  }

  .story-brand .name {
    font-size: 18px;
  }

  .story-brand .country {
    font-size: 9px;
  }

  .story-meta {
    font-size: 9px;
    margin-bottom: 10px;
  }

  .story-result {
    padding: 12px 0;
    gap: 10px;
  }

  .story-result .num {
    font-size: 32px;
  }

  .story-result .lab {
    font-size: 11px;
  }

  .story-quote {
    font-size: 12px;
    margin: 6px 0;
  }

  .story-cta {
    margin-top: 10px;
  }

  .story-cta a {
    font-size: 11px;
  }

  .story-photo {
    height: 120px;
    margin-top: 10px;
  }

  .cats {
    padding: 32px 0;
  }

  .cats-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .cat-card {
    padding: 14px;
    gap: 10px;
  }

  .cat-card .ico {
    width: 36px;
    height: 36px;
  }

  .cat-card .ico svg {
    width: 18px;
    height: 18px;
  }

  .cat-card h4 {
    font-size: 15px;
  }

  .cat-card p {
    font-size: 12px;
  }

  .cat-card .tags {
    gap: 4px;
  }

  .cat-card .tags span {
    font-size: 9px;
    padding: 2px 6px;
  }

  .modal-overlay {
    padding: 12px;
  }

  .modal-content {
    width: 100%;
    max-width: calc(100vw - 24px);
    border-radius: 12px;
    animation: slideUp 0.3s ease-out;
  }

  .modal-container {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .modal-form-content {
    max-width: 100%;
  }

  .modal-form-content h2 {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .modal-form-content h3 {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .form-group {
    margin-bottom: 10px;
  }

  .form-input {
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 6px;
  }

  .modal-submit-btn {
    padding: 10px 16px;
    font-size: 13px;
    margin-top: 12px;
  }

  .modal-image-section {
    justify-content: center;
  }

  .guide-image {
    max-width: 240px;
    max-height: 300px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

  .success-message {
    gap: 10px;
    padding: 14px;
  }

  .success-message p {
    font-size: 12px;
  }

  .enterpriseImpact_stage {
    padding: 32px 0;
  }

  .enterpriseImpact_stage::before {
    width: 400px;
    height: 400px;
    left: -180px;
    top: -180px;
  }

  .enterpriseImpact_stage::after {
    width: 350px;
    height: 350px;
    right: -150px;
    bottom: -150px;
  }

  .quote_section {
    font-size: 20px;
    line-height: 1.3;
  }

  .footer_section {
    gap: 1cqw;
    flex-direction: column;
  }

  .footer_section .divider {
    display: none;
  }

  .footer_section .stat .num {
    font-size: 24px;
  }
}

/* ===== SMALL (480px - 767px) ===== */
@media (min-width: 480px) and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }

  h1 {
    font-size: clamp(26px, 4.5vw, 36px);
  }

  h2 {
    font-size: clamp(22px, 3.2vw, 32px);
  }

  .hero {
    padding: 40px 0 50px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-section {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 8px;
  }

  .hero-ctas a,
  .hero-ctas button {
    width: 100%;
    text-align: center;
  }

  .problem-row {
    grid-template-columns: 1fr;
  }

  .cap-pin {
    grid-template-columns: 1fr;
  }

  .cap-stage-right {
    width: 100%;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .stories-stage {
    grid-template-columns: 1fr;
  }

  .stories-left {
    position: relative;
    top: auto;
  }

  .cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-container {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

/* =====================================================================
   FLEXBOX-BASED MOBILE REDESIGN (CLEAN & PROFESSIONAL)
===================================================================== */

@media (max-width: 767px) {
  .footer_section .logo {
    width: 40px;
    height: 40px;
  }
  .hero-section {
    width: 100%;
    padding: 0px 20px;
  }
  .right-side {
    flex-direction: column !important;
  }
  .story-card.prev {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
  .left-side h2 {
    font-size: 27px;
    margin-top: 4px;
    text-align: center;
    line-height: 35px;
  }
  .eyebrow {
    display: flex;
    justify-content: center;
  }
  .metric-row h1 {
    font-size: 30px;
  }
  .stories-section::before {
    width: 100%;
  }
  /* RESET ALL GRIDS TO FLEX */
  * {
    box-sizing: border-box;
  }

  .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
  }

  /* Override all grids */
  [style*="grid"],
  .grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
  }

  section {
    display: flex;
    flex-direction: column;
  }

  /* -----  RESET ALL GRIDS TO FLEX  ----- */
  .hero-grid,
  .hero-grid * {
    display: flex !important;
    grid-template-columns: none !important;
  }

  .problem-row {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 14px !important;
  }

  .diff-grid {
    display: flex !important;
    flex-direction: column !important;
    gridtemplate-columns: none !important;
    gap: 14px !important;
  }

  .h2h-table {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .h2h-row {
    display: flex !important;
    flex-direction: column !important;
    gridtemplate-columns: none !important;
    gap: 0 !important;
  }

  .stories-stage {
    display: flex !important;
    flex-direction: column !important;
    gridtemplate-columns: none !important;
    gap: 24px !important;
  }

  .cats-grid {
    display: flex !important;
    flex-direction: column !important;
    gridtemplate-columns: none !important;
    gap: 12px !important;
  }

  .kpis {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gridtemplate-columns: none !important;
    gap: 8px !important;
  }

  .kpi {
    flex: 1 1 calc(50% - 4px) !important;
  }

  .frame-body {
    display: flex !important;
    flex-direction: column !important;
    gridtemplate-columns: none !important;
  }

  .mini-cards {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gridtemplate-columns: none !important;
    gap: 8px !important;
  }

  .mini-card {
    flex: 1 1 calc(50% - 4px) !important;
  }

  .spec-meta {
    display: flex !important;
    flex-direction: column !important;
    gridtemplate-columns: none !important;
    gap: 4px !important;
  }

  .assort-table .h,
  .assort-table .r {
    display: flex !important;
    flex-direction: column !important;
    gridtemplate-columns: none !important;
  }

  .rfq-table .h,
  .rfq-table .r {
    display: flex !important;
    flex-direction: column !important;
    gridtemplate-columns: none !important;
  }

  .tp-grid {
    display: flex !important;
    flex-direction: column !important;
    gridtemplate-columns: none !important;
    gap: 10px !important;
  }

  .tp-l {
    display: flex !important;
    flex-direction: column !important;
    gridtemplate-rows: none !important;
    gap: 10px !important;
  }

  .dev-grid {
    display: flex !important;
    flex-direction: column !important;
    gridtemplate-columns: none !important;
    gap: 10px !important;
  }

  .src-grid {
    display: flex !important;
    flex-direction: column !important;
    gridtemplate-columns: none !important;
    gap: 10px !important;
  }

  .prod-grid {
    display: flex !important;
    flex-direction: column !important;
    gridtemplate-rows: none !important;
    gap: 12px !important;
  }

  .prod-kpis {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gridtemplate-columns: none !important;
    gap: 8px !important;
  }

  .prod-kpis .kpi {
    flex: 1 1 calc(50% - 4px) !important;
  }

  .swatch-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gridtemplate-columns: none !important;
    gap: 6px !important;
  }

  .sw {
    flex: 1 1 calc(20% - 5px) !important;
  }

  /* -----  NAV  ----- */
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
  }

  .nav-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 60px !important;
    padding: 0 16px !important;
  }

  .logo {
    flex: 0 0 auto !important;
  }

  .logo svg {
    height: 24px !important;
  }

  .nav-links {
    display: none !important;
  }

  .nav-cta {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
  }

  .btn-primary {
    padding: 15px 16px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
  }

  /* -----  HERO  ----- */
  .hero {
    padding: 36px 0 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    grid-template-columns: none !important;
  }

  .hero-content {
    display: flex !important;
    gap: 0px;
    flex-direction: column !important;
  }

  .hero-left {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
  }

  .hero-eyebrow-div {
    margin-bottom: 16px !important;
    justify-content: center;
  }

  .hero-eyebrow {
    font-size: 10px !important;
    align-items: baseline;
  }

  .hero-left h1 {
    font-size: 41px !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
  }
  .heroImg {
    margin-top: 33px;
  }
  .hero-left .lede {
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    color: #4a5565 !important;
  }

  .hero-ctas {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    margin-bottom: 24px !important;
  }

  .hero-ctas a,
  .hero-ctas button {
    width: 100% !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    text-align: center !important;
    border-radius: 50px !important;
  }

  .hero-ctas .btn-primary {
    background: linear-gradient(95deg, #00cec6 0%, #0099c4 100%) !important;
    color: white !important;
  }

  .hero-ctas .btn-secondary {
    background: white !important;
    color: #0099c4 !important;
    border: 2px solid #0099c4 !important;
    justify-content: center !important;
  }

  .hero-trust {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-top: 12px !important;
  }

  .hero-trust .stars {
    font-size: 13px !important;
  }

  .hero-trust strong {
    font-size: 14px !important;
  }

  .hpp-tape {
    display: none !important;
  }

  .hero-thread-bg {
    display: none !important;
  }

  /* -----  TRUSTED  ----- */
  .trusted {
    padding: 36px 0 44px;
  }

  .trusted .label {
    font-size: 11px;
    text-align: center;
    color: #4a5565;
    margin-bottom: 32px;
  }

  .carousel-slide {
    padding: 18px 12px;
    min-height: 75px;
  }

  .carousel-slide img {
    max-height: 52px;
  }

  .trusted-carousel .slick-slide {
    margin: 0 9px;
    float: left;
  }

  .trusted-carousel .slick-list {
    margin: 0 -9px;
  }

  /* -----  PROBLEM  ----- */
  .problem {
    padding: 36px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .section-head {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    text-align: center !important;
    margin-bottom: 28px !important;
  }

  .section-head .eyebrow {
    margin-bottom: 8px !important;
    justify-content: center !important;
  }

  .section-head h2 {
    font-size: 24px !important;
    margin-bottom: 12px !important;
  }

  .section-head p {
    font-size: 14px !important;
    color: #4a5565 !important;
    line-height: 1.6 !important;
  }

  .cutting-table {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .problem-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    grid-template-columns: none !important;
  }

  .prob-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    padding: 16px !important;
    background: white !important;
    border: 1px solid #e0e4ea !important;
    border-radius: 16px !important;
  }

  .prob-head {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .prob-num {
    font-size: 36px !important;
    color: #212529 !important;
  }

  .prob-tag {
    font-size: 9px !important;
    padding: 4px 6px !important;
    background: #e0f7f6 !important;
    color: #0099c4 !important;
  }

  .prob-art {
    height: 140px !important;
    background: linear-gradient(135deg, #f5fdff, #ecfafc) !important;
    border-radius: 12px !important;
  }

  .prob-body {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }

  .prob-body h4 {
    font-size: 16px !important;
    font-weight: 600 !important;
  }

  .prob-body p {
    font-size: 13px !important;
    color: #4a5565 !important;
    line-height: 1.5 !important;
  }

  .prob-foot {
    display: none !important;
  }

  .problem-answer {
    display: block !important;
    flex-direction: column !important;
    gap: 10px !important;
    align-items: center !important;
    margin-top: 24px !important;
    padding: 16px !important;
    background: rgba(0, 181, 184, 0.08) !important;
    border-radius: 50px !important;
    text-align: center !important;
  }
  .pa-pulse {
    display: inline-block;
    margin-right: 13px;
  }

  .pa-text {
    font-size: 13px !important;
    color: #212529 !important;
  }

  .pa-cta {
    font-size: 12px !important;
    color: #0099c4 !important;
    margin-left: 6px;
  }

  /* -----  BUSINESS IMPACT  ----- */
  .business-impact {
    padding: 48px 0 !important;
  }

  .impact-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    max-width: 100%;
  }

  .impact-item {
    display: flex !important;
    flex-direction: column;
    gap: 16px !important;
    padding: 24px 20px !important;
    background: white !important;
    border-bottom: 1px solid #e0e4ea !important;
    border-left: 3px solid transparent !important;
    align-items: flex-start !important;
    position: relative !important;
  }

  .impact-item::before {
    content: "";
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 3px !important;
    height: 0 !important;
    background: linear-gradient(180deg, #00cec6 0%, #0099c4 100%) !important;
    transition: height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  }

  .impact-item:hover {
    background: linear-gradient(180deg, #f5fdff, #ecf7f8) !important;
  }

  .impact-item:hover::before {
    height: 100% !important;
  }

  .impact-num-col {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .impact-num {
    font-size: 40px !important;
    -webkit-text-stroke: 1.5px var(--teal) !important;
  }

  .impact-title-col {
    display: flex !important;
    align-items: center !important;
  }

  .impact-title-col h3 {
    font-size: 18px !important;
    margin: 0 !important;
  }

  .impact-desc-col {
    display: flex !important;
    align-items: center !important;
  }

  .impact-desc-col p {
    font-size: 14px !important;
    margin: 0 !important;
  }

  /* -----  CAPABILITIES  ----- */
  .capabilities {
    padding: 36px 0 !important;
  }

  .thread-rail {
    position: sticky !important;
    top: 60px !important;
    z-index: 40 !important;
    padding: 8px 0 !important;
    background: white !important;
    border-bottom: 1px solid #e0e4ea !important;
    display: none;
  }

  .thread-track {
    padding: 16px 0 !important;
  }

  .straight-line {
    display: none !important;
  }

  .station-label {
    display: none !important;
  }

  .station-dot {
    width: 28px !important;
    height: 28px !important;
    font-size: 8px !important;
  }

  .cap-pin-wrap {
    height: auto !important;
    padding-top: 20px !important;
  }

  .cap-pin {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    grid-template-columns: none !important;
    align-items: stretch !important;
  }

  .cap-text {
    padding: 0 !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  .cap-text-stack {
    min-height: auto !important;
    position: relative !important;
    width: 100% !important;
  }

  .cap-slide {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    padding: 18px !important;
    background: white !important;
    border: 1px solid #e0e4ea !important;
    border-radius: 12px !important;
    margin-bottom: 12px !important;
  }

  .slide-meta {
    display: flex !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
  }

  .slide-num {
    font-size: 10px !important;
  }

  .slide-stage {
    font-size: 10px !important;
  }

  .cap-slide h3 {
    font-size: 18px !important;
    line-height: 1.3 !important;
    margin: 0 !important;
  }

  .cap-slide p {
    font-size: 13px !important;
    color: #4a5565 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
  }

  .cap-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin: 12px 0 !important;
  }

  .cap-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    font-size: 13px !important;
  }

  .cap-list .check {
    flex-shrink: 0 !important;
    width: 20px !important;
    height: 20px !important;
  }

  .ai-ribbon {
    display: flex !important;
    gap: 10px !important;
    padding: 12px !important;
    width: 100% !important;
    background: rgba(0, 206, 198, 0.08) !important;
    border-radius: 12px !important;
    margin: 12px 0 !important;
  }

  .cap-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .cap-link {
    font-size: 12px !important;
    width: max-content !important;
  }

  .cap-stage-right {
    width: 100% !important;
    height: auto !important;
    display: none !important;
  }

  .passport {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .cap-screen {
    height: 280px !important;
    border-radius: 12px !important;
  }

  /* -----  DIFFERENCE  ----- */
  .diff {
    padding: 36px 0 !important;
    width: 100% !important;
  }

  .diff-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .diff-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    padding: 18px !important;
    background: white !important;
    border: 1px solid #e0e4ea !important;
    border-radius: 16px !important;
    width: 100% !important;
  }

  .diff-card .head {
    display: flex !important;
    gap: 12px !important;
    align-items: flex-start !important;
    width: 100% !important;
  }

  .diff-card .icon {
    flex-shrink: 0 !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
  }

  .diff-card .icon svg {
    width: 24px !important;
    height: 24px !important;
  }

  .stage_containt {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    flex: 1 !important;
  }

  .diff-card h3 {
    font-size: 18px !important;
    margin: 0 !important;
  }

  .diff-card .stage {
    font-size: 11px !important;
  }

  .diff-card p {
    font-size: 13px !important;
    color: #4a5565 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
  }

  /* -----  H2H  ----- */
  .h2h {
    padding: 36px 0;
  }

  .h2h-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
  }

  .h2h-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid #e0e4ea;
    padding: 12px;
  }

  .h2h-row.head {
    background: #212529;
    color: white;
    padding: 14px 12px;
  }

  .h2h-row > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    padding: 8px 0;
  }

  /* -----  STORIES  ----- */
  .stories {
    padding: 36px 0 !important;
    width: 100% !important;
  }

  .stories-stage {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    grid-template-columns: none !important;
    width: 100% !important;
    align-items: stretch !important;
  }

  .stories-left {
    position: relative !important;
    top: auto !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
  }

  .stories-left h2 {
    font-size: 24px !important;
    margin-bottom: 10px !important;
  }

  .stories-left p {
    font-size: 14px !important;
    color: #4a5565 !important;
    margin-bottom: 16px !important;
  }

  .stories-progress {
    display: flex !important;
    gap: 6px !important;
    margin-top: 12px !important;
  }

  .stories-progress span {
    flex: 1 !important;
    height: 3px !important;
  }

  .stories-track {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    overflow: visible !important;
    padding-bottom: 0 !important;
    width: 100% !important;
    align-items: stretch !important;
  }

  .story-card {
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    scroll-snap-align: none !important;
    scroll-snap-type: none !important;
    background: transparent !important;
    border: none !important;
    border-top: 1px solid #e0e4ea !important;
    border-bottom: 1px solid #e0e4ea !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    box-shadow: none !important;
  }

  .story-photo {
    display: block !important;
    width: 100% !important;
    height: 240px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    margin-bottom: 16px !important;
  }

  .story-photo .silhouette {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
  }

  .story-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .story-brand {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-bottom: 8px !important;
  }

  .story-brand .name {
    font-size: 18px !important;
    font-weight: 700 !important;
    flex: 1 !important;
    color: #212529 !important;
  }

  .story-brand .country {
    font-size: 10px !important;
    color: #4a5565 !important;
    flex: 0 0 auto !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    font-weight: 600 !important;
  }

  .story-meta {
    display: flex !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
    font-size: 10px !important;
    margin-bottom: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
  }

  .story-meta span {
    background: #f0f1f7 !important;
    color: #4a5565 !important;
    padding: 4px 9px !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
  }

  .story-result {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    padding: 14px 0 !important;
    border-top: 1px dashed #e0e4ea !important;
    border-bottom: 1px dashed #e0e4ea !important;
    margin-bottom: 12px !important;
  }

  .story-result .num {
    font-size: 44px !important;
    color: #0099c4 !important;
    font-weight: 700 !important;
    line-height: 1 !important;
  }

  .story-result .lab {
    font-size: 13px !important;
    color: #212529 !important;
    line-height: 1.5 !important;
  }

  .story-quote {
    font-size: 13px !important;
    color: #4a5565 !important;
    line-height: 1.6 !important;
    margin: 0 0 12px 0 !important;
  }

  .story-cta {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 0 !important;
    gap: 10px !important;
  }

  .story-cta a {
    font-size: 12px !important;
    color: #0099c4 !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
  }

  .story-cta .read-time {
    font-size: 11px !important;
    color: #4a5565 !important;
    font-weight: 500 !important;
    background: #f0f1f7 !important;
    padding: 4px 9px !important;
    border-radius: 6px !important;
  }

  /* -----  CATEGORIES  ----- */
  .cats {
    padding: 36px 0 !important;
    width: 100% !important;
  }

  .cats-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    margin-top: 28px !important;
  }

  .cat-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 16px !important;
    background: white !important;
    border: 1px solid #e0e4ea !important;
    border-radius: 16px !important;
    width: 100% !important;
    animation: none !important;
  }

  .cat-card .ico {
    width: 40px !important;
    height: 40px !important;
  }

  .cat-card .ico svg {
    width: 20px !important;
    height: 20px !important;
  }

  .cat-card h4 {
    font-size: 16px !important;
    margin: 0 !important;
  }

  .cat-card p {
    font-size: 13px !important;
    color: #4a5565 !important;
    margin: 0 !important;
    line-height: 1.5 !important;
  }

  .cat-card .tags {
    display: flex !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
    margin-top: 8px !important;
  }

  .cat-card .tags span {
    font-size: 10px !important;
    padding: 3px 8px !important;
  }

  /* -----  MODAL  ----- */
  .modal-overlay {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
  }

  .modal-content {
    width: 100%;
    max-width: 100%;
    max-height: 90vh;
    border-radius: 24px 24px 0 0;
    display: flex;
    flex-direction: column;
  }

  .modal-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    flex: 1;
    overflow-y: auto;
  }

  .modal-form-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .modal-form-content h2 {
    font-size: 24px;
    margin-bottom: 6px;
  }

  .modal-form-content h3 {
    font-size: 14px;
    margin-bottom: 18px;
    color: #4a5565;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
  }

  .form-input {
    width: 100%;
    padding: 11px 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
  }

  .modal-submit-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    margin-top: 12px;
    border-radius: 24px;
  }

  .modal-image-section {
    display: flex;
    justify-content: center;
    padding: 0;
  }

  .guide-image {
    max-width: 260px;
    max-height: 340px;
    width: 100%;
    height: auto;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }

  .success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 16px;
  }

  /* -----  ENTERPRISE IMPACT  ----- */
  .enterpriseImpact_stage {
    padding: 36px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .quote_section {
    font-size: 22px;
    line-height: 1.3;
  }

  .footer_section {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    text-align: center;
  }

  .footer_section .divider {
    display: none;
  }

  .footer_section .stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .footer_section .stat .num {
    font-size: 18px;
  }

  .footer_section .stat .lbl {
    font-size: 7px;
  }
}

/* =====================================================================
   RESPONSIVE DESIGN — TABLET (max-width: 1024px)
===================================================================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  h1 {
    font-size: clamp(38px, 5vw, 60px);
  }

  h2 {
    font-size: clamp(28px, 3.5vw, 44px);
  }

  .hero {
    padding: 60px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto;
    gap: 24px !important;
  }

  .satellite {
    width: 100% !important;
  }

  .hero-card {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .chip {
    display: none;
  }

  .ai-toast {
    display: none;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    padding: 8px 12px;
    font-size: 14px;
  }

  .nav-cta {
    gap: 6px;
  }

  .problem-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .prob-card {
    padding: 20px;
  }

  .cap-pin {
    grid-template-columns: 1fr;
    gap: 32px;
    top: 100px;
  }

  .cap-text-stack {
    min-height: 350px;
  }

  .cap-slide h3 {
    font-size: clamp(24px, 3vw, 32px);
  }

  .cap-list li {
    font-size: 14px;
    gap: 10px;
  }

  .cap-links {
    flex-direction: column;
    gap: 12px;
  }

  .cap-link {
    width: 100%;
    font-size: 13px;
  }

  .diff-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .diff-card {
    padding: 24px;
  }

  .h2h-table {
    margin: 32px auto 0;
  }

  .h2h-row {
    grid-template-columns: 1.1fr 1fr 1fr;
  }

  .h2h-row > div {
    padding: 14px 18px;
    font-size: 13px;
  }

  .stories-stage {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stories-left {
    position: relative;
    top: auto;
    max-width: 100%;
  }

  .story-card {
    flex: 0 0 100%;
  }

  .cats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cat-card {
    padding: 18px;
  }

  .cat-card h4 {
    font-size: 16px;
  }

  .cat-card p {
    font-size: 13px;
  }

  .thread-rail {
    top: 50px;
  }

  .station-dot {
    width: 32px;
    height: 32px;
    font-size: 10px;
  }

  .station-label strong {
    font-size: 11px;
  }

  .modal-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 32px;
  }

  .modal-form-content h2 {
    font-size: 28px;
  }

  .guide-image {
    max-width: 300px;
    max-height: 400px;
  }

  .modal-image-section {
    justify-content: center;
  }

  .quote_section {
    font-size: 32px;
  }

  .enterpriseImpact_stage {
    padding: 50px 0;
  }
}

/* =====================================================================
   RESPONSIVE DESIGN — MOBILE (max-width: 768px)
===================================================================== */
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }

  h1 {
    font-size: clamp(28px, 4.5vw, 42px);
    line-height: 1.15;
  }

  h2 {
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.1;
  }

  h3 {
    font-size: clamp(18px, 2vw, 24px);
  }

  h4 {
    font-size: 16px;
  }

  .section {
    padding: 80px 0;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-head h2 {
    margin: 10px 0;
  }

  .section-head p {
    font-size: 15px;
  }

  /* -----  NAV  ----- */
  .nav-inner {
    height: 64px;
  }

  .logo svg {
    height: 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    gap: 8px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
    gap: 8px;
  }

  .btn-sm {
    padding: 8px 14px;
    font-size: 12px;
  }

  /* -----  HERO  ----- */
  .hero {
    padding: 40px 0 60px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-left h1 {
    text-wrap: balance;
  }

  .hero-left .lede {
    font-size: 16px;
    margin: 16px 0 24px;
  }

  .hero-ctas {
    gap: 10px;
    margin-bottom: 32px;
  }

  .hero-trust {
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
  }

  .hero-trust .stars {
    font-size: 12px;
  }

  .hero-visual {
    position: relative;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
    margin-top: 24px;
    padding: 20px 0;
  }

  .hero-panel {
    max-width: 100% !important;
  }

  .hero-panel-left,
  .hero-panel-right {
    max-width: 100%;
  }

  .panel-card {
    padding: 11px;
  }

  .hero-card-center {
    width: 100%;
  }

  .satellite {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
  }

  .sat-head {
    margin-bottom: 12px;
  }

  .sat-title {
    font-size: 13px;
  }

  .sat-meta {
    font-size: 10px;
  }

  .hero-card {
    width: 100%;
  }

  .hpp-bar {
    padding: 12px 14px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .hpp-frame {
    height: auto;
    min-height: 300px;
  }

  .frame-body {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mini-table {
    font-size: 10px;
  }

  .mini-card .meta {
    font-size: 8px;
  }

  .ai-toast {
    display: none;
  }

  .chip {
    display: none;
  }

  .hpp-tape-num {
    font-size: 8px;
  }

  /* -----  TRUSTED  ----- */
  .trusted {
    padding: 60px 0;
  }

  .trusted .label {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .carousel-slide {
    padding: 20px 15px;
    min-height: 80px;
  }

  .carousel-slide img {
    max-height: 60px;
  }

  .trusted-carousel .slick-slide {
    margin: 0 10px;
    float: left;
  }

  .trusted-carousel .slick-list {
    margin: 0 -10px;
  }

  /* -----  PROBLEM  ----- */
  .problem {
    padding: 40px 0 60px;
  }

  .problem-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .prob-card {
    padding: 18px;
    gap: 14px;
  }

  .prob-num {
    font-size: 40px;
  }

  .prob-art {
    height: 140px;
  }

  .prob-body h4 {
    font-size: 18px;
    margin: 0 0 6px;
  }

  .prob-body p {
    font-size: 13px;
  }

  .prob-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 10px;
  }

  .problem-answer {
    flex-direction: column;
    padding: 14px 18px;
    gap: 10px;
  }

  .pa-text {
    font-size: 13px;
  }

  .pa-cta {
    font-size: 13px;
  }

  /* -----  BUSINESS IMPACT  ----- */
  .business-impact {
    padding: 60px 0 80px;
  }

  .impact-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
  }

  .impact-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #00cec6 0%, #0099c4 100%);
    transition: height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .impact-item:last-child {
    border-bottom: none;
  }

  .impact-item:hover {
    background: linear-gradient(180deg, #f5fdff, #ecf7f8);
  }

  .impact-item:hover::before {
    height: 100%;
  }

  .impact-num-col {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .impact-num {
    font-size: 56px;
    -webkit-text-stroke: 2px var(--teal);
  }

  .impact-title-col {
    display: flex;
    align-items: center;
  }

  .impact-title-col h3 {
    font-size: 18px;
    margin: 0;
  }

  .impact-desc-col {
    display: flex;
    align-items: center;
  }

  .impact-desc-col p {
    font-size: 15px;
    margin: 0;
  }

  /* -----  CAPABILITIES  ----- */
  .capabilities {
    padding: 40px 0;
  }

  .thread-rail {
    top: 50px;
    padding: 12px 0;
  }

  .thread-track {
    padding: 20px 0;
  }

  .straight-line {
    top: 42px;
  }

  .station {
    gap: 6px;
  }

  .station-dot {
    width: 28px;
    height: 28px;
    font-size: 9px;
  }

  .station-label strong {
    font-size: 10px;
  }

  .cap-pin-wrap {
    height: auto !important;
  }

  .cap-pin {
    position: relative;
    top: auto;
    height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
  }

  .cap-text {
    padding: 10px 0;
  }

  .cap-text-stack {
    min-height: auto;
    position: relative;
  }

  .cap-slide {
    position: relative;
    transform: none;
    opacity: 1;
    margin-bottom: 32px;
  }

  .cap-slide.active {
    margin-bottom: 0;
  }

  .slide-meta {
    margin-bottom: 8px;
  }

  .slide-num {
    font-size: 10px;
    padding: 3px 7px;
  }

  .slide-stage {
    font-size: 11px;
  }

  .cap-slide h3 {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .cap-slide p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .cap-list {
    gap: 8px;
    margin-bottom: 16px;
  }

  .cap-list li {
    font-size: 13px;
    gap: 10px;
  }

  .cap-list .check {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .ai-ribbon {
    width: 100%;
    padding: 10px 12px;
    gap: 8px;
  }

  .ai-ribbon .ai-text strong {
    font-size: 12px;
  }

  .cap-links {
    gap: 12px;
    flex-wrap: wrap;
    flex-direction: row !important;
    align-items: flex-start;
  }

  .cap-link {
    font-size: 12px;
  }

  .cap-stage-right {
    width: 100%;
    height: auto;
  }

  .passport {
    width: 100%;
  }

  .passport-bar {
    padding: 12px 14px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .pp-id {
    font-size: 10px;
  }

  .pp-name {
    font-size: 12px;
  }

  .pp-stage {
    font-size: 10px;
  }

  .cap-screen {
    height: clamp(280px, 60vw, 400px);
  }

  .kpis {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 10px;
  }

  .kpi {
    padding: 8px 10px;
  }

  .kpi .lab {
    font-size: 5px;
  }

  .kpi .val {
    font-size: 11px;
  }

  .assort-table {
    font-size: 11px;
  }

  .assort-table .h,
  .assort-table .r {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 1fr;
  }

  .assort-table .h > div,
  .assort-table .r > div {
    padding: 7px 8px;
  }

  .tp-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tp-l {
    grid-template-rows: auto auto;
  }

  .swatch-row {
    gap: 6px;
  }

  .dev-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .spec-meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    font-size: 10px;
  }

  .src-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .vendor {
    padding: 8px 10px;
    font-size: 11px;
  }

  .rfq {
    padding: 10px;
  }

  .rfq h4 {
    font-size: 12px;
  }

  .rfq-table .h,
  .rfq-table .r {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  }

  .prod-kpis {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .timeline {
    padding: 10px;
    gap: 8px;
  }

  .tl-row {
    grid-template-columns: 80px 1fr 60px;
    gap: 8px;
    font-size: 11px;
  }

  /* -----  DIFFERENCE  ----- */
  .diff {
    padding: 50px 0;
  }

  .diff-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .diff-card {
    padding: 20px;
    gap: 14px;
  }

  .diff-card .head {
    gap: 12px;
  }

  .diff-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .diff-card .icon svg {
    width: 24px;
    height: 24px;
  }

  .diff-card h3 {
    font-size: 18px;
  }

  .diff-card .stage {
    font-size: 11px;
  }

  .diff-card p {
    font-size: 13px;
  }

  /* -----  H2H COMPARISON  ----- */
  .h2h {
    padding: 50px 0;
  }

  .h2h-table {
    margin: 24px auto 0;
    border-radius: 16px;
  }

  .h2h-row {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
  }

  .h2h-row > div {
    padding: 12px 14px;
    font-size: 12px;
  }

  .h2h-row.head > div {
    padding: 14px 12px;
    font-size: 13px;
  }

  .icon-check,
  .icon-cross {
    width: 20px;
    height: 20px;
  }

  /* -----  STORIES  ----- */
  .stories {
    padding: 80px 0;
  }

  .stories-stage {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stories-left {
    position: relative;
    top: auto;
    max-width: 100%;
  }

  .stories-left h2 {
    margin-top: 8px;
  }

  .stories-left p {
    font-size: 15px;
    margin: 12px 0 16px;
  }

  .stories-progress {
    gap: 6px;
    margin-top: 16px;
  }

  .stories-track {
    gap: 16px;
    padding-bottom: 16px;
  }

  .story-card {
    flex: 0 0 calc(100vw - 32px);
    padding: 24px;
    gap: 0;
  }

  .story-brand {
    margin-bottom: 12px;
  }

  .story-brand .name {
    font-size: 20px;
  }

  .story-brand .country {
    font-size: 10px;
  }

  .story-meta {
    font-size: 10px;
    margin-bottom: 12px;
  }

  .story-result {
    padding: 16px 0;
    gap: 12px;
  }

  .story-result .num {
    font-size: 42px;
  }

  .story-result .lab {
    font-size: 12px;
  }

  .story-quote {
    font-size: 14px;
    margin: 8px 0;
  }

  .story-cta {
    margin-top: 12px;
    padding-top: 4px;
  }

  .story-cta a {
    font-size: 12px;
  }

  .story-photo {
    height: 140px;
    margin-top: 12px;
    border-radius: 10px;
  }

  /* -----  CATEGORIES  ----- */
  .cats {
    padding: 50px 0;
  }

  .cats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }

  .cat-card {
    padding: 16px;
    gap: 12px;
  }

  .cat-card .ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .cat-card .ico svg {
    width: 20px;
    height: 20px;
  }

  .cat-card h4 {
    font-size: 16px;
  }

  .cat-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  .cat-card .tags {
    gap: 4px;
  }

  .cat-card .tags span {
    font-size: 10px;
    padding: 2px 6px;
  }

  /* -----  MODAL  ----- */
  .modal-overlay {
    padding: 16px;
  }

  .modal-content {
    width: 100%;
    max-width: calc(100vw - 32px);
    max-height: 90vh;
    border-radius: 12px;
  }

  .modal-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .modal-form-content {
    max-width: 100%;
  }

  .modal-form-content h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .modal-form-content h3 {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 12px;
  }

  .form-input {
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 5px;
  }

  .modal-submit-btn {
    padding: 10px 20px;
    font-size: 13px;
    margin-top: 12px;
    border-radius: 20px;
  }

  .modal-image-section {
    justify-content: center;
  }

  .guide-image {
    max-width: 280px;
    max-height: 350px;
  }

  .modal-close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .success-message {
    gap: 12px;
    padding: 16px;
  }

  .success-message svg {
    width: 32px !important;
    height: 32px !important;
  }

  .success-message p {
    font-size: 13px;
  }

  /* -----  ENTERPRISE IMPACT  ----- */
  .enterpriseImpact_stage {
    padding: 40px 0;
  }

  .enterpriseImpact_stage::before {
    width: 500px;
    height: 500px;
    left: -200px;
    top: -200px;
  }

  .enterpriseImpact_stage::after {
    width: 450px;
    height: 450px;
    right: -180px;
    bottom: -200px;
  }

  .quote_section {
    font-size: 24px;
    line-height: 1.3;
    white-space: normal;
    padding: 0px 20px;
  }

  /* .quote_section .ln {
    display: block;
  } */

  .footer_section {
    gap: 23px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .enterprise-impact_section {
    gap: 21px;
  }
  .footer_section .brand-text .name {
    font-size: 10px;
    text-align: left;
  }
  .stats {
    gap: 29px;
  }
  .footer_section .brand-text .sub {
    font-size: 6px;
  }
  .footer_section .divider {
    display: none;
  }

  .footer_section.stats {
    gap: 2cqw;
  }

  .footer_section .stat .num {
    font-size: 18px;
  }

  /* -----  TRANSITIONS  ----- */
  @media (max-width: 480px) {
    .container {
      padding: 0 12px;
    }

    h1 {
      font-size: clamp(24px, 4vw, 36px);
    }

    h2 {
      font-size: clamp(18px, 2.8vw, 28px);
    }

    h3 {
      font-size: clamp(16px, 1.8vw, 20px);
    }

    .hero-ctas {
      gap: 8px;
    }

    .btn {
      padding: 10px 16px;
      font-size: 12px;
    }

    .problem-row {
      gap: 12px;
    }

    .prob-card {
      padding: 14px;
    }

    .prob-num {
      font-size: 32px;
    }

    .prob-art {
      height: 120px;
    }

    .diff-card {
      padding: 16px;
    }

    .h2h-row {
      grid-template-columns: 1.1fr 0.95fr 0.95fr;
    }

    .h2h-row > div {
      padding: 10px 10px;
      font-size: 11px;
    }

    .story-card {
      flex: 0 0 calc(100vw - 24px);
      padding: 18px;
    }

    .story-result .num {
      font-size: 36px;
    }

    .cats-grid {
      gap: 10px;
    }

    .cat-card {
      padding: 12px;
    }

    .modal-container {
      padding: 18px;
      gap: 16px;
    }

    .modal-form-content h2 {
      font-size: 20px;
    }

    .guide-image {
      max-width: 240px;
      max-height: 300px;
    }

    .quote_section {
      font-size: 18px;
    }

    .modal-close {
      top: 12px;
      right: 12px;
    }
  }
}
.overlayVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modalVideo {
  display: block;
  /* position: relative; */
  width: 90%;
  max-width: 800px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  height: unset;
  padding-top: 10px;
}
.videoWrapper {
  position: relative;
  /* padding-top: 36px; */
  padding-bottom: 10px;
}
.closeBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 16px;
  z-index: 1;
}
iframe {
  height: 430px;
}

@media (min-width: 1390px) and (max-width: 1540px) {
  .container {
    padding: 0 20px;
    max-width: 1150px !important;
  }
  .hero h1 {
    font-size: 63px;
  }
  .hpp-tape.left-tape {
    width: 90%;
  }
  .hero-section {
    width: 52%;
  }
  .hero-desc {
    font-size: 15px;
  }
  .btn-primary {
    font-size: 13px;
    padding: 7px 30px !important;
  }
  .btn-secondary {
    padding: 13px 30px;
    font-size: 13px;
  }
  .hero-eyebrow {
    font-size: 12px;
    align-items: baseline;
  }
  .hero-card {
    width: 284px;
  }
  .product-photo svg {
    width: 190px;
  }
  h2 {
    font-size: clamp(34px, 4vw, 40px);
  }
  .eyebrow {
    font-size: 11px;
  }
  .section-head p {
    font-size: 16px;
  }
  .section-head {
    max-width: 700px;
  }
  .prob-num {
    font-size: 52px;
  }
  .prob-art {
    height: 158px;
  }
  .prob-body p {
    font-size: 14px;
  }
  .prob-body h4 {
    font-size: 20px;
  }
  .problem-answer {
    max-width: 792px;
  }
  .pa-text {
    font-size: 13px;
  }
  .impact-desc-col p {
    font-size: 14px;
  }
  .impact-title-col h3 {
    font-size: 20px;
  }
  .impact-num {
    font-size: 50px;
  }
  .slide-stage {
    font-size: 11.5px;
  }
  .slide-num {
    font-size: 11px;
  }
  .cap-slide h3 {
    font-size: clamp(30px, 3.4vw, 38px);
  }
  .cap-slide p {
    font-size: 14px;
  }
  .cap-slide p {
    margin: 0 0 13px;
    max-width: 461px;
  }
  .cap-list li {
    font-size: 13px;
  }
  .cap-list {
    margin: 0 0 12px;
  }
  .ai-ribbon .ai-text small {
    font-size: 10px;
  }
  .ai-ribbon .ai-text strong {
    font-size: 11.5px;
  }
  .cap-link {
    font-size: 12.5px;
    gap: 1px;
  }
  .cap-links {
    gap: 11px;
  }
  .diff-card h3 {
    font-size: 22px;
  }
  .diff-card .stage {
    font-size: 11px;
  }
  .diff-card .icon {
    width: 54px;
    height: 54px;
  }
  .diff-card p {
    font-size: 14px;
  }
  .cat-card .ico {
    width: 50px;
    height: 50px;
  }
  .cat-card h4 {
    font-size: 16px;
  }
  .cat-card p {
    font-size: 12px;
  }
  .cat-card .tags span {
    font-size: 11px;
  }
  .cat-card {
    padding: 19px;
  }
  .logo-mark {
    width: 49px;
    height: 49px;
  }
  .integration .name {
    font-size: 13px;
  }
  .integration .role {
    font-size: 10px;
  }
  .head p {
    font-size: 16px;
  }
  .logo-grid {
    margin-bottom: 40px;
  }
  .integration-stats {
    margin-top: 0px;
  }
  .integration-cta-buttons {
    margin-top: 40px;
  }
  .testi-card blockquote {
    font-size: 20px;
  }
  .testi-quote-mark {
    font-size: 57px;
    margin-bottom: -27px;
  }
  .testi-card {
    padding: 31px;
  }
  .integration-cta-buttons a {
    padding: 12px 33px !important;
  }
  .faq-list {
    max-width: 854px;
  }
  .faq-question-text {
    font-size: 13px;
  }
  .faq-answer {
    font-size: 13px;
  }
  .faq-icon {
    font-size: 28px;
  }
  .hub-card p {
    font-size: 12px;
  }
  .hub-card .read {
    margin-top: auto;
    font-size: 12px;
  }
  .hub-tag {
    font-size: 9px;
  }
  .hub-meta {
    padding: 18px;
  }
  .hub-grid {
    margin-top: 23px;
  }
  .quote_pill span {
    font-size: 12px;
  }
  .quote_section {
    font-size: 38px;
  }
  .demo-form .btn.btn-primary {
    width: 100%;
    padding: 14px 11px !important;
  }
  .spec-rows {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3px;
    padding: 0 26px 9px;
  }
  .ai-bar {
    padding: 8px 23px;
  }
  .hero-panel-right {
    top: 44px;
    width: 196px;
  }
  .hero-panel-left {
    width: 196px;
    left: -27px;
  }
  .tech-pack-card .panel-head,
  .vendors-card .panel-head {
    margin-bottom: 10px;
  }
  .bar-group {
    max-width: 15px;
  }
  .ai-header-clean {
    margin-bottom: 7px;
  }
  .ai-feature-row {
    border: 1.5px solid rgb(238, 240, 244);
    border-radius: 15px;
    padding: 5px 8px;
  }
  .hero-trust strong {
    font-size: 16px;
  }
  .vendor-name {
    font-size: 11px;
  }

  .vendor-meta {
    font-size: 9px;
  }
  .cap-stage-right {
    height: 100%;
    display: flex;
    align-items: baseline;
    width: 100%;
    text-align: center;
    justify-content: end;
  }
  .cap-stage-right img {
    max-width: 92%;
  }
}
