*{
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif !important;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Whitney-SSm-Book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.ts-crumb-track {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(37, 99, 235, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 30px;
  padding: 4px 10px;
  box-shadow: 0 2px 14px rgba(37, 99, 235, 0.05);
  margin-bottom: 26px;
}

.ts-crumb-node {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ts-crumb-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #2563eb;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 5px 9px;
  border-radius: 6px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
  white-space: nowrap;
}

.ts-crumb-link i {
  font-size: 12px;
  opacity: 0.75;
}

.ts-crumb-link::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 2px;
  height: 1.5px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ts-crumb-link:hover {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.05);
}

.ts-crumb-link:hover::after {
  transform: scaleX(1);
}

.ts-crumb-link:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.ts-crumb-home-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  animation: ts-crumb-pulse 2.2s infinite;
  flex-shrink: 0;
}

@keyframes ts-crumb-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.4);
  }
}

.ts-crumb-divider {
  color: #c2cfe6;
  font-size: 12px;
  font-weight: 400;
  padding: 0 1px;
  user-select: none;
}

.ts-crumb-current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  padding: 5px 9px;
  white-space: nowrap;
  cursor: default;
}

.ts-crumb-current-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

@media (max-width: 576px) {
  .ts-crumb-track {
    padding: 6px 7px;
  }

  .ts-crumb-link,
  .ts-crumb-current {
    font-size: 11.5px;
    padding: 4px 7px;
  }

  .ts-crumb-divider.ts-crumb-mid {
    display: none;
  }

  .ts-crumb-more {
    display: inline-flex !important;
  }
}

/* ── HERO LIGHT ── */
.qauto-hero {
  position: relative;
  background:
    radial-gradient(
      circle at 60% 15%,
      rgba(213, 239, 255, 0.28),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 40%,
      rgba(215, 241, 255, 0.1),
      transparent 40%
    ),
    linear-gradient(171deg, #ffffff 0%, #daf3ff96 100%);
  padding: 60px 0;
  overflow: hidden;
}

.qauto-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.qauto-hero::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(108, 70, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Animated orbit rings */
.qauto-orbits {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.qauto-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(37, 99, 235, 0.07);
  animation: qautoOrbitSpin 30s linear infinite;
}

.qauto-orbit-1 {
  width: 500px;
  height: 500px;
  top: -180px;
  right: -100px;
  animation-duration: 35s;
}

.qauto-orbit-2 {
  width: 350px;
  height: 350px;
  bottom: -120px;
  left: -80px;
  animation-duration: 25s;
  animation-direction: reverse;
}

.qauto-orbit-3 {
  width: 200px;
  height: 200px;
  top: 30%;
  left: 8%;
  animation-duration: 20s;
  border-style: dotted;
}

.qauto-orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
  opacity: 0.2;
}

.qauto-orbit-1 .qauto-orbit-dot {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.qauto-orbit-2 .qauto-orbit-dot {
  bottom: 0;
  right: 20%;
  transform: translate(50%, 50%);
  background: #6c46ff;
}

.qauto-orbit-3 .qauto-orbit-dot {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

@keyframes qautoOrbitSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Floating micro shapes */
.qauto-spark {
  position: absolute;
  border-radius: 50%;
  animation: qautoDrift 9s ease-in-out infinite;
}

.qauto-spark-1 {
  width: 6px;
  height: 6px;
  background: #2563eb;
  opacity: 0.18;
  top: 18%;
  left: 12%;
}

.qauto-spark-2 {
  width: 10px;
  height: 10px;
  border: 2px solid rgba(108, 70, 255, 0.12);
  top: 70%;
  right: 10%;
  animation-delay: 3s;
}

.qauto-spark-3 {
  width: 5px;
  height: 5px;
  background: #6c46ff;
  opacity: 0.15;
  top: 22%;
  right: 22%;
  animation-delay: 1.5s;
}

.qauto-spark-4 {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(37, 99, 235, 0.1);
  border-radius: 3px;
  top: 60%;
  left: 4%;
  animation-delay: 4.5s;
  transform: rotate(45deg);
}

@keyframes qautoDrift {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  33% {
    transform: translateY(-16px) translateX(5px);
  }

  66% {
    transform: translateY(8px) translateX(-6px);
  }
}

.qauto-hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.qauto-hero-content {
  flex: 1;
}

.aniamtion-key-3 {
    position: relative;
    animation-name: animation-4;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    border-radius: 10px;
    width: 100%;
}
.qauto-hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}
.qauto-hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  text-transform: math-auto !important;
}

.qauto-hero-title .qauto-grad {
  background: linear-gradient(135deg, #2563eb, #6c46ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.qauto-hero-desc {
  font-size: 1.1rem;
  color: #000;
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: 38px;
}

.qauto-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.qauto-btn-fill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 32px;
  border-radius: 14px;
  border: none;
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.25);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
  text-decoration: none;
}

.qauto-btn-fill:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.35);
  color: #fff;
  text-decoration: none;
}

.qauto-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 14px;
  border: 1.5px solid #dbeafe;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
}

.qauto-btn-ghost:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #1d4ed8;
  text-decoration: none;
}
/* ===== CHALLENGES ===== */
.mkt-tag-blue {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}
.mkt-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0px;
    line-height: 28px;
}
.hiw-top {
  text-align: center;
  margin-bottom: 30px;
}
.hiw-top h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600;
  color: #0d1b3e;
  line-height: normal;
  margin-top: 14px;
  margin-bottom: 16px;
}
.hiw-top h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #0a4da6, #0a84d6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hiw-top p {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  max-width: 870px;
  margin: 0 auto;
  line-height: 1.7;
}

.su-challenges {
  background:
    radial-gradient(circle at 20% 15%, rgb(10 165 255 / 28%), transparent 30%),
    radial-gradient(
      circle at 85% 40%,
      rgba(123, 75, 255, 0.1),
      transparent 40%
    ),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
        padding: 70px 0%;
}
.su-challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.su-challenge-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  cursor: default;
}
.su-challenge-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29, 107, 243, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 20px;
}
.su-challenge-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(29, 107, 243, 0.1);
  border-color: rgba(29, 107, 243, 0.2);
}
.su-challenge-card:hover::after {
  opacity: 1;
}
.su-challenge-num {
  font-family: "Inter", sans-serif !important;
  font-size: 11px;
  font-weight: 700;
  color: #1d6bf3;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.su-challenge-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eff4ff, #dce8ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s;
}
.su-challenge-icon svg {
  width: 24px;
  height: 24px;
  color: #1d6bf3;
  transition: filter 0.3s;
}
.su-challenge-card:hover .su-challenge-icon {
  background: linear-gradient(135deg, #1d6bf3, #0a52c7);
  transform: scale(1.1);
}
.su-challenge-card:hover .su-challenge-icon svg {
  filter: brightness(0) invert(1);
}
.su-challenge-ttl {
  font-family: "Inter", sans-serif !important;
  font-size: 19px;
  font-weight: 600;
  color: #07090f;
  margin-bottom: 10px;
}
.su-challenge-txt {
  font-size: 16px;
  color: #000000;
  line-height: 1.7;
  font-weight: 400;
}


.mkt-why {
    background: radial-gradient(900px 500px at 15% 25%, rgba(62, 171, 255, 0.18), transparent 60%), radial-gradient(900px 500px at 85% 30%, rgba(108, 70, 255, 0.12), transparent 60%), linear-gradient(135deg, #0a4da6 0%, #0a84d6 45%, #0b3b8f 100%);
    padding: 70px 0 !important;
}

.mkt-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.mkt-why .mkt-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #e0f2fe;
  border-color: rgba(255, 255, 255, 0.25);
}

.mkt-h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -1.2px;
    margin-bottom: 16px;
      color: #fff;
}
.mkt-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    line-height: 1.65;
    margin-bottom: 32px;
}
.mkt-why .mkt-sub {
  color: rgba(255, 255, 255, 0.75);
}
.mkt-why-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.mkt-why-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.mkt-why-checks li:last-child {
  border-bottom: none;
}
.mkt-why-checks li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(255, 255, 255, 0.18);
  color: #7dd3fc;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.mkt-why-img-wrap {
  position: relative;
}
.mkt-why-img-wrap img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  height: 517px;
}
.mkt-why-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  text-align: center;
}
.mkt-why-badge-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #0a4da6;
}
.mkt-why-badge-lbl {
  font-size: 11px;
  color: #000;
  margin-top: 2px;
}
/* ===== HOW IT WORKS ===== */
.su-section {
    padding: 70px 5%;
}
.su-howitworks {
  background: #ffffff;
}
.su-hiw-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.how-toworkimg {
  position: sticky;
  top: 106px;
  height: 580px;
}
.startup-newimageab {
  background: transparent;
  border: 4px solid white;
  padding: 10px;
  position: absolute;
  z-index: 2;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: rgb(10, 22, 40);
  box-shadow: rgba(10, 77, 166, 0.13) 0px 8px 28px;
  white-space: nowrap;
  left: -21% !important;
  top: 20%;
}
.su-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(29, 107, 243, 0.08);
    color: #1d6bf3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    line-height: 28px;
}
.su-section-title {
    font-size: clamp(26px, 3.1vw, 36px);
    color: rgb(7, 9, 15);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}
.su-section-sub {
    font-size: 18px;
    color: #000000;
    max-width: 640px;
    line-height: 1.75;
    font-weight: 400;
}
.startup-relative {
  position: relative;
  height: 100%;
}
.startup-newimageab img {
  width: 301px;
  height: 325px;
  object-fit: cover;
}
.how-toworkimg img {
  width: 100%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
}
.su-steps-wrap {
  position: relative;
}
.su-steps-line {
  position: absolute;
  left: 17px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(180deg, #1d6bf3, #00c8e8, transparent);
}
.su-step-item {
  display: flex;
  gap: 24px;
  margin-bottom: 44px;
  position: relative;
}
.su-step-num {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d6bf3, #0a52c7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 8px 28px rgba(29, 107, 243, 0.35);
}
.su-step-content {
  flex: 1;
}
.su-step-tag {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  background: rgba(29, 107, 243, 0.07);
  color: #1d6bf3;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.su-step-title {
  font-family: "Inter", sans-serif !important;
  font-size: 20px;
  font-weight: 600;
  color: #07090f;
  margin-bottom: 8px;
}
.su-step-desc {
  font-size: 16px;
  color: #000000;
  line-height: 1.7;
  font-weight: 400;
}
.su-term-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-left: auto;
  font-family: monospace;
}
.su-term-body {
  padding: 24px 22px;
  font-family: "Courier New", monospace;
  font-size: 13px;
  line-height: 2;
}
.t-comment {
  color: #6b7280;
}
.t-cmd {
  color: #4d8fff;
}
.t-ok {
  color: #4ade80;
}
.t-warn {
  color: #fb923c;
}
.t-white {
  color: rgba(255, 255, 255, 0.8);
}
.t-cyan {
  color: #00c8e8;
}
.su-cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: #4d8fff;
  vertical-align: middle;
  animation: su-cursor-blink 1.2s infinite;
}
@keyframes su-cursor-blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

/* ══════════════════════════════════════
       TWO-COLUMN WRAPPER
       Image column is sticky so it stays
       centred regardless of text height.
    ══════════════════════════════════════ */

       .sol-para-wrapper {
        max-height: 120px;
        overflow: hidden;
        transition: all .4s ease;
    }

  
    .sol-section {
    padding: 56px 0px;
    background: radial-gradient(circle at 20% 15%, rgba(10, 165, 255, 0.28), transparent 30%), radial-gradient(circle at 85% 40%, rgba(123, 75, 255, 0.1), transparent 40%), linear-gradient(rgb(255, 255, 255) 0%, rgb(247, 251, 255) 100%);
}
.sol-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px;
  align-items: start;
}
.large-contentheading {
  font-size: 24px;
  color: black;
  margin: 15px 0px 8px 0px;
}
/* ── TEXT SIDE ── */
.sol-text-col {
  min-width: 0;
}
/* ── IMAGE SIDE — sticky so it "follows" scroll ── */
.sol-img-col {
  position: sticky;
  top: 10px;
  /* distance from viewport top */
  align-self: start;
}
/* ══════════════════════════════════════
       EYEBROW + HEADING
    ══════════════════════════════════════ */
.sol-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5c5fef;
  margin-bottom: 10px;
}
.sol-eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: #5c5fef;
  border-radius: 2px;
  flex-shrink: 0;
}
.sol-heading {
  font-family: "Inter", sans-serif !important;
  font-size: clamp(1.35rem, 2.4vw, 36px);
  font-weight: 600;
  line-height: 1.22;
  color: #0e0e1a;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.sol-heading span {
  color: #5c5fef;
}
/* ══════════════════════════════════════
       COLLAPSED PREVIEW  (3 lines)
    ══════════════════════════════════════ */
.sol-content-block {
  position: relative;
}
.sol-para-wrapper {
  overflow: hidden;
  max-height: calc(1.5em * 3);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Fade at bottom of collapsed state */
.sol-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38px;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.sol-fade--off {
  opacity: 0;
}
/* ══════════════════════════════════════
       EXPANDED STATE
       Fixed-height scroll box with a subtle
       styled border to frame the content.
    ══════════════════════════════════════ */
.sol-para-wrapper.sol-para--expanded {
  max-height: 380px;
  overflow-y: auto;
  /* Frame the scrollable area */
  background: #fff;
  border: 1px solid #e4e4f0;
  border-radius: 12px;
  padding: 20px 16px 20px 20px;
  /* Custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: #c8c8f0 #f0f0fb;
}
.sol-para-wrapper.sol-para--expanded::-webkit-scrollbar {
  width: 4px;
}
.sol-para-wrapper.sol-para--expanded::-webkit-scrollbar-track {
  background: #f0f0fb;
  border-radius: 8px;
}
.sol-para-wrapper.sol-para--expanded::-webkit-scrollbar-thumb {
  background: #c8c8f0;
  border-radius: 8px;
}
/* ══════════════════════════════════════
       INNER CONTENT TYPOGRAPHY
    ══════════════════════════════════════ */
.sol-para {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #000;
  margin-bottom: 0;
}
/* h3 inside expanded scroll */
.sol-inner-h3 {
  font-family: "Inter", sans-serif !important;
  font-size: 1rem;
  font-weight: 700;
  color: #0e0e1a;
  letter-spacing: -0.01em;
  margin-top: 22px;
  margin-bottom: 7px;
}
/* h4 inside expanded scroll */
.sol-inner-h4 {
  font-family: "Inter", sans-serif !important;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5c5fef;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 5px;
}
/* Remove top margin from first child */
.sol-para-wrapper > *:first-child,
.sol-para-wrapper .sol-inner-h3:first-child,
.sol-para-wrapper .sol-inner-h4:first-child {
  margin-top: 0;
}
/* Gap between consecutive paragraphs */
.sol-para + .sol-para {
  margin-top: 10px;
}
/* ══════════════════════════════════════
       READ MORE / LESS BUTTON
    ══════════════════════════════════════ */

.sol-rm-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 0px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: "Inter", sans-serif !important;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #5c5fef;
  transition:
    opacity 0.2s,
    gap 0.2s;
}
.sol-rm-btn:hover {
  opacity: 0.65;
  gap: 8px;
}
.sol-rm-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.sol-rm-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
/* ══════════════════════════════════════
       FEATURE PILLS
    ══════════════════════════════════════ */
.sol-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}
.sol-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 13px;
  border-radius: 100px;
  background: #ececfd;
  font-size: 0.75rem;
  font-weight: 500;
  color: #5c5fef;
}
.sol-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5c5fef;
  flex-shrink: 0;
}
/* ══════════════════════════════════════
       IMAGE CARD
    ══════════════════════════════════════ */
.sol-img-card {
  border-radius: 16px;
  overflow: hidden;
  background: #e2e2f2;
  /* Image fills the card, aspect-ratio keeps it from being too tall */
  aspect-ratio: 3 / 3;
  position: relative;
}
.sol-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.sol-img-card:hover img {
  transform: scale(1.04);
}





/* ── OFFERS FAQ — ofq- prefix ── */
.ofq-section {
  padding: 70px 0;
  background:
    radial-gradient(circle at 20% 15%, rgb(10 165 255 / 28%), transparent 30%),
    radial-gradient(
      circle at 85% 40%,
      rgba(123, 75, 255, 0.1),
      transparent 40%
    ),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}
.ofq-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 48px;
  align-items: start;
  margin-top: 52px;
}
.ofr-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(29, 107, 243, 0.08);
  color: #1d6bf3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.ofr-section-title {
  font-size: clamp(26px, 3.1vw, 36px);
  font-weight: 600;
  color: rgb(7, 9, 15);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.ofr-section-sub {
  font-size: 18px;
  color: #000000;
  max-width: 540px;
  line-height: 1.75;
  font-weight: 300;
}
/* ── LEFT: image card ── */
.ofq-img-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}
.ofq-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ── RIGHT: accordion list ── */
/* Default state - sab answers visible */
.ofq-ans {
  display: block;
}
/* Sirf JS active hone par accordion apply hoga */
html.js-enabled .ofq-item .ofq-ans {
  display: none;
}
html.js-enabled .ofq-item.ofq-open .ofq-ans {
  display: block;
}
.ofq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ofq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.ofq-item.ofq-open {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.08);
}
.ofq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.45;
  user-select: none;
  transition: color 0.18s;
}
.ofq-item.ofq-open .ofq-q {
  color: #2563eb;
}
.ofq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.18s,
    border-color 0.18s,
    transform 0.25s;
}
.ofq-toggle i {
  font-size: 0.85rem;
  color: #000;
  transition:
    color 0.18s,
    transform 0.25s;
}
.ofq-item.ofq-open .ofq-toggle {
  background: #2563eb;
  border-color: #2563eb;
  transform: rotate(45deg);
}
.ofq-item.ofq-open .ofq-toggle i {
  color: #ffffff;
}
.ofq-ans {
  transition:
    max-height 0.32s ease,
    padding 0.28s ease;
  padding: 0 20px;
}
.ofq-item.ofq-open .ofq-ans {
  max-height: 300px;
  padding: 0 20px 18px;
}
.ofq-ans-inner {
  font-size: 16px;
  color: #000000;
  line-height: 1.72;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
  font-weight: 500;
}

/* ─── Section wrapper ─────────────────────────────────────── */
.db-section {
  background: #ffffff;
  font-family: 'Inter', sans-serif;
  padding: 64px 0 80px;
  overflow: hidden;
}

/* ─── Feature cards ───────────────────────────────────────── */
.db-feat-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 18px;
  transition: box-shadow .2s, transform .2s;
  height: 100%;
}

.db-feat-card:hover {
  box-shadow: 0 8px 28px rgba(99, 102, 241, .13);
  transform: translateY(-3px);
}

.db-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 18px;
  background: linear-gradient(135deg, #ede9fe, #dbeafe);
}

.db-feat-title {
  font-size: .92rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
}

.db-feat-desc {
  font-size: .78rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* coloured link text in desc */
.db-feat-desc a {
  color: #3b82f6;
  text-decoration: none;
}

/* ─── Centre phone mockup ─────────────────────────────────── */
.db-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* decorative blobs behind phone */
.db-phone-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(99, 102, 241, .12) 0%,
    rgba(6, 182, 212, .07) 55%,
    transparent 75%
  );
  border-radius: 50%;
  pointer-events: none;
}

.db-phone {
  width: 320px;
  background: #f8faff;
  border-radius: 36px;
  border: 2.5px solid #00000073;
  box-shadow:
    0 0 0 8px #eef0ff,
    0 24px 60px rgba(99, 102, 241, .22);
  padding: 20px 14px 24px;
  position: relative;
  z-index: 2;
  height: 100%;
}

.db-phone-notch {
  width: 60px;
  height: 8px;
  background: #d1d5ff;
  border-radius: 99px;
  margin: 0 auto 14px;
}

.db-phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.db-phone-logo {
  font-size: .82rem;
  font-weight: 800;
  color: #6366f1;
  letter-spacing: -.5px;
}

.db-phone-logo span {
  color: #3b82f6;
}

.db-phone-badge {
  background: #3b82f6;
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 99px;
}

.db-phone-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 24px 18px;
  margin: 24px 0px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.db-phone-section-title {
  font-size: .7rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 3px;
}

.db-phone-section-sub {
  font-size: .6rem;
  color: #64748b;
  margin-bottom: 8px;
  line-height: 1.4;
}

.db-phone-label {
  font-size: .58rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 3px;
}

.db-phone-input {
  background: #f1f5f9;
  border-radius: 6px;
  height: 22px;
  margin-bottom: 6px;
}

.db-phone-btn {
  background: #3b82f6;
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 4px 14px;
  width: 100%;
}

.db-phone-results-title {
  font-size: .68rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.db-phone-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.db-phone-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-right: 7px;
  flex-shrink: 0;
}

.db-phone-name {
  font-size: .6rem;
  color: #1e293b;
  font-weight: 500;
}

.db-phone-check {
  color: #22c55e;
  font-size: .7rem;
  font-weight: 700;
}

/* ─── Sparkle decorations ─────────────────────────────────── */
.db-spark {
  position: absolute;
  pointer-events: none;
  color: #6366f1;
  font-size: 1.7rem;
  opacity: .7;
}

/* ─── Explore button ──────────────────────────────────────── */
.db-explore-btn {
  background: linear-gradient(
    90deg,
    #3b82f6 0%,
    #6366f1 100%
  );
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 13px 38px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .3px;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 6px 22px rgba(99, 102, 241, .35);
}

.db-explore-btn:hover {
  opacity: .9;
  transform: translateY(-2px);
}

/* ─── Column alignment helpers ────────────────────────────── */
.db-left-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.db-right-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* responsive */
@media (max-width: 900px) {
  .ofq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ofq-img-card,
  .ofq-img-card img {
    min-height: 280px;
  }
}
@media (max-width: 768px) {
  .ofq-section {
    padding: 40px 0;
  }
}
@media (max-width: 1200px) {
  .qauto-hero {
    padding: 100px 0 80px;
  }

  .qauto-hero-inner {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .qauto-hero-inner {
    flex-direction: column;
  }

 

  .qauto-feat-row {
    grid-template-columns: 1fr;
  }

  .qauto-feat-trio {
    grid-template-columns: 1fr 1fr;
  }

  .qauto-tl-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .qauto-tl-cards::before {
    display: none;
  }

  .qauto-code-flex {
    flex-direction: column;
  }

  .qauto-code-info {
    text-align: center;
  }

  .qauto-toolkit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .qauto-faq-layout {
    grid-template-columns: 1fr;
  }

  .qauto-faq-img {
    position: static;
    max-width: 380px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .qauto-hero {
    padding: 50px 0;
  }

  .qauto-zigzag,
  .qauto-showcase,
  .qauto-timeline,
  .qauto-code-sec,
  .qauto-toolkit,
  .qauto-faq {
    padding: 50px 0;
  }

  .qauto-hero-title {
    font-size: 1.9rem;
    line-height: 44px;
  }

  .qauto-toolkit-grid {
    grid-template-columns: 1fr;
  }

  .qauto-heading,
  .qauto-tl-title {
    font-size: 1.6rem;
  }

  .qauto-feat-trio {
    grid-template-columns: 1fr;
  }

  .qauto-feat-primary {
    padding: 30px 24px;
  }

  .qauto-code-editor {
    width: 100%;
  }
  .mkt-why-img-wrap img {
    height: 100%;
}
.mkt-why-checks {
  list-style: none;
  padding: 0;
  margin: 0 ;
}
}
@media (max-width: 991px) {
  .su-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .su-fchip.c1 {
    top: -20px;
    left: 0 !important;
  }
  .su-fchip.c2 {
    bottom: 10px;
    right: 0 !important;
  }
  .su-hiw-layout {
    margin-top: 10px;
}
.su-section-title {
    line-height: normal;
}
  .su-challenge-grid {
    grid-template-columns: 1fr 1fr;
  }
  .su-hiw-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .su-feat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .su-testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .su-metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
  .su-metric-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 20px;
  }
  .su-metric-box:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .su-metric-box:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .su-timeline-track {
    flex-direction: column;
    gap: 28px;
    padding-bottom: 0;
  }
  .su-timeline-track::before {
    display: none;
  }
  .su-tl-item {
    text-align: left;
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
  .su-tl-dot {
    margin: 0;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
  }
  .su-tl-dot svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 1199px) {
  .mkt-hero-inner {
    gap: 40px;
  }
  .mkt-why-grid {
    gap: 48px;
  }
  .mkt-bento {
    grid-auto-rows: 200px;
  }
}
@media (max-width: 991px) {
  .mkt-page section {
    padding: 70px 0;
  }
  .mkt-hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .mkt-hero {
    padding: 80px 0 60px;
  }
  .mkt-hero-mosaic {
    height: 360px;
    max-width: 560px;
    margin: 0 auto;
  }
  .mkt-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mkt-why-badge {
    left: 12px;
    bottom: -12px;
  }
  .mkt-chall-grid {
    grid-template-columns: 1fr;
  }
  .mkt-hiw-row,
  .mkt-hiw-row.mkt-hiw-rev {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }
  .mkt-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
  .mkt-b-4x2,
  .mkt-b-4x1,
  .mkt-b-3x1,
  .mkt-b-3x2 {
    grid-column: span 1;
    grid-row: span 1;
  }
  .mkt-bcard {
    min-height: 190px;
  }
  .mkt-nums-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .mkt-testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mkt-tab-panel.active {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 991px) {
  .su-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .su-fchip.c1 {
    top: -20px;
    left: 0 !important;
  }
  .su-fchip.c2 {
    bottom: 10px;
    right: 0 !important;
  }
  .su-hiw-layout {
    margin-top: 10px;
}
.su-section-title {
    line-height: normal;
}
  .su-challenge-grid {
    grid-template-columns: 1fr 1fr;
  }
  .su-hiw-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .su-feat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .su-testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .su-metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
  .su-metric-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 20px;
  }
  .su-metric-box:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .su-metric-box:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .su-timeline-track {
    flex-direction: column;
    gap: 28px;
    padding-bottom: 0;
  }
  .su-timeline-track::before {
    display: none;
  }
  .su-tl-item {
    text-align: left;
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
  .su-tl-dot {
    margin: 0;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
  }
  .su-tl-dot svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 767px) {
  .su-hero {
    min-height: auto;
    padding: 60px 4% 50px;
  }
  .su-hero-title {
    letter-spacing: -1px;
  }
  .su-hero-stats {
    gap: 20px;
  }
  .su-stat-num {
    font-size: 28px;
  }
  .su-steps-line {
    display: none;
  }
  .how-toworkimg {
    position: sticky;
    top: 106px;
    height: 380px;
}
  .su-step-item {
    flex-direction: column;
    gap: 14px;
  }
  .su-step-content {
    padding-top: 0;
  }
  .su-challenge-grid {
    grid-template-columns: 1fr;
  }
  .su-fchipimg.c2 {
    bottom: -24px;
    position: absolute;
    left: 0;
    animation: su-float 4.5s ease-in-out infinite 0.5s;
    border: 4px solid white;
    padding: 6px 6px 0px 6px;
    margin: 0;
    /* height: 100%; */
    border-radius: 10px;
  }
  .su-fchipimg img {
    width: 142px;
    height: 130px;
    object-fit: cover;
  }
  .su-feat-grid {
    grid-template-columns: 1fr;
  }
  .su-testi-grid {
    grid-template-columns: 1fr;
  }
  .su-logos-row {
    gap: 20px;
  }
  .su-metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
  .startup-newimageab img {
    width: 186px;
    height: 148px;
    object-fit: cover;
  }
  .startup-newimageab {
    background: transparent;
    border: 4px solid white;
    padding: 10px;
    position: absolute;
    z-index: 2;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: rgb(10, 22, 40);
    box-shadow: rgba(10, 77, 166, 0.13) 0px 8px 28px;
    white-space: nowrap;
    left: 2% !important;
    top: 36%;
  }
  .su-section {
    padding: 50px 4%;
  }
  .su-trust {
    padding: 40px 4%;
  }
  .su-metrics {
    padding: 60px 4%;
  }
  .su-cta {
    padding: 80px 4%;
  }
  .su-features {
    padding: 64px 4%;
  }
  .su-hero-badge {
    font-size: 12px;
    padding: 6px 14px;
  }
  .su-logos-row {
    gap: 16px;
  }
  .su-logo-chip {
    font-size: 14px;
  }
  .qauto-hero {
    padding: 45px 0;
  }
  .qauto-hero-inner {
    display: grid;
    gap: 30px;
  }
  .fintech-features {
    padding: 40px 0;
  }
  .fintech-top {
    grid-template-columns: 1fr;
  }
  .fintech-comp-inner {
    grid-template-columns: 1fr;
}
.fintech-stats-grid {
    grid-template-columns: repeat(1, 1fr);
}
.ent-section-desc {
    font-size: 17px;
}
.fintech-compliance {
    padding: 40px 10px;
}
.fintech-stats {
    background: #fff;
    padding: 40px 0;
  }
  .hiw-top {
    text-align: center;
    margin-bottom: 10px;
}
.su-challenges {
    padding: 54px 2%;
}
}
@media (max-width: 960px) {
  .sol-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  /* On mobile — image goes below text, no longer sticky */
  .sol-img-col {
    position: static;
    order: 2;
    /* image after text */
  }
  .sol-text-col {
    order: 1;
  }
  .sol-img-card {
    aspect-ratio: 16 / 9;
  }
  .sol-para-wrapper.sol-para--expanded {
    max-height: 280px;
  }
  .sol-section {
    padding: 36px 0;
  }
}