/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #2b4dff;
  --blue-mid: #667eff;
  --blue-light: #ebefff;
  --blue-border: #d4dbff;
  --navy: #3d4c99;
  --bg: #f2f7ff;
  --text-dark: #101828;
  --text-muted: #7d7d7d;
  --text-indigo: #6e86ff;
  --feature-bg: #fcf7fe;
  --feature-border: #e4e8ff;
  --feature-icon-bg: #6e86ff;
  --shadow-card: 0 4px 16px rgba(43,77,255,.10);
  --radius-card: 16px;
  --gap: 24px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  scrollbar-gutter: stable;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* In-page nav targets (navbar offset if layout changes) */
#solutions,
#services,
#integrations,
#salesforce,
#client-testimonials {
  scroll-margin-top: clamp(20px, 5vw, 48px);
}

body {
  background: var(--bg);
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
  background: linear-gradient(180deg, #667eff 0%, #3d4c99 100%);
  color: #fff;
  border-radius: 10px;
  padding: 0 24px;
  height: 42px;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  transition: opacity .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary:hover { opacity: .88; }

.btn-white {
  background: #fff;
  color: var(--blue);
  border-radius: 8px;
  height: 38px;
  padding: 0 18px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: box-shadow .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-white:hover { box-shadow: 0 4px 12px rgba(43,77,255,.25); }

.btn-cta-gradient {
  background: linear-gradient(104.12deg, #667eff 3.3%, #3d4c99 110.25%);
  border-radius: 8px;
  height: 72px;
  padding: 0 48px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  transition: opacity .2s;
}
.btn-cta-gradient:hover { opacity: .88; }

.arrow-btn {
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.arrow-btn:hover { background: transparent; }
.arrow-btn img { object-fit: contain; }

/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  background: #fff;
  border-radius: 14px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-width: 0;
  max-width: 100%;
}
.nav-left { display: flex; align-items: center; gap: 40px; min-width: 0; flex: 1 1 auto; }
.nav-logo { height: 34px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 24px; font-weight: 500; font-size: 13px; }
.nav-links a:hover { color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.nav-badge { display: flex; flex-direction: column; line-height: 1.3; font-size: 13px; font-weight: 600; }
.nav-badge img { height: 14px; width: auto; margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(43,77,255,.15);
  padding: 20px 24px;
  flex-direction: column;
  gap: 14px;
  z-index: 100;
}
.mobile-drawer.open { display: flex; }.hero
.mobile-drawer a { font-weight: 500; font-size: 16px; padding: 8px 0; border-bottom: 1px solid #f0f4ff; }
.mobile-drawer .btn-primary { width: 100%; margin-top: 4px; }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  --hero-pad-x: clamp(16px, 2.8vw, 42px);
  background: linear-gradient(180deg, #2B4DFF 0%, #032C60 100%);
  display: flex;
  flex-direction: column;
  padding: 18px var(--hero-pad-x) 0;
  gap: 20px;
  min-height: 80svh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  padding-bottom: 0 !important;
}
.hero > * {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 auto;
}
.hero > .trusted-strip {
  width: calc(100% + 2 * var(--hero-pad-x));
  max-width: none;
  margin-left: calc(-1 * var(--hero-pad-x));
  margin-right: calc(-1 * var(--hero-pad-x));
  margin-bottom: 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 4vw, 64px);
  flex-wrap: wrap;
  padding: 2px 0 0;
  margin-bottom: 60px;
  margin-top: 60px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  row-gap: clamp(18px, 3vw, 32px);
}

.hero-headline {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 50px);
  line-height: 1.20;
  color: #fff;
  flex: 1 1 min(100%, 420px);
  max-width: 760px;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  animation: fadeUp .6s .1s ease both;
}

.hero-right-col {
  flex: 1 1 min(100%, 320px);
  max-width: 520px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  animation: fadeUp .6s .22s ease both;
}

.hero-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  max-width: 500px;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Product cards */
.product-cards {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 14px;
  align-items: stretch;
  margin: 0 auto;
  animation: fadeUp .6s .35s ease both;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.product-cards.product-cards--quad {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 20px);
  align-items: stretch;
}

.product-cards--quad .product-card {
  min-width: 0;
}

.product-cards-quad-dots {
  display: none;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 0 4px;
}

.product-cards-quad-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  opacity: 0.85;
  transition: width 0.25s ease, background 0.2s ease, opacity 0.2s ease;
}

.product-cards-quad-dot.active {
  width: 26px;
  background: #fff;
  opacity: 1;
}

.product-card-img--hero {
  flex: 1;
  aspect-ratio: unset;
  min-height: 0;
}

.product-card.product-card--hero-row {
  justify-content: flex-end;
  min-width: 0;
}

.product-cards-trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
  align-items: stretch;
}

.product-cards-feature {
  min-width: 0;
  display: flex;
}

.product-cards-feature .product-card--wide {
  flex: 1;
  width: 100%;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 12px 12px;
  min-height: 196px;
  align-self: stretch;
  justify-content: flex-start;
}

a.product-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
a.product-card:hover {
  border-color: rgba(43, 77, 255, 0.22);
  box-shadow: 0 6px 20px rgba(43, 77, 255, 0.14);
}
a.product-card.product-card--proptude:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 0;
  flex: 1;
}

.product-card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.product-card-badge {
  width: 160px;
  height: 56px;
  border-radius: 8px;
  opacity: 1;
  gap: 8px;
  padding: 16px;
  font-family: Inter;
  font-weight: 400;
  font-size: 13.6px;
  line-height: 24px;
  letter-spacing: 0px;
  vertical-align: middle;
  border-width: 1px;
  background: #FCA326;
  color: #fff;
  display: flex;
}

.product-card-img {
  background: #dfe3ff;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.product-shot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.product-shot--proptude {
  transform: none;
}

.product-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 1.65vw, 30px);
  line-height: 1.08;
  color: #000;
  margin: 15px 0;
}
.product-card--wide .product-card-title {
  flex: 1;
  min-width: 0;
}
.product-card-sub {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #000;
  margin: 0;
}

.product-card--proptude {
  border-radius: 16px;
  background: linear-gradient(0deg, #FCA326 0%, #F3920A 100%);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  gap: 16px;
}

.product-card--proptude .product-card-img {
  min-height: 192px;
}

.product-card--proptude .product-card-body {
  gap: 14px;
}

.product-card--proptude .product-card-title {
  color: #ffffff;
  margin: 0;
}

.product-card--proptude .product-card-sub {
  color: #ffffff;
}

/* ─── TRUSTED STRIP ─────────────────────────────────────────── */
.hero .trusted-strip {
  --trusted-logo-gap: clamp(32px, 3vw, 52px);
  --trusted-logo-height: clamp(46px, 4vw, 56px);
  margin-top: clamp(14px, 2vw, 22px);
  padding: 20px var(--hero-pad-x);
  background: #ffffff;
  border-top: none;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 32px;
}

.trusted-strip-label {
  grid-column: 1;
  color: #1C40C2;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 400;
  white-space: nowrap;
  line-height: 1.3;
  margin: 0;
  flex-shrink: 0;
}

/* Static logos grid — hidden on all screen sizes; marquee is always used */
.trusted-strip-logos {
  display: none;
  align-items: center;
  gap: var(--trusted-logo-gap);
}

.trusted-strip-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--trusted-logo-height);
  margin: 0;
  padding: 0;
}

/* Responsive slots keep every logo separated by the exact same gap. */
.trusted-strip-logos .trusted-strip-logo:nth-child(1),
.trusted-strip-marquee-group .trusted-strip-logo:nth-child(1) { width: clamp(112px, 9vw, 160px); }
.trusted-strip-logos .trusted-strip-logo:nth-child(2),
.trusted-strip-marquee-group .trusted-strip-logo:nth-child(2) { width: clamp(92px, 7vw, 130px); }
.trusted-strip-logos .trusted-strip-logo:nth-child(3),
.trusted-strip-marquee-group .trusted-strip-logo:nth-child(3) { width: clamp(112px, 9vw, 160px); }
.trusted-strip-logos .trusted-strip-logo:nth-child(4),
.trusted-strip-marquee-group .trusted-strip-logo:nth-child(4) { width: clamp(76px, 5.5vw, 100px); }
.trusted-strip-logos .trusted-strip-logo:nth-child(5),
.trusted-strip-marquee-group .trusted-strip-logo:nth-child(5) { width: clamp(112px, 9vw, 160px); }
.trusted-strip-logos .trusted-strip-logo:nth-child(6),
.trusted-strip-marquee-group .trusted-strip-logo:nth-child(6) { width: clamp(68px, 5vw, 90px); }
.trusted-strip-logos .trusted-strip-logo:nth-child(7),
.trusted-strip-marquee-group .trusted-strip-logo:nth-child(7) { width: clamp(104px, 8vw, 145px); }
.trusted-strip-logos .trusted-strip-logo:nth-child(8),
.trusted-strip-marquee-group .trusted-strip-logo:nth-child(8) { width: clamp(60px, 4.5vw, 84px); }

.trusted-strip-logo img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  margin: 0;
}

/* Sliding marquee — always visible (desktop + mobile) */
.trusted-strip-marquee {
  display: block;
  grid-column: 2;         /* sits in the logos column next to the label */
  width: 100%;
  overflow: hidden;
  min-height: var(--trusted-logo-height);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12px, #000 calc(100% - 12px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12px, #000 calc(100% - 12px), transparent);
}
.trusted-strip-marquee-track {
  display: flex;
  width: max-content;
  animation: trusted-strip-marquee 18s linear infinite;
  will-change: transform;
}
.trusted-strip-marquee:hover .trusted-strip-marquee-track {
  animation-play-state: paused;
}
.trusted-strip-marquee-group {
  display: flex;
  align-items: center;
  column-gap: var(--trusted-logo-gap);
  padding-right: var(--trusted-logo-gap);
  flex-shrink: 0;
}
.trusted-strip-marquee-group .trusted-strip-logo {
  height: var(--trusted-logo-height);
}
.trusted-strip-marquee-group .trusted-strip-logo img {
  max-height: 100%;
}

@keyframes trusted-strip-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (min-width: 1024px) {
  .hero .trusted-strip {
    --trusted-logo-gap: clamp(36px, 3.25vw, 56px);
    --trusted-logo-height: 56px;
    padding: 22px var(--hero-pad-x);
  }
  .trusted-strip-marquee-group .trusted-strip-logo img {
    max-height: 100%;
  }
}

/* Sales preview */
.sales-preview {
  position: absolute;
  inset: 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.sales-preview-header { display: flex; gap: 8px; align-items: center; }
.sales-badge { background: #4a5568; border-radius: 999px; display: flex; align-items: center; gap: 5px; padding: 4px 10px; color: #fff; font-size: 11px; }
.sales-badge-num { background: #fff; color: #4a5568; font-weight: 700; border-radius: 999px; padding: 1px 5px; font-size: 10px; }
.sales-search { flex: 1; background: #f3f4f6; border-radius: 999px; padding: 5px 10px; font-size: 10px; color: #99a1af; }
.lead-row { display: flex; align-items: center; gap: 6px; padding: 5px 0; border-bottom: 1px solid #f5f5f5; }
.lead-avatar { width: 28px; height: 28px; border-radius: 999px; object-fit: cover; flex-shrink: 0; }
.lead-name { font-size: 10px; font-weight: 700; color: #101828; flex: 1; }
.lead-status { background: linear-gradient(90deg, #323232, #d0d0d0); border-radius: 999px; color: #fff; font-size: 9px; padding: 3px 7px; white-space: nowrap; }

/* ─── SECTION SHELL ─────────────────────────────────────────── */
.section {
  padding: clamp(40px, 6vw, 80px) var(--px);
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
#services, .workflow-section {
  padding: 30px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(26px, 3.5vw, 56px);
  line-height: 1.05;
  color: #1C40C2 !important;
  background-clip: text;
  flex: 1 1 min(100%, 280px);
  max-width: 780px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.section-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.6vw, 22px);
  color: #1C40C2 !important;
  flex: 1 1 min(100%, 240px);
  max-width: 620px;
  min-width: 0;
  line-height: 1.5;
  padding-top: 4px;
  overflow-wrap: anywhere;
}

/* ─── FEATURE TAG ───────────────────────────────────────────── */
.feature-tags { display: flex; gap: 12px; flex-wrap: wrap; width: 100%; }
.feature-tag {
  background: var(--feature-bg);
  border: 1px solid var(--feature-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  flex: 0 0 auto;
  min-width: 0;
}
.feature-tags .feature-tag { flex: 1 1 180px; }
.feature-icon {
  background: var(--feature-icon-bg);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.proptude-card .feature-icon { background: #FCA326; }
.msg-flow .feature-icon { background: #00B95C; }
.prop-master .feature-icon { background: #2169DA; }
.feature-icon img { width: 20px; height: 20px; object-fit: contain; }
.feature-tag-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(11px, 1vw, 14px);
  color: var(--blue);
  line-height: 1.4;
  padding-top: 2px;
}
.proptude-card .feature-tag-text { color: #000000; }
.msg-flow .feature-tag-text { color: #00B95C; }
.prop-master .feature-tag-text { color: #2169DA; }
.btn-rig { background: #2b4dff; width: 46px; height: 46px; border-radius: 16px; opacity: 1; gap: 10px; text-align: center; display: block; padding: 0 14px; }
.prop-card .btn-rig { background: #00B95C; }

/* ─── PROPTUDE CARD ─────────────────────────────────────────── */
.proptude-card {
  border-radius: var(--radius-card);
  padding: clamp(18px, 3vw, 32px);
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #FCA326;
  gap: 18px;
  box-shadow: 0px 4px 4px 0px #00000040;
}
.proptude-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.proptude-title { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: clamp(20px, 2.2vw, 30px); color: #fff; }
.proptude-desc { font-family: 'Poppins', sans-serif; font-weight: 400; font-size: clamp(13px, 1.4vw, 18px); color: #fff; line-height: 1.55; max-width: 100%; }

/* ─── PRODUCT INFO GRID ─────────────────────────────────────── */
.product-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.product-info-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: clamp(16px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-card);
}
a.product-info-card {
  text-decoration: none;
  color: inherit;
  min-width: 0;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}
a.product-info-card:hover {
  box-shadow: 0 8px 28px rgba(43, 77, 255, 0.14);
}
a.product-info-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.product-info-card .feature-tags {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
}
.product-info-card .feature-tags .feature-tag {
  flex: unset;
  min-width: 0;
  align-items: center;
  padding: 12px 14px;
  gap: 10px;
}
.product-info-card > .feature-tag {
  width: 100%;
  min-width: 0;
  align-items: center;
  padding: 12px 14px;
  margin-top: 0;
}
.product-info-card .feature-tag-text {
  min-width: 0;
  flex: 1 1 auto;
  padding-top: 0;
  line-height: 1.45;
  font-size: 12px;
}

.product-info-card .arrow-btn1.btn-rig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}
.product-info-card .arrow-btn1.btn-rig img {
  display: block;
  margin: 0 auto;
}
.info-card-header { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.info-card-title { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: clamp(18px, 1.8vw, 28px); color: var(--blue); flex: 1; min-width: 0; }
.info-card-desc { font-family: 'Poppins', sans-serif; font-weight: 400; font-size: clamp(12px, 1.2vw, 17px); color: var(--text-muted); line-height: 1.6; }

/* ─── WORKFLOWS ─────────────────────────────────────────────── */
.workflow-section {
  padding: clamp(40px, 6vw, 80px) var(--px);
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  padding: 30px;
  padding-bottom: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}
.workflow-section{}
.workflow-tags-wrapper { display: flex; flex-direction: column; gap: 10px; width: 100%; align-items: center; }
.workflow-tags-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.workflow-tag {
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  border-radius: 10px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(11px, 1vw, 15px);
  color: var(--text-indigo);
  white-space: nowrap;
  cursor: pointer;
  transition: background .18s, transform .15s, border-color .18s, box-shadow .18s;
}
.workflow-tag:hover { background: #d4dcff; transform: translateY(-2px); }
.workflow-tag.active {
  background: #BAC5FF;
  border-color: #D4DBFF;
  color: #1D34AF;
  box-shadow: 0 4px 10px rgba(43,77,255,.14);
}
.workflow-tag.active img { display: block; }
.workflow-tag img { width: 14px; height: 14px; object-fit: contain; }

.workflow-action {
  background: linear-gradient(180deg, #eff2ff 0%, #e4e9ff 100%);
  border-radius: 24px;
  min-height: 270px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 22px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  border: 1px solid #d6deff;
  box-sizing: border-box;
  overflow-x: hidden;
}
.workflow-cta {
  width: 100%;
  border-radius: 16px;
  border: 1px dashed #bcc8ff;
  background: rgba(255,255,255,.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 16px;
}
.workflow-cta-star { font-size: 30px; color: #8899ff; }
.workflow-cta-box {
  background: #fff;
  border: 1px solid #c2cfff;
  border-radius: 8px;
  padding: 12px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 1.2vw, 17px);
  color: #2b3f9a;
}
.workflow-panel {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 224px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
}
.workflow-panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}
.workflow-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.workflow-selected-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #c9d4ff;
  color: #4153b7;
  font-size: 13px;
  font-weight: 500;
}
.workflow-selected-item img { width: 14px; height: 14px; object-fit: contain; }
.workflow-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  max-width: min(48%, 100%);
  min-width: 0;
  margin-left: auto;
}
.workflow-option-chip {
  border: 1px solid #b6c4ff;
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  color: #4153b7;
  font-weight: 500;
}
.workflow-stats {
  align-self: end;
  justify-self: start;
  width: min(370px, 100%);
  max-width: 100%;
  min-width: 0;
  background: #fff;
  border: 1px solid #d4dcff;
  border-radius: 14px;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.workflow-stat {
  border: 1px solid #e4e9ff;
  border-radius: 8px;
  padding: 8px;
  background: #f9fbff;
}
.workflow-stat-value {
  display: block;
  font-size: 24px;
  line-height: 1;
  color: #2f45b7;
  font-weight: 700;
  margin-bottom: 4px;
}
.workflow-stat-label {
  display: block;
  font-size: 10px;
  color: #5f70c8;
  font-weight: 500;
}
.workflow-panel-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 6px;
}
.workflow-action-btn {
  border: none;
  border-radius: 9px;
  background: linear-gradient(104.12deg, #667eff 3.3%, #3d4c99 110.25%);
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  padding: 14px 22px 14px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.workflow-action-btn::after {
  content: url("../images/action-arrow.png");
  line-height: 0;
}
.workflow-flow {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 190px;
  border: 1px solid #dde3ff;
  border-radius: 14px;
  background-color: #f7f9ff;
  background-image: radial-gradient(#d6dcff 0.9px, transparent 0.9px);
  background-size: 7px 7px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.workflow-flow-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: stretch;
  min-width: 0;
}
.workflow-step-card {
  position: relative;
  flex: 1 1 0;
  border: 1px solid #e3e8ff;
  border-radius: 11px;
  background: #fff;
  padding: 12px 12px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  min-height: 78px;
  box-shadow: 0 6px 16px rgba(26, 53, 173, 0.08);
}
.workflow-step-card:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  width: 16px;
  border-top: 1px dashed #a8b4ef;
  transform: translateY(-50%);
}
.workflow-step-title {
  font-size: 15px;
  font-weight: 600;
  color: #1b1b1b;
}
.workflow-step-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.workflow-step-option {
  border-radius: 999px;
  border: 1px solid #ecefff;
  background: #f8f9ff;
  color: #b49752;
  font-size: 12px;
  padding: 5px 9px;
  line-height: 1;
}
.workflow-flow-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  flex: 0 0 auto;
  margin-left: 2px;
}
.workflow-contact-stage {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(340px, 42%) 1fr;
  gap: 34px;
  align-items: start;
  background: #fff;
  border-radius: 14px;
  padding: 14px;
}
.workflow-contact-card {
  border-radius: 10px;
  background-color: #4f66e8;
  background-image: url("images/fuel-estate.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 0;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.workflow-contact-card p { display: none; }
.workflow-contact-form-wrap {
  background: #fff;
  border: none;
  border-radius: 0;
  padding: 56px 100px 26px;
}
.workflow-contact-title {
  font-size: clamp(30px, 3vw, 30px);
  line-height: 1.2;
  color: #1D34AF;
  font-weight: 500;
  margin-bottom: 42px;
}
.workflow-contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.workflow-contact-input {
  border: none;
  border-bottom: 3px solid #667EFF;
  padding: 7px 2px;
  font-size: 16px;
  color: #394688;
  outline: none;
  background: transparent;
}
.workflow-contact-input::placeholder {
  color: #c8d1ff;
  opacity: 1;
}
.workflow-contact-submit {
  justify-self: center;
  margin-top: 18px;
  min-width: 210px;
  min-height: 62px;
  font-size: 20px;
  font-weight: 400;
  justify-content: center;
  background: linear-gradient(90deg, #667EFF 0%, #3D4C99 100%);
  border: 1px solid #979797;
}
.workflow-contact-submit::after { content: none; }
.workflow-success-stage {
  width: 100%;
  min-height: 260px;
  border-radius: 12px;
  background: linear-gradient(180deg, #667eff 0%, #3d4c99 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
}
.workflow-success-stage p {
  color: #fff;
  font-size: clamp(22px, 3.2vw, 44px);
  line-height: 1.15;
  font-weight: 500;
}

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-section {
  background: #e8edf6;
  padding: clamp(34px, 5vw, 56px) var(--px);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.testimonials-header { margin-bottom: 24px; }
.testimonials-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 0.98;
  color: #2249d5;
  font-weight: 500;
}
.testimonials-slider-shell {
  container-type: inline-size;
  container-name: testimonial-shell;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.testimonials-slider-track {
  display: flex;
  gap: 0;
  width: max-content;
  max-width: none;
  transition: transform .32s ease;
}
.testi-track {
  display: flex !important;
  gap: 20px !important;
}
.testimonial-card {
  box-sizing: border-box;
  flex: 0 0 calc((var(--testimonial-shell-px, 100cqi) - 40px) / 3);
  width: calc((var(--testimonial-shell-px, 100cqi) - 40px) / 3);
  min-width: 0;
  background: #dfe5f2;
  border-right: 1px solid #cfd7e8;
  min-height: 290px;
  padding: 10px 14px 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  grid-template-rows: auto 1fr auto;
  column-gap: 12px;
}
.tc {
  border-radius: 8px;
  background: rgba(28, 85, 224, 0.04);
}
.testimonial-top {
  grid-column: 1 / 3;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 4px;
}
.testimonial-company {
  font-size: 11px;
  line-height: 1.2;
  color: #7c8498;
  white-space: nowrap;
}
.testimonial-text {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  color: #33467d;
  font-size: 13px;
  line-height: 1.8;
  padding-right: 6px;
  min-width: 0;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}
.testimonial-readmore {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  font-size: 12px;
  color: #2249d5;
  text-decoration: underline;
  background: transparent;
  padding: 0;
  margin: 0 0 2px;
  text-align: left;
  align-self: end;
}
.testimonial-bottom {
  grid-column: 2 / 3;
  grid-row: 2 / 4;
  align-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  gap: 4px;
}
.testimonial-quote {
  color: #2148d3;
  font-size: 40px;
  line-height: .8;
  margin-top: auto;
  align-self: flex-start;
}
.testimonial-meta { text-align: center; }
.testimonial-name { font-size: 24px; color: #1a233b; line-height: 1.1; }
.testimonial-role,
.testimonial-org { font-size: 14px; color: #848ea5; line-height: 1.25; }
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  margin-bottom: 8px;
}
.testimonials-dots {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.testimonials-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #808698;
  border: none;
  opacity: .6;
  padding: 0;
}
.testimonials-dot.active {
  width: 30px;
  background: #2249d5;
  opacity: 1;
}

/* ─── INTEGRATIONS ──────────────────────────────────────────── */
.integrations-section {
  padding: clamp(48px, 6vw, 80px) var(--px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 30px);
  align-items: center;
  width: 100%;
  padding-top: 30px;
}
.integrations-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  background: #f0f5ff;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 4vw, 40px);
  border-radius: 16px;
  padding-bottom: 0;
}
.integ-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font: inherit;
  margin: 0;
  padding: 0;
}
.integ-heading-line {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 38px;
  letter-spacing: -2.24px;
  color: #111111;
}
.integ-heading-sub {
  display: block;
  margin-top: clamp(12px, 1.8vw, 20px);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.015em;
}
.integ-heading-across { color: #111111; }
.integ-heading-em { color: var(--blue); font-weight: 600; }
.integ-heading-tools { margin-left: 0.35em; color: var(--blue); }
.integ-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 20px);
  flex-wrap: wrap;
  width: 100%;
}
.integ-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform .2s;
}
.integ-logo-card:hover { transform: translateY(-4px); }

/* ─── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  border-radius: var(--radius-card);
  background: #032C60;
  padding: clamp(40px, 6vw, 100px) clamp(22px, 7vw, 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  text-align: center;
}
.cta-banner-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 3.8vw, 56px);
  line-height: 1.2;
  max-width: 800px;
  background: linear-gradient(100.89deg, #fff 1.84%, #ced6ff 86.81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-banner-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(13px, 1.6vw, 20px);
  color: rgba(255,255,255,.9);
  max-width: 820px;
  line-height: 1.55;
}

/* ─── WHY GRID ──────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); width: 100%; max-width: 100%; min-width: 0;padding: 0 30px; }
.why-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: clamp(20px, 3vw, 36px) clamp(16px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.why-icon { width: 44px; height: 44px; object-fit: contain; }
.why-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.5vw, 22px);
  background: linear-gradient(90deg, #2b4dff, #1a2e99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why-card-desc { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: clamp(12px, 1.2vw, 17px); color: var(--text-indigo); line-height: 1.5; }

/* ─── CERTIFICATIONS STRIP ──────────────────────────────────── */
.certs-strip {
  --certs-badge: clamp(72px, 6.4vw, 92px);
  --certs-gap: clamp(48px, 5vw, 72px);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 8px clamp(16px, 4vw, 42px) 0;
  margin: 8px 0 18px;
}
.certs-strip-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(16px, 2.4vw, 32px);
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px 12px 24px;
  box-shadow: 0 4px 16px rgba(43, 77, 255, 0.08);
  overflow: hidden;
}
.certs-strip-label {
  margin: 0;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.55vw, 22px);
  line-height: 1.35;
  color: #1C40C2;
  white-space: nowrap;
}
.certs-marquee {
  min-width: 0;
  overflow: hidden;
  height: var(--certs-badge);
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 28px), transparent);
  mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 28px), transparent);
}
.certs-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.certs-marquee-group {
  display: flex;
  align-items: center;
  column-gap: var(--certs-gap);
  padding-right: var(--certs-gap);
  flex-shrink: 0;
}
.certs-badge {
  flex: 0 0 auto;
  width: var(--certs-badge);
  height: var(--certs-badge);
  display: flex;
  align-items: center;
  justify-content: center;
}
.certs-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .certs-strip {
    --certs-badge: 68px;
    padding: 4px 14px 0;
    margin-bottom: 14px;
  }
  .certs-strip-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }
  .certs-strip-label {
    max-width: 100%;
    white-space: normal;
  }
  .certs-marquee {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .certs-marquee-track {
    transform: none !important;
    transition: none !important;
  }
}

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  background: #032E61;
  border-radius: 20px;
  box-shadow: 0px 4px 4px 0px #00000040;
  margin: 0 var(--px, clamp(16px, 4vw, 42px)) clamp(14px, 3vw, 32px);
  padding: clamp(20px, 4vw, 40px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.footer-left { max-width: 380px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; text-align: left; }
.footer-logo { height: 38px; width: auto; object-fit: contain; margin: 0; }
.footer-tagline { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: clamp(11px, 1vw, 14px); color: #fff; line-height: 1.6; }
.footer-links { display: flex; gap: clamp(36px, 6vw, 100px); flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(16px, 1.7vw, 22px); color: #fff; }
.footer-col-items { display: flex; flex-direction: column; gap: 9px; }
.footer-col-items p { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: clamp(12px, 1.1vw, 15px); color: #fff; }
.footer-col-items a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 1.1vw, 15px);
  color: #fff;
  text-decoration: none;
}
.footer-col-items a:hover { text-decoration: underline; opacity: 0.92; }
.footer-col-items p a { color: inherit; }
.footer-col--alliances {
  min-width: 0;
}
.footer-alliance-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  transition: opacity 0.2s ease;
}
.footer-alliance-link:hover { opacity: 0.85; }
.footer-alliance-logo {
  width: clamp(92px, 9vw, 128px);
  height: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
}

/* ─── ANIMATION ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE BREAKPOINTS ────────────────────────────────── */

@media (min-width: 1280px) {
  .hero .product-cards.product-cards--quad { align-items: stretch; }
  .hero .product-cards--quad .product-card {
    min-height: 0;
    height: 100%;
    align-self: stretch;
    padding: 12px 12px 14px;
    gap: 12px;
  }
  .hero .product-cards--quad .product-card-img--hero {
    flex: 0 0 auto;
    aspect-ratio: 16 / 10;
    max-height: clamp(168px, 12.5vw, 230px);
  }
  .hero .product-cards--quad .product-card-body {
    flex: 1 1 auto;
    min-height: 0;
    gap: 8px;
    justify-content: flex-start;
  }
  .hero .product-cards--quad .product-card--proptude .product-card-img {
    min-height: 0;
    max-height: clamp(168px, 12.5vw, 230px);
  }
  .hero .product-cards--quad .product-card-title {
    font-size: clamp(24px, 1.45vw, 30px);
    margin: 12px 0 6px;
    line-height: 1.22;
  }
  .hero .product-cards--quad .product-card--proptude .product-card-title {
    font-size: clamp(24px, 1.45vw, 30px);
  }
  .hero .product-cards--quad .product-card-sub {
    font-size: clamp(15px, 1vw, 17px);
    line-height: 1.55;
  }
  .hero .product-cards--quad .product-card--proptude { gap: 14px; }
}

@media (min-width: 1920px) {
  .hero .product-cards--quad .product-card-img--hero,
  .hero .product-cards--quad .product-card--proptude .product-card-img {
    max-height: clamp(188px, 13vw, 248px);
  }
  .hero .product-cards.product-cards--quad {
    gap: clamp(16px, 1.25vw, 24px);
  }
}

@media (min-width: 1600px) {
  .hero { min-height: auto; }
  .hero-content { margin-top: 48px; margin-bottom: 36px; }
}

@media (max-width: 1280px) {
  .product-cards { grid-template-columns: 1fr; align-items: start; }
  .product-cards-trio { grid-template-columns: repeat(2, 1fr); }
  .product-cards .product-card { min-height: 0; align-self: start; width: 100%; }
  .product-cards .product-card-body { flex: 0 1 auto; }
  .product-cards .product-card-img--hero { flex: 0 1 auto; }
  .product-card.product-card--hero-row { justify-content: flex-start; }
  .product-card--wide .product-card-title { flex: 0 1 auto; }
  .product-card--proptude .product-card-img { min-height: min(200px, 42vw); }
}

@media (max-width: 1279px) {
  .hero .product-cards.product-cards--quad {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: clamp(12px, 3vw, 18px);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    min-width: 0;
    scrollbar-width: none;
  }
  .hero .product-cards.product-cards--quad::-webkit-scrollbar { display: none; }
  .hero .product-cards.product-cards--quad .product-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-sizing: border-box;
    padding: 10px 12px 12px;
    gap: 8px;
  }
  .hero .product-cards.product-cards--quad .product-card-img--hero,
  .hero .product-cards.product-cards--quad .product-card--proptude .product-card-img {
    flex: 0 0 auto;
    min-height: 0;
    max-height: clamp(150px, 22vw, 230px);
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }
  .hero .product-cards.product-cards--quad .product-shot {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero .product-cards.product-cards--quad .product-card-title {
    font-size: clamp(20px, 4.2vw, 26px);
    margin: 8px 0 4px;
    line-height: 1.2;
  }
  .hero .product-cards.product-cards--quad .product-card--proptude .product-card-title {
    font-size: clamp(20px, 4.2vw, 26px);
  }
  .hero .product-cards.product-cards--quad .product-card-sub {
    font-size: clamp(13px, 3.1vw, 16px);
    line-height: 1.45;
  }
  .hero .product-cards.product-cards--quad .product-card-body { gap: 4px; }
  .product-cards-quad-dots { display: flex; }
}

@media (max-width: 1024px) {
  .product-info-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { flex-direction: column; gap: 18px; }
  .hero-right-col { max-width: 100%; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-badge  { display: none; }
  .hamburger  { display: flex; }
  .navbar .btn-primary { display: none; }

  .hero { min-height: auto; }
  .hero-content { align-items: flex-start; margin-bottom: 15px; margin-top: 15px; }
  .hero-right-col { flex: 1 1 100%; }
  .hero-headline { font-size: clamp(26px, 6.5vw, 42px); }

  .product-cards { grid-template-columns: 1fr; }
  .product-cards-trio { grid-template-columns: repeat(2, 1fr); }
  .product-card--proptude .product-card-img { min-height: 140px; }

  .section-header { flex-direction: column; }
  .product-info-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .workflow-action { min-height: 220px; padding: 16px; }
  .workflow-panel { min-height: 188px; grid-template-rows: auto auto auto; }
  .workflow-panel-top { flex-direction: column; }
  .workflow-options { max-width: 100%; justify-content: flex-start; margin: 0; }
  .workflow-stats { grid-template-columns: 1fr 1fr; width: 100%; }
  .workflow-tag { font-size: 13px; padding: 9px 12px; }
  .workflow-flow-grid { flex-wrap: wrap; }
  .workflow-flow-cta { grid-column: 1 / -1; }
  .workflow-step-card::after { display: none; }
  .workflow-contact-stage { grid-template-columns: 1fr; }
  .workflow-contact-stage { gap: 16px; padding: 10px; }
  .workflow-contact-card {
    min-height: 0;
    aspect-ratio: 16 / 10;
    max-height: min(320px, 52vh);
  }
  .workflow-contact-form-wrap { padding: 20px 10px 10px; }
  .section-title, .section-desc { flex: 1 1 auto; }
  .section-header { margin-bottom: 25px; }

  /* Mobile trusted strip: stack label above marquee */
  .hero .trusted-strip {
    --trusted-logo-gap: clamp(24px, 7vw, 32px);
    --trusted-logo-height: 44px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px var(--hero-pad-x, clamp(16px, 4vw, 24px));
    overflow: hidden;
    background: #ffffff;
    margin-left: calc(-1 * var(--hero-pad-x, clamp(16px, 4vw, 24px)));
    margin-right: calc(-1 * var(--hero-pad-x, clamp(16px, 4vw, 24px)));
  }
  .trusted-strip-label {
    color: #1C40C2;
    grid-column: auto;
  }
  /* Already hidden by default; keep consistent */
  .trusted-strip-logos { display: none; }
  .trusted-strip-marquee {
    width: 100%;
    margin-left: 0;
    grid-column: auto;
    min-height: var(--trusted-logo-height);
  }

  /* Testimonials */
  .testimonial-card {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    min-height: 0;
    column-gap: 0;
    row-gap: 10px;
    overflow: hidden;
    border-right: none;
  }
  .testimonial-text { grid-column: 1 / -1; grid-row: 1 / 2; padding-right: 0; width: 100%; max-width: 100%; }
  .testimonial-readmore { grid-column: 1 / -1; grid-row: 2 / 3; align-self: start; }
  .testimonial-top { grid-column: 1 / -1; grid-row: 3 / 4; justify-content: flex-start; margin-bottom: 0; }
  .testimonial-company {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #2249d5;
    font-size: 12px;
  }
  .testimonial-bottom {
    grid-column: 1 / -1;
    grid-row: 4 / 5;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 12px;
    row-gap: 8px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .testimonial-avatar { flex: 0 0 52px; width: 52px; height: 52px; margin-bottom: 0; }
  .testimonial-meta {
    flex: 1 1 0;
    min-width: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .testimonial-name,
  .testimonial-role,
  .testimonial-org { overflow-wrap: anywhere; word-break: break-word; }
  .testimonial-quote { flex: 0 0 100%; width: 100%; margin-top: 0; align-self: flex-start; line-height: 1; }

  .product-card-title { font-size: clamp(20px, 3.8vw, 24px); margin: 10px 0; }
  .product-card--proptude .product-card-title { font-size: clamp(22px, 4.5vw, 30px); }
}

/* Reduced motion: show static logos instead of marquee */
@media (prefers-reduced-motion: reduce) {
  .trusted-strip-logos {
    display: flex !important;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    column-gap: var(--trusted-logo-gap);
    row-gap: 12px;
  }
  .trusted-strip-marquee {
    display: none !important;
  }
  .trusted-strip-marquee-track {
    animation: none !important;
  }
}

@media (max-width: 480px) {
  :root { --px: 14px; --gap: 14px; }

  .navbar { padding: 12px 16px; border-radius: 12px; }
  .nav-logo { height: 30px; }

  .hero { --hero-pad-x: 14px; padding: 14px var(--hero-pad-x) 0; gap: 16px; }
  .hero-headline { font-size: clamp(22px, 8vw, 26px); }
  .hero-desc { font-size: 14px; line-height: 24px; }

  .product-cards { grid-template-columns: 1fr; }
  .product-cards-trio { grid-template-columns: 1fr; }
  .product-card-img { height: 150px; }

  .product-card-title { font-size: clamp(17px, 4.5vw, 20px); margin: 8px 0; }
  .product-card--proptude .product-card-title { font-size: clamp(19px, 5vw, 24px); }
  .product-card--proptude { padding: 8px; }

  .hero .trusted-strip {
    --trusted-logo-gap: 24px;
    --trusted-logo-height: 40px;
  }
  .trusted-strip-label { font-size: 18px; }

  .proptude-card { padding: 16px; }
  .feature-tag { flex: 1 1 100%; }
  .section { padding: 24px 14px; gap: 14px; }
  .section-header { gap: 10px; margin-bottom: 14px; }
  .section-title { line-height: 1.12; }
  .section-desc { padding-top: 0; line-height: 1.4; }

  .workflow-section { padding: 32px 14px; }
  .workflow-tags-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    align-items: stretch;
  }
  .workflow-tags-row { display: contents; }
  .workflow-tag { width: 100%; justify-content: flex-start; min-height: 44px; border-radius: 12px; padding: 10px 12px; }
  .workflow-action { min-height: 180px; padding: 12px; }
  .workflow-panel-top { gap: 10px; }
  .workflow-options { gap: 8px; }
  .workflow-cta-box { font-size: 13px; padding: 10px 14px; }
  .workflow-tag { font-size: 12px; padding: 8px 10px; }
  .workflow-stats { grid-template-columns: 1fr; width: 100%; }
  .workflow-flow-grid { grid-template-columns: 1fr; }
  .workflow-contact-title { font-size: 20px; }
  .workflow-contact-card { min-height: 0; aspect-ratio: 4 / 3; max-height: min(260px, 48vh); }
  .workflow-contact-input { font-size: 14px; border-bottom-width: 1px; }
  .workflow-contact-submit { min-width: 160px; min-height: 46px; font-size: 16px; }

  .integ-logo-card { width: clamp(58px, 22vw, 86px); height: clamp(58px, 22vw, 86px); }
  .integ-logo-card.lg { width: clamp(76px, 26vw, 108px); height: clamp(72px, 24vw, 100px); }
  .integ-logo-card.sm { width: clamp(50px, 17vw, 68px); height: clamp(50px, 17vw, 68px); }
  .btn-cta-gradient { font-size: 16px; height: 56px; padding: 0 28px; }

  .cta-banner { padding: 36px 18px; }
  .cta-banner-title { font-size: clamp(20px, 6.5vw, 30px); }
  .testimonials-title { font-size: 40px; }
  .testimonial-text { font-size: 13px; line-height: 1.55; }
  .testimonial-name { font-size: 18px; }
  .testimonial-role, .testimonial-org { font-size: 12px; }

  footer { margin: 0 14px 14px; padding: 20px 16px; flex-direction: column; }
  .footer-links { flex-direction: column; gap: 24px; }
}

/* ─── BUSINESS GOAL FLOWS ───────────────────────────────────── */
.biz-flows-section {
  padding: clamp(40px, 5vw, 72px) clamp(16px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.biz-flows-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}
.biz-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1.5px solid #d4dbff;
  background: rgba(235,239,255,0.6);
  color: #6e86ff;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.biz-tab svg { flex-shrink: 0; }
.biz-tab:hover { background: #ebefff; border-color: #6e86ff; }
.biz-tab.active {
  background: #2b4dff;
  border-color: #2b4dff;
  color: #fff;
  box-shadow: 0 4px 14px rgba(43,77,255,.3);
}
.biz-tab.active svg { stroke: #fff; }

.biz-flows-panel-wrap {
  width: 100%;
  max-width: 100%;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e3e8ff;
  padding: clamp(24px, 3vw, 40px) clamp(20px, 3vw, 40px);
  background-image: radial-gradient(#dde3ff 1px, transparent 1px);
  background-size: 14px 14px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.biz-flow-panel { display: none; width: 100%; }
.biz-flow-panel.active { display: flex; align-items: center; }

.biz-flow-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 4px;
}

.biz-flow-step {
  flex: 1 1 0;
  min-width: 110px;
  background: #fff;
  border: 1px solid #e3e8ff;
  border-radius: 12px;
  padding: 14px 14px 12px;
  box-shadow: 0 4px 12px rgba(43,77,255,.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.biz-step-title { font-size: 14px; font-weight: 600; color: #1b1b1b; line-height: 1.3; }
.biz-step-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.biz-step-tags span {
  background: #fdf8f0;
  border: 1px solid #f0e8d0;
  color: #b49752;
  font-size: 11.5px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
}

.biz-flow-connector {
  flex: 0 0 32px;
  height: 1px;
  border-top: 2px dashed #a8b4ef;
  margin: 0 2px;
}

.biz-flow-action-btn {
  background: linear-gradient(104.12deg, #667eff 3.3%, #3d4c99 110.25%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(43,77,255,.3);
}
.biz-flow-action-btn:hover { opacity: .9; box-shadow: 0 6px 20px rgba(43,77,255,.4); }

/* ─── GET IN TOUCH MODAL ────────────────────────────────────── */
.git-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.git-overlay {
  position: fixed; inset: 0; z-index: 10050;
  display: none; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 28px);
  background: rgba(10, 20, 50, 0.5);
  backdrop-filter: blur(4px);
  box-sizing: border-box;
}
.git-overlay.active { display: flex; }
.git-modal {
  position: relative; width: 100%;
  max-width: min(100%, 440px);
  max-height: min(92vh, 640px);
  overflow-y: auto; box-sizing: border-box;
  background: #fff; border-radius: 18px;
  padding: clamp(20px, 3.5vw, 28px) clamp(18px, 3vw, 28px) clamp(18px, 3vw, 24px);
  box-shadow: 0 20px 60px rgba(15, 39, 68, 0.18);
  animation: popupIn .25s ease both;
}
.git-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border: none; border-radius: 50%;
  background: none; color: #8a96ad; font-size: 26px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.git-modal-close:hover { background: #f0f4ff; color: #2b4dff; }
.git-modal-title {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem); line-height: 1.2;
  color: #0f2744; margin: 0 36px 14px 0; text-align: left; letter-spacing: -0.02em;
}
.git-modal-form { display: flex; flex-direction: column; gap: 0; }
.git-field { display: block; margin-bottom: clamp(10px, 2vw, 14px); }
.git-modal-form > .git-field:last-of-type { margin-bottom: 0; }
.git-field-label {
  display: block; font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 500; color: #5a6988; margin-bottom: 4px; line-height: 1.25;
}
.git-input {
  width: 100%; box-sizing: border-box; border: none;
  border-bottom: 2px solid #4a63e8; padding: 6px 2px 8px;
  font-family: 'Poppins', sans-serif; font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400; color: #0f2744; background: transparent; border-radius: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.git-input::placeholder { color: #9aa5ba; }
.git-input:hover { border-bottom-color: #2b4dff; }
.git-input:focus { outline: none; border-bottom-color: #2b4dff; box-shadow: 0 1px 0 0 #2b4dff; }
.git-submit-wrap { display: flex; justify-content: center; margin-top: 12px; padding-top: 0; }
.git-submit {
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px;
  color: #fff; border: none; cursor: pointer; padding: 11px 40px; border-radius: 999px;
  background: linear-gradient(104.12deg, #667eff 3.3%, #3d4c99 110.25%);
  box-shadow: 0 4px 14px rgba(43, 77, 255, 0.25);
  transition: opacity 0.2s, transform 0.15s;
}
.git-submit:hover { opacity: 0.94; }
.git-submit:active { transform: scale(0.98); }
.git-thankyou { text-align: center; padding: 8px 0 4px; }
.git-thankyou[hidden] { display: none !important; }
.git-thankyou-title {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.25rem;
  color: #0f2744; margin: 0 0 10px;
}
.git-thankyou-text { font-family: 'Poppins', sans-serif; font-size: 14px; line-height: 1.55; color: #4a5568; margin: 0; }
.git-submit-frame { position: absolute; width: 0; height: 0; border: 0; opacity: 0; pointer-events: none; }

/* ─── BIZ POPUP ─────────────────────────────────────────────── */
.biz-popup-overlay {
  position: fixed; inset: 0; background: rgba(10,20,60,.45);
  backdrop-filter: blur(4px); z-index: 9999;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.biz-popup-overlay.active { display: flex; }
.biz-popup {
  position: relative; background: #fff; border-radius: 20px; overflow: hidden;
  display: grid; grid-template-columns: 42% 1fr;
  width: 100%; max-width: 860px; max-height: 92vh;
  box-shadow: 0 24px 64px rgba(43,77,255,.22);
  animation: popupIn .25s ease both;
}
@keyframes popupIn {
  from { opacity: 0; transform: scale(.95) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.biz-popup-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; font-size: 20px; color: #666; cursor: pointer;
  z-index: 2; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background .2s;
}
.biz-popup-close:hover { background: #f0f4ff; color: #2b4dff; }
.biz-popup-left { position: relative; overflow: hidden; min-height: 460px; background: #4759ba; }
.biz-popup-left-inner { position: absolute; inset: 0; display: flex; flex-direction: column; }
.biz-popup-left-inner img { width: 100%; height: 90%; object-fit: cover; object-position: center top; display: block; }
.biz-popup-mini-card {
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25); border-radius: 12px;
  padding: 12px 16px; display: inline-flex; flex-direction: column; gap: 8px; align-self: flex-start;
}
.biz-popup-mini-label { color: #fff; font-size: 13px; font-weight: 600; }
.biz-popup-mini-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.biz-popup-mini-tags span {
  background: rgba(255,255,255,.15); color: rgba(255,255,255,.85); font-size: 11px;
  padding: 3px 9px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2);
}
.biz-popup-tagline { color: #fff; font-family: 'Poppins', sans-serif; font-size: clamp(22px, 2.8vw, 28px); font-weight: 600; line-height: 1.25; }
.biz-popup-icons-row { display: flex; align-items: center; gap: 8px; }
.biz-dot-line { color: rgba(255,255,255,.35); font-size: 12px; letter-spacing: 2px; }
.biz-popup-right {
  padding: clamp(32px, 4vw, 52px) clamp(24px, 4vw, 52px) clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 32px; overflow-y: auto;
}
.biz-popup-title {
  font-family: 'Poppins', sans-serif; font-size: clamp(18px, 2vw, 22px);
  font-weight: 600; color: #1d34af; line-height: 1.3; padding-right: 32px;
}
.biz-popup-form { display: flex; flex-direction: column; gap: 24px; }
.biz-popup-form[hidden] { display: none !important; }
.biz-popup-field { border-bottom: 2px solid #667eff; }
.biz-popup-input {
  width: 100%; border: none; outline: none; background: transparent;
  padding: 6px 2px; font-family: 'Poppins', sans-serif; font-size: 15px; color: #394688;
}
.biz-popup-input::placeholder { color: #b0b8d8; }
.biz-popup-submit {
  align-self: center; margin-top: 8px;
  background: linear-gradient(90deg, #667eff 0%, #3d4c99 100%);
  color: #fff; border: none; border-radius: 10px; padding: 14px 48px;
  font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 500;
  cursor: pointer; transition: opacity .2s; min-width: 180px;
}
.biz-popup-submit:hover { opacity: .9; }
.biz-popup-thankyou { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding-top: 10px; }
.biz-popup-thankyou[hidden] { display: none !important; }
.biz-popup-thankyou-title { margin: 0; font-family: 'Poppins', sans-serif; font-size: clamp(24px, 3vw, 30px); font-weight: 600; color: #1d34af; }
.biz-popup-thankyou-text { margin: 0; font-family: 'Poppins', sans-serif; font-size: 15px; line-height: 1.6; color: #394688; max-width: 420px; }
.biz-popup-submit-frame { width: 0; height: 0; border: 0; display: none; }

@media (max-width: 680px) {
  .biz-popup { grid-template-columns: 1fr; }
  .biz-popup-left { min-height: 220px; }
  .biz-popup-left-inner img { object-position: center 20%; }
  .biz-flows-tabs { gap: 8px; }
  .biz-tab { font-size: 12px; padding: 8px 14px; }
}

@media (max-width: 768px) {
  .biz-flows-section { padding-left: clamp(12px, 3vw, 20px); padding-right: clamp(12px, 3vw, 20px); }
  .biz-flows-panel-wrap { padding: 14px 10px; border-radius: 16px; justify-content: flex-start; align-items: stretch; min-height: 0; }
  .biz-flow-panel.active { align-items: stretch; width: 100%; }
  .biz-flow-grid { flex-direction: column; flex-wrap: nowrap; align-items: stretch; overflow-x: visible; gap: 0; padding: 4px 0 8px; }
  .biz-flow-step { flex: none; width: 100%; max-width: 100%; min-width: 0; padding: 12px 14px 10px; }
  .biz-flow-connector { flex: 0 0 auto; width: 0; min-width: 0; height: 20px; align-self: center; margin: 2px 0; border: none; border-top: none; border-left: 2px dashed #a8b4ef; background: none; }
  .biz-step-title { font-size: 13px; }
  .biz-step-tags { gap: 5px; }
  .biz-step-tags span { white-space: normal; text-align: left; max-width: 100%; line-height: 1.25; }
}