/* ── OVERLAY & FORM LAYER ─────────────────────────── */
#overlay {
  display: none;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 500;
}

#forms {
  z-index: 999;
  position: relative;
}

/* ── BOTTOM ROW ──────────────────────────────────── */
.bottomRow {
  min-height: 3rem;
  background-color: #1b3a6b;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: none;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

:root {
  --navy: #1b3a6b;
  --navy2: #132c52;
  --blue: #06afe9;
  --bld: #e5f6fd;
  --blb: #b3e3f7;
  --org: #f97316;
  --orh: #ea6c0a;
  --head: #000;
  --body: #475569;
  --muted: #94a3b8;
  --bg: #fff;
  --bga: #f4f7fb;
  --brd: rgba(0, 0, 0, .08);
  --ffd: 'Plus Jakarta Sans', sans-serif;
  --ffb: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ffb);
  color: var(--body);
  background: var(--bg);
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ffd);
  color: var(--head);
}

::placeholder,
.form-control::placeholder,
.form-select::placeholder {
  color: #989898;
  opacity: 1;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .14);
  border-radius: 3px;
}

a {
  text-decoration: none;
}

/* NAV */
.wf-nav {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--brd);
}

.wf-logo {
  width: 32px;
  height: 32px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  font-family: var(--ffd);
  flex-shrink: 0;
}

.brand {
  font-family: var(--ffd);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--head);
}

.brand span {
  color: var(--blue);
}

.nav-link {
  color: var(--body) !important;
  font-size: .875rem;
  transition: color .2s;
}

.nav-link:hover {
  color: var(--head) !important;
}

.nav-link.active {
  color: var(--blue) !important;
  font-weight: 600;
}

/* BUTTONS */
.btn-org {
  background: var(--org);
  color: #fff;
  border: none;
  font-family: var(--ffd);
  font-weight: 700;
  border-radius: 8px;
  padding: 11px 24px;
  font-size: .95rem;
  transition: background .2s, transform .15s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-align: -webkit-center;
}

.btn-org:hover {
  background: var(--orh);
  color: #fff;
  transform: translateY(-1px);
}

.btn-blue {
  background: var(--blue);
  color: #fff;
  border: none;
  font-family: var(--ffd);
  font-weight: 700;
  border-radius: 8px;
  padding: 11px 24px;
  font-size: .95rem;
  transition: background .2s, transform .15s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-blue:hover {
  background: #059fd6;
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  font-family: var(--ffd);
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: .88rem;
  transition: background .2s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .1);
}

.btn-nav {
  background: var(--org);
  color: #fff;
  border: none;
  font-family: var(--ffd);
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: .82rem;
  transition: background .2s;
  cursor: pointer;
}

.btn-nav:hover {
  background: var(--orh);
}

/* FLOATING ICONS */
.fi-wrap {
  position: relative;
}

.fi {
  position: absolute;
  pointer-events: none;
  opacity: .13;
  font-size: 1.7rem;
  z-index: 0;
}

.fi-1 {
  top: -28px;
  left: -48px;
  font-size: 2rem;
  color: var(--org);
  animation: fia 3.2s ease-in-out infinite;
}

.fi-2 {
  top: 32px;
  right: -42px;
  font-size: 1.8rem;
  color: var(--blue);
  animation: fia 2.9s ease-in-out infinite .6s;
}

.fi-3 {
  bottom: 80px;
  left: -50px;
  font-size: 1.5rem;
  color: #7c3aed;
  animation: fia 3.6s ease-in-out infinite 1.1s;
}

.fi-4 {
  bottom: -18px;
  right: -38px;
  font-size: 2.1rem;
  color: #10b981;
  animation: fia 3.0s ease-in-out infinite .3s;
}

.fi-5 {
  top: 46%;
  left: -58px;
  font-size: 1.4rem;
  color: #f59e0b;
  animation: fia 4.0s ease-in-out infinite 1.6s;
}

.fi-6 {
  top: 22%;
  right: -52px;
  font-size: 1.3rem;
  color: var(--org);
  animation: fia 3.8s ease-in-out infinite .9s;
}

.fi-7 {
  top: 65%;
  right: -55px;
  font-size: 1.6rem;
  color: #6366f1;
  animation: fia 3.4s ease-in-out infinite .4s;
}

.fi-8 {
  bottom: 28%;
  left: -36px;
  font-size: 1.2rem;
  color: #14b8a6;
  animation: fia 2.7s ease-in-out infinite 1.3s;
}

@keyframes fia {

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

  50% {
    transform: translateY(-16px) rotate(6deg);
  }
}

/* HERO */
.hero-sec {
  padding: 80px 0 72px;
  background: var(--bg);
}

.alert-pill {
  background: var(--bld);
  border: 1px solid var(--blb);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: .82rem;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
}

.hero-h1 {
  font-family: var(--ffd);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.3rem);
  line-height: 1.13;
  letter-spacing: -.025em;
  color: var(--head);
  margin-bottom: 18px;
}

.hero-h1 em {
  color: var(--blue);
  font-style: normal;
}

/* IMAGES */
.img-responsive {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
}

/* FORM COLUMN — must be explicitly positioned + stacked above #overlay.
   Without this, the .fade-up.visible transform on this column creates its
   own stacking context that traps .form-card's z-index inside it, so no
   z-index on .form-card can ever beat #overlay (500) from outside. */
.form-col {
  position: relative;
  z-index: 600;
}

/* FORM CARD */
.form-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--brd);
  box-shadow: 0 4px 32px rgba(0, 0, 0, .08);
  overflow: hidden;
  position: relative;
  z-index: 501;
}

.form-hdr {
  background: var(--navy);
  padding: 18px 24px;
}

.form-hdr h5 {
  color: #fff;
  font-family: var(--ffd);
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 0 6px;
  line-height: 1.3;
}

.form-hdr p {
  color: rgba(255, 255, 255, .65);
  font-size: .78rem;
  margin: 0;
}

.form-body {
  padding: 22px 24px 20px;
}

.form-label {
  font-size: .73rem;
  font-weight: 600;
  color: var(--body);
  margin-bottom: 4px;
  letter-spacing: .02em;
}

.form-control,
.form-select {
  border: 1.5px solid rgba(0, 0, 0, .1);
  border-radius: 8px;
  font-size: .875rem;
  color: var(--muted);
  transition: border-color .2s, box-shadow .2s;
  padding: 9px 13px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(6, 175, 233, .09);
  outline: none;
}

.email-hint {
  font-size: .7rem;
  margin-top: 3px;
  display: none;
}

/* SECTION HELPERS */
.section-chip {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  background: var(--bld);
  border: 1px solid var(--blb);
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 14px;
  font-family: var(--ffb);
}

.sec-h2 {
  font-family: var(--ffd);
  font-weight: 800;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  letter-spacing: -.022em;
  line-height: 1.2;
  color: var(--head);
  margin-bottom: 14px;
}

.sec-body {
  font-size: 0.77rem;
  line-height: 1.78;
  color: var(--body);
}

.alt-bg {
  background: var(--bga);
}

.navy-bg {
  background: var(--navy);
}

.sec-pad {
  padding: 88px 0;
}

.prod-hdr-pill {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue);
  font-family: var(--ffb);
  margin-bottom: 6px;
}

/* STAT BANNER */
.stat-val {
  font-family: var(--ffd);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-lbl {
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.5;
}

.stat-div {
  border-left: 1px solid rgba(255, 255, 255, .15);
}

/* CARDS */
.wf-card {
  background: #fff;
  border: 1px solid var(--brd);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
  transition: box-shadow .25s, transform .25s;
}

.wf-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
  transform: translateY(-5px);
}

.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: var(--bld);
  border: 1px solid var(--blb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--blue);
  flex-shrink: 0;
}

/* PROB/SOL */
.prob-col {
  background: #fffaf6;
  border: 1px solid rgba(249, 115, 22, .18);
  border-radius: 12px;
  padding: 28px;
  height: 100%;
}

.sol-col {
  background: #f0fdf8;
  border: 1px solid rgba(16, 185, 129, .2);
  border-radius: 12px;
  padding: 28px;
  height: 100%;
}

.col-badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.col-badge-r {
  color: var(--org);
}

.col-badge-b {
  color: #10b981;
}

.prob-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.prob-item:last-child {
  margin-bottom: 0;
}

.num-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(249, 115, 22, .1);
  border: 1px solid rgba(249, 115, 22, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  font-weight: 700;
  color: var(--org);
  flex-shrink: 0;
  margin-top: 2px;
}

.chk-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, .1);
  border: 1px solid rgba(16, 185, 129, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

.sec-subtitle {
  color: var(--head);
  font-family: var(--ffd);
  font-weight: 700;
  font-size: 1.5rem;
  display: block;
  margin: 2rem;
}

/* CMP TABLE */
.cmp-wrap {
  border: 1px solid var(--brd);
  border-radius: 14px;
  overflow: hidden;
}

.cmp-hdr {
  background: var(--bga);
  border-bottom: 1px solid var(--brd);
}

.cmp-hc {
  padding: 13px 20px;
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cmp-hc.l {
  color: var(--org);
  border-right: 1px solid var(--brd);
}

.cmp-hc.r {
  color: #10b981;
}

.cmp-row {
  border-bottom: 1px solid var(--brd);
  transition: background .15s;
}

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

.cmp-row:hover {
  background: var(--bga);
}

.cmp-cell {
  padding: 18px 20px;
  font-size: .87rem;
  line-height: 1.65;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.cmp-cell.l {
  border-right: 1px solid var(--brd);
  color: var(--body);
}

.cmp-cell.r {
  background: rgba(239, 246, 255, .5);
  color: var(--head);
  font-weight: 500;
}

/* WHY ITEMS */
.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--brd);
  border-radius: 10px;
  padding: 14px 16px;
  transition: box-shadow .2s;
  margin-bottom: 10px;
}

.why-item:hover {
  box-shadow: 0 3px 14px rgba(0, 0, 0, .07);
}

/* TRUST */
.trust-card {
  transition: box-shadow .2s, transform .2s;
}

.trust-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, .09);
  transform: translateY(-3px);
}

/* BENEFIT BULLET */
.ben-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.ben-item:last-child {
  margin-bottom: 0;
}

.ben-chk {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(6, 175, 233, .1);
  border: 1px solid rgba(6, 175, 233, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* FLOW */
.flow-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bga);
  border: 1px solid var(--brd);
  border-radius: 9px;
  padding: 11px 16px;
  margin-bottom: 10px;
  transition: box-shadow .2s;
}

.flow-item:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, .07);
}

.flow-tag {
  font-size: .62rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .08em;
  text-transform: uppercase;
  min-width: 92px;
  font-family: var(--ffb);
}

.flow-sep {
  width: 1px;
  height: 14px;
  background: var(--brd);
  flex-shrink: 0;
}

/* KEYWORDS */
.kw-o {
  background: var(--bld);
  border-radius: 3px;
  padding: 0 4px;
  color: var(--blue);
  font-style: normal;
}

.kw-b {
  background: rgba(6, 175, 233, .08);
  border-radius: 3px;
  padding: 0 4px;
  color: var(--blue);
  font-style: normal;
}

/* FADE-IN */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

.fd4 {
  transition-delay: .4s;
}

/* FOOTER */
.wf-footer {
  background: #132c52;
  padding: 36px 0;
  margin-bottom: 3rem;
}

.flink {
  color: rgba(255, 255, 255, .5);
  font-size: .8rem;
  transition: color .2s;
}

.flink:hover {
  color: rgba(255, 255, 255, .85);
}

/* CHAT */
.chat-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--blue);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(6, 175, 233, .35);
  z-index: 9999;
  color: #fff;
  font-size: 1.3rem;
  transition: transform .2s;
}

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

/* ── MICRO-ANIMATIONS ─────────────────────────── */

/* Page transition */
@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page.active {
  animation: page-in .4s ease both;
}

/* Nav underline slide */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Logo spin on hover */
.wf-logo {
  transition: transform .35s ease;
}

.wf-logo:hover {
  transform: rotate(15deg) scale(1.1);
}

/* Button shine sweep */
.btn-org,
.btn-blue {
  position: relative;
  overflow: hidden;
}

.btn-org::after,
.btn-blue::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-20deg);
}

.btn-org:hover::after,
.btn-blue:hover::after {
  animation: btn-shine .55s ease;
}

@keyframes btn-shine {
  to {
    left: 140%;
  }
}

/* Chat bubble pulse ring */
.chat-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--blue);
  opacity: .5;
  animation: chat-pulse 2.2s ease-out infinite;
}

@keyframes chat-pulse {
  0% {
    transform: scale(1);
    opacity: .45;
  }

  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

/* Section chip hover lift */
.section-chip {
  transition: transform .2s, box-shadow .2s, background .2s;
}

.section-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6, 175, 233, .15);
}

/* Card icon bounce on card hover */
.icon-box {
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.wf-card:hover .icon-box {
  transform: scale(1.15) rotate(-6deg);
}

/* Flow item left-bar reveal on hover */
.flow-item {
  border-left: 3px solid transparent;
  transition: box-shadow .2s, border-left-color .2s, background .2s;
}

.flow-item:hover {
  border-left-color: var(--blue);
  background: #fff;
}

/* Why-item check scale on hover */
.why-item {
  transition: box-shadow .2s, transform .2s;
}

.why-item:hover {
  transform: translateX(4px);
}

/* Staggered card appearance (nth-child delays) */
.wf-card {
  transition: box-shadow .25s, transform .25s, opacity .5s, translate .5s;
}

.row .col-sm-6:nth-child(1) .wf-card,
.row .col-lg-3:nth-child(1) .wf-card {
  transition-delay: .05s;
}

.row .col-sm-6:nth-child(2) .wf-card,
.row .col-lg-3:nth-child(2) .wf-card {
  transition-delay: .12s;
}

.row .col-sm-6:nth-child(3) .wf-card,
.row .col-lg-3:nth-child(3) .wf-card {
  transition-delay: .19s;
}

.row .col-sm-6:nth-child(4) .wf-card,
.row .col-lg-3:nth-child(4) .wf-card {
  transition-delay: .26s;
}

/* Benefit items slide-in stagger */
.ben-item {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity .45s ease, transform .45s ease;
}

.ben-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.ben-item:nth-child(1) {
  transition-delay: .05s;
}

.ben-item:nth-child(2) {
  transition-delay: .15s;
}

.ben-item:nth-child(3) {
  transition-delay: .25s;
}

.ben-item:nth-child(4) {
  transition-delay: .35s;
}

/* Prob-item stagger */
.prob-item {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s ease, transform .4s ease;
}

.prob-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.prob-item:nth-child(2) {
  transition-delay: .1s;
}

.prob-item:nth-child(3) {
  transition-delay: .2s;
}

.prob-item:nth-child(4) {
  transition-delay: .3s;
}

/* Stat value count-up pulse */
@keyframes stat-pop {
  0% {
    transform: scale(.85);
  }

  60% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
  }
}

.stat-val.animated {
  animation: stat-pop .5s ease both;
}

/* Form input label micro-lift */
.form-label {
  transition: color .2s, transform .2s;
}

.form-control:focus~.form-label,
.form-select:focus~.form-label {
  color: var(--blue);
}

/* CTA arrow wiggle on hover */
@keyframes arrow-nudge {

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

  50% {
    transform: translateX(5px);
  }
}

.btn-org:hover i,
.btn-blue:hover i {
  animation: arrow-nudge .5s ease infinite;
}

/* Trust card border glow on hover */
.trust-card {
  border: 1px solid var(--brd);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}

.trust-card:hover {
  border-color: rgba(6, 175, 233, .3);
}

/* Footer links underline */
.flink {
  position: relative;
}

.flink::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, .5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s;
}

.flink:hover::after {
  transform: scaleX(1);
}

/* Hero h1 em shimmer */
@keyframes txt-shimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-h1 em {
  background: linear-gradient(90deg, var(--blue), #6366f1, var(--blue));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: txt-shimmer 4s linear infinite;
}

/* Comparison row border-left flash */
.cmp-row {
  border-left: 3px solid transparent;
  transition: background .15s, border-left-color .2s;
}

.cmp-row:hover {
  border-left-color: var(--blue);
}

@media(max-width:991.98px) {
  .hero-sec {
    padding: 1rem;
  }

  .sec-pad {
    padding: 64px 0;
  }

  .fi {
    display: none;
  }

  .stat-div {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 28px;
  }
}

@media(max-width:575.98px) {
  .hero-h1 {
    font-size: 1.4rem;
  }

  .sec-h2 {
    font-size: 1.5rem;
  }

  .prob-col,
  .sol-col {
    padding: 20px;
  }
}

/* ── @FONT-FACE LOCAL ─────────────────────────── */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin-400-normal.woff2') format('woff2'), url('../fonts/plus-jakarta-sans-latin-400-normal.woff') format('woff');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin-500-normal.woff2') format('woff2'), url('../fonts/plus-jakarta-sans-latin-500-normal.woff') format('woff');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin-600-normal.woff2') format('woff2'), url('../fonts/plus-jakarta-sans-latin-600-normal.woff') format('woff');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin-700-normal.woff2') format('woff2'), url('../fonts/plus-jakarta-sans-latin-700-normal.woff') format('woff');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin-800-normal.woff2') format('woff2'), url('../fonts/plus-jakarta-sans-latin-800-normal.woff') format('woff');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-latin-400-normal.woff2') format('woff2'), url('../fonts/inter-latin-400-normal.woff') format('woff');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-latin-500-normal.woff2') format('woff2'), url('../fonts/inter-latin-500-normal.woff') format('woff');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-latin-600-normal.woff2') format('woff2'), url('../fonts/inter-latin-600-normal.woff') format('woff');
}

/* ── NAV ─────────────────────────────────────── */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.logo-img {
  height: 38px;
  object-fit: contain;
}

.logo-footer {
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
}

/* ── FOOTER ──────────────────────────────────── */
.footer-copy {
  font-size: .73rem;
  color: rgba(255, 255, 255, .3);
  margin: 0;
}

/* ── BOTTOM ROW ──────────────────────────────── */
.bottomrow-text {
  font-size: .85rem;
  font-weight: 600;
}

.btn-sm-pill {
  font-size: .82rem;
  padding: 8px 18px;
  white-space: nowrap;
}

/* ── STATS SECTION ───────────────────────────── */
.sec-navy {
  padding: 60px 0;
}

.navy-h2 {
  font-family: var(--ffd);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.stat-col {
  padding: 20px;
}

.stat-icon {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, .35);
  display: block;
  margin-bottom: 8px;
}

.stat-lbl {
  max-width: 160px;
}

/* ── TEXT UTILITIES ──────────────────────────── */
.t-op {
  font-size: .9rem;
  line-height: 1.65;
}

.t-item-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--head);
}

.t-item-body {
  font-size: .85rem;
  line-height: 1.6;
}

.t-highlight {
  font-size: .88rem;
  font-weight: 600;
  color: var(--head);
}

.t-head-sm {
  font-size: .87rem;
  color: var(--head);
  line-height: 1.6;
}

.t-body-sm {
  font-size: .82rem;
  color: var(--body);
}

.t-muted-sm {
  font-size: .8rem;
  color: var(--muted);
}

.t-note {
  font-size: .68rem;
  color: var(--muted);
}

.t-label-blue {
  font-size: .73rem;
  font-weight: 700;
  color: var(--blue);
}

.t-label-org {
  font-size: .73rem;
  font-weight: 700;
  color: var(--org);
}

.t-tag {
  font-size: .72rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.c-org {
  color: var(--org);
}

.c-blue {
  color: var(--blue);
}

.c-green {
  color: #10b981;
}

.c-head {
  color: var(--head);
}

/* ── CARD TEXT ───────────────────────────────── */
.card-h5 {
  font-size: .95rem;
  margin-bottom: 8px;
}

.card-p {
  font-size: .82rem;
  line-height: 1.65;
  color: var(--body);
  margin: 0;
}

.card-heading {
  font-family: var(--ffd);
  font-weight: 700;
  margin-bottom: 20px;
}

/* ── MAX-WIDTH HELPERS ───────────────────────── */
.mw-600 {
  max-width: 600px;
}

.mw-640 {
  max-width: 640px;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn-cta {
  font-size: 1rem;
  padding: 13px 32px;
}

.btn-cta-xl {
  font-size: 1rem;
  padding: 13px 36px;
}

.link-sub {
  color: var(--blue);
  font-size: .88rem;
  text-decoration: underline;
  display: inline-block;
  margin-top: 10px;
}

/* ── ICON BOX SIZES ──────────────────────────── */
.icon-box-md {
  width: 52px;
  height: 52px;
  font-size: 1.4rem;
}

.icon-box-lg {
  width: 56px;
  height: 56px;
  font-size: 1.5rem;
}

.icon-box-xl {
  width: 64px;
  height: 64px;
  font-size: 2rem;
}

/* ── FLOW ────────────────────────────────────── */
.flow-icon {
  color: var(--blue);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.flow-body {
  font-size: .87rem;
  color: var(--body);
}

.flow-strong {
  font-size: .87rem;
  color: var(--head);
  font-weight: 600;
}

.flow-item-active {
  background: var(--bld);
  border-color: var(--blb);
}

/* ── PRODUCTOS CARDS ─────────────────────────── */
.card-gradient {
  background: linear-gradient(135deg, var(--bld) 0%, #fff 100%);
}

.card-qvik-wrap {
  background: rgba(6, 175, 233, .06);
  border: 1px solid var(--blb);
}

.card-qvik-answer {
  background: #fff;
  border: 1px solid var(--blb);
}

.card-org-light {
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.card-blue-light {
  background: var(--bld);
  border: 1px solid var(--blb);
}

.border-top-brd {
  border-top: 1px solid var(--brd);
}

.composer-arrow {
  color: var(--org);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 4px;
}
.prod-hdr-pill{display:flex;align-items:center;gap:6px}
.prod-logo-img{height:20px;width:auto;display:block}
.prod-logo-icon{height:18px;width:18px;object-fit:contain;flex-shrink:0}
.flow-tag{display:inline-flex;align-items:center;gap:5px}
.flow-logo-img{height:15px;width:auto;display:block}
.flow-logo-icon{height:14px;width:14px;object-fit:contain;flex-shrink:0}

.icon-box{justify-content:center}
.icon-box-logo{width:58%;height:58%;object-fit:contain;display:block}

.flow-icon-logo{width:20px;height:20px;object-fit:contain;flex-shrink:0}
