/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* =========================
   ROOT VARIABLES
========================= */
:root {
  --bg: #ffffff;
  --bg-2: #ecebe8;
  --text: #101722;
  --muted: #8f918f;
  --line: #252b35;
  --accent: #ff7b22;
  --dark: #0b1420;
  --white: #ffffff;
  --header-h: 104px;
  --qiro: #14637b;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Body base style */
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* Remove default underline */
a {
  text-decoration: none;
}

/* ======================================================== */
/* About-Hero  */
/* ======================================================== */
.Service-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 20px 24px;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;

  box-sizing: border-box;
}

/* ========================================================
   BACKGROUND EFFECT
======================================================== */

.Service-hero-glow {
  position: absolute;

  width: 600px;
  height: 600px;

  top: 45%;
  left: 50%;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(73, 170, 167, 0.58) 0%,
      rgba(95, 230, 227, 0.629) 35%,
      rgba(255, 255, 255, 0) 70%);

  filter: blur(60px);

  z-index: 1;
  pointer-events: none;
}

.Service-hero-circle {
  position: absolute;

  width: 1050px;
  height: 1050px;

  top: 18%;
  left: 50%;

  transform: translateX(-50%);

  border-radius: 50%;

  background:
    linear-gradient(to bottom,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.18) 35%,
      rgba(255, 255, 255, 0.04) 60%,
      rgba(255, 255, 255, 0) 100%);

  border-top: 2px solid rgba(255, 255, 255, 0.95);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 40px 80px rgba(255, 255, 255, 0.18),
    0 0 80px rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(45px) saturate(160%);
  -webkit-backdrop-filter: blur(45px) saturate(160%);

  mask-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.9) 35%,
      rgba(0, 0, 0, 0.45) 60%,
      rgba(0, 0, 0, 0) 100%);

  -webkit-mask-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.9) 35%,
      rgba(0, 0, 0, 0.45) 60%,
      rgba(0, 0, 0, 0) 100%);

  z-index: 2;
  pointer-events: none;
}

/* ========================================================
   CONTENT
======================================================== */

.Service-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ========================================================
   TITLE
======================================================== */

.Service-hero-title {
  font-size: clamp(44px, 7.5vw, 110px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #0b0f19;
  margin: 0 0 32px;
}

.Service-hero-title span {
  font-weight: 500;
  color: #0b0f19;
}

/* ========================================================
   TEXT
======================================================== */

.Service-hero-text {
  max-width: 720px;
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.45;
  color: #1a1e26;
  font-weight: 400;
}

.Service-hero-text span {
  color: rgba(26, 30, 38, 0.45);
}

.Service-cta-btn {
  display: inline-flex;
  align-items: center;

  gap: 10px;
  margin-top: 30px;

  background: linear-gradient(180deg, #4d99a4, #0d4e53);
  color: #fff;
  padding: 16px 30px;
  /* reduced */
  border-radius: 999px;
  font-size: 13px;
  /* reduced */
  letter-spacing: 1.5px;
  box-shadow: 0 14px 30px rgba(9, 19, 33, .15);
  transition: .35s ease;
}

/* =========================================================
   Laptop (1200px)
========================================================= */
@media (max-width:1200px) {

  .Service-hero-title {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 28px;
  }

  .Service-hero-text {
    max-width: 620px;
    font-size: 16px;
    line-height: 1.6;
  }

  .Service-cta-btn {
    margin-top: 28px;
    padding: 15px 28px;
    font-size: 13px;
  }

}


/* =========================================================
   Small Laptop (1024px)
========================================================= */
@media (max-width:1024px) {

  .Service-hero-title {
    font-size: 56px;
    line-height: 1.05;
    margin-bottom: 24px;
  }

  .Service-hero-text {
    max-width: 560px;
    font-size: 15px;
    line-height: 1.7;
  }

  .Service-cta-btn {
    margin-top: 24px;
    padding: 14px 26px;
    font-size: 13px;
  }

}


/* =========================================================
   Tablet (768px)
========================================================= */
@media (max-width:768px) {

  .Service-hero-title {
    width: 100%;
    font-size: 46px;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
  }

  .Service-hero-text {
    width: 100%;
    max-width: 500px;
    font-size: 15px;
    line-height: 1.7;
  }

  .Service-cta-btn {
    margin-top: 22px;
    padding: 14px 24px;
    font-size: 13px;
  }

}


/* =========================================================
   Large Mobile (576px)
========================================================= */
@media (max-width:576px) {

  .Service-hero-title {
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 18px;
  }

  .Service-hero-text {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.7;
  }

  .Service-cta-btn {
    padding: 13px 22px;
    font-size: 12px;
  }

}


/* =========================================================
   Mobile (480px)
========================================================= */
@media (max-width:480px) {

  .Service-hero-title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .Service-hero-text {
    font-size: 13px;
    line-height: 1.7;
  }

  .Service-cta-btn {
    justify-content: center;
    padding: 13px 18px;
    font-size: 12px;
  }

}


/* =========================================================
   Small Mobile (390px)
========================================================= */
@media (max-width:390px) {

  .Service-hero-title {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .Service-hero-text {
    font-size: 12.5px;
  }

  .Service-cta-btn {
    padding: 12px 16px;
    font-size: 11px;
  }

}


/* =========================================================
   Extra Small Mobile (360px)
========================================================= */
@media (max-width:360px) {

  .Service-hero-title {
    width: 100%;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-top: 10px;
    word-break: break-word;
  }

  .Service-hero-text {
    width: 100%;
    max-width: 100%;
    font-size: 12px;
    line-height: 1.7;
    word-break: break-word;
  }

  .Service-cta-btn {
    justify-content: center;
    padding: 12px 16px;
    font-size: 11px;
    letter-spacing: 1px;
    margin-top: 18px;
  }

}




/* =========================================================
   SERVICES EXPERTISE SECTION
========================================================= */

.services-expertise-section {
  padding: 40px 34px 50px;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
  position: relative;
}

/* TOP AREA */

.services-expertise-top {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 26px;
}

.services-expertise-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 36px;
  padding: 0 15px;

  border: 1.2px solid #72808a;
  border-radius: 999px;

  color: #63707a;
  font-size: 14px;
  font-weight: 300;

  margin-bottom: 14px;

  backdrop-filter: blur(12px);
}

.services-expertise-title {
  margin: 0;

  color: #111822;

  font-size: clamp(52px, 6vw, 110px);
  line-height: .92;
  letter-spacing: -3px;
  font-weight: 300;
}

.services-expertise-title span {
  font-weight: 600;
}

.services-expertise-top-right {
  display: flex;
  justify-content: flex-end;
  padding-top: 10px;
}

.services-expertise-top-right p {
  margin: 0;

  max-width: 520px;

  color: #1e2731;

  font-size: clamp(16px, 1.2vw, 24px);
  line-height: 1.2;
  font-weight: 300;
}

.services-expertise-top-right p span {
  color: #97a0a8;
}

/* =========================================================
   MAIN BOARD
========================================================= */

.services-expertise-board {
  position: relative;

  border-radius: 40px;

  background:
    linear-gradient(180deg,
      rgba(233, 246, 247, 0.70) 0%,
      rgba(215, 243, 244, 0.52) 100%);

  padding: 32px;

  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 26px;

  overflow: hidden;

  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);

  border: 1px solid rgba(255, 255, 255, .25);
}

/* GLOW */

.services-expertise-glow {
  position: absolute;

  left: 50%;
  bottom: -180px;

  transform: translateX(-50%);

  width: 900px;
  height: 380px;

  border-radius: 50%;

  background:
    radial-gradient(ellipse at center,
      rgba(31, 98, 98, 0.845) 0%,
      rgba(20, 99, 123, .35) 28%,
      rgba(255, 208, 154, .12) 58%,
      transparent 78%);

  filter: blur(80px);

  pointer-events: none;
}

/* =========================================================
   LEFT SIDE
========================================================= */

.services-expertise-left {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* =========================================================
   SERVICE ITEM
========================================================= */

.service-item {
  position: relative;

  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;

  gap: 16px;

  padding: 18px 18px;

  border-radius: 28px;

  color: #121a24;

  transition:
    transform .45s cubic-bezier(.22, 1, .36, 1),
    background .45s ease,
    border .45s ease,
    box-shadow .45s ease;

  border: 1px solid transparent;

  overflow: hidden;
}

/* GLASS HOVER */

.service-item::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, .26),
      rgba(255, 255, 255, .06));

  opacity: 0;

  transition: .45s ease;
}

.service-item:hover::before,
.service-item.active::before {
  opacity: 1;
}

/* ACTIVE + HOVER */

.service-item:hover,
.service-item.active {
  background: rgba(255, 255, 255, .30);

  border: 1px solid rgba(20, 99, 123, .35);

  backdrop-filter: blur(18px);

  transform: translateX(8px);

  box-shadow:
    0 12px 28px rgba(20, 99, 123, .10),
    inset 0 1px 0 rgba(255, 255, 255, .45);
}

/* ICON */

.service-item-icon {
  width: 48px;
  height: 48px;

  border-radius: 50%;

  background: rgba(255, 255, 255, .42);

  color: #7b8389;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;

  position: relative;
  z-index: 2;

  transition: .4s ease;

  backdrop-filter: blur(10px);
}

.service-item:hover .service-item-icon,
.service-item.active .service-item-icon {
  background: #14637b;
  color: #fff;

  transform: scale(1.05);
}

/* TEXT */

.service-item-copy {
  position: relative;
  z-index: 2;
}

.service-item-copy h3 {
  margin: 0;

  color: #101822;

  font-size: clamp(20px, 1.5vw, 34px);

  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 400;

  transition: .35s ease;
}

.service-item-copy p {
  margin: 6px 0 0;

  color: #77808a;

  font-size: clamp(13px, .88vw, 16px);

  line-height: 1.35;
  font-weight: 300;

  max-width: 300px;

  opacity: 0;
  max-height: 0;

  overflow: hidden;

  transform: translateY(8px);

  transition:
    opacity .4s ease,
    transform .4s ease,
    max-height .4s ease,
    margin .4s ease;
}

/* SHOW DESCRIPTION */

.service-item.active .service-item-copy p,
.service-item:hover .service-item-copy p {
  opacity: 1;
  max-height: 80px;
  transform: translateY(0);
}

/* ARROW */

.service-item-arrow {
  width: 44px;
  height: 44px;

  border-radius: 50%;

  background: #14637b;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;

  position: relative;
  z-index: 2;

  flex: 0 0 auto;

  transition: .4s ease;
}

.service-item:hover .service-item-arrow,
.service-item.active .service-item-arrow {
  transform: rotate(45deg) scale(1.06);
  background: #14637b;
}

/* =========================================================
   RIGHT VISUAL
========================================================= */

.services-expertise-right {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;
}

.services-ui-visual {
  position: relative;

  width: 100%;
  max-width: 650px;
  min-height: 500px;

  border-radius: 34px;

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, .32),
      rgba(255, 255, 255, .10));

  overflow: hidden;

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border: 1px solid rgba(255, 255, 255, .24);
}

/* WINDOW */

.services-ui-window {
  position: absolute;

  top: 60px;
  left: 78px;
  right: 78px;
  bottom: 78px;

  border: 2px solid rgba(220, 220, 220, .55);

  border-radius: 24px;
}

/* DOTS */

.services-ui-browser-dots {
  position: absolute;

  top: 78px;
  left: 110px;

  display: flex;
  gap: 10px;
}

.services-ui-browser-dots span {
  width: 11px;
  height: 11px;

  border-radius: 50%;

  background: #dddddd;
}

/* CARDS */

.services-ui-card {
  position: absolute;

  border: 2px solid rgba(216, 216, 216, .62);

  border-radius: 22px;

  background: rgba(255, 255, 255, .12);

  backdrop-filter: blur(10px);

  transition: .5s ease;
}

.services-ui-phone {
  left: 120px;
  top: 145px;

  width: 190px;
  height: 255px;

  border-radius: 28px;
}

.services-ui-top-card {
  right: 100px;
  top: 150px;

  width: 180px;
  height: 110px;
}

.services-ui-bottom-card {
  right: 100px;
  top: 285px;

  width: 180px;
  height: 140px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ACTIVE VISUAL EFFECT */

.service-item:hover~.services-expertise-right .services-ui-card,
.service-item.active~.services-expertise-right .services-ui-card {
  transform: translateY(-6px);
}

/* MINI LINES */

.services-ui-mini-line {
  height: 7px;

  border-radius: 999px;

  background: #dddddd;
}

.services-ui-mini-line.short {
  width: 48px;
}

.services-ui-mini-line.long {
  width: 92px;
}

.services-ui-mini-line.orange {
  background: #14637b;
}

.services-ui-phone .services-ui-mini-line {
  margin-left: 26px;
  margin-top: 68px;
}

.services-ui-phone .services-ui-mini-line.long {
  margin-top: 16px;
}

.services-ui-top-card .services-ui-mini-line {
  margin-left: 24px;
  margin-top: 30px;
}

.services-ui-top-card .services-ui-mini-line.long {
  margin-top: 12px;
}

/* BUTTON */

.services-ui-button {
  position: absolute;

  left: 28px;
  right: 28px;
  bottom: 24px;

  height: 32px;

  border-radius: 999px;

  background: #14637b;

  box-shadow: 0 10px 24px rgba(68, 134, 131, 0.35);
}

.services-ui-button::before {
  content: "";

  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  width: 40px;
  height: 5px;

  border-radius: 999px;

  background: #fff;
}

/* PLUS */

.services-ui-plus {
  color: #14637b;
  font-size: 28px;
}

/* CURSOR */

.services-ui-cursor {
  position: absolute;

  left: 270px;
  bottom: 150px;

  width: 0;
  height: 0;

  border-left: 18px solid #2e3640;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;

  transform: rotate(-30deg);
}

/* DOTS */

.services-ui-dot {
  position: absolute;

  border-radius: 50%;

  background: #d6d6d6;
}

.dot-1 {
  top: 160px;
  left: 76px;
  width: 4px;
  height: 4px;
}

.dot-2 {
  top: 254px;
  left: 244px;
  width: 10px;
  height: 10px;
}

.dot-3 {
  top: 188px;
  right: 186px;
  width: 4px;
  height: 4px;
}

.dot-4 {
  top: 276px;
  right: 74px;
  width: 5px;
  height: 5px;
}

/* WIRES */

.services-ui-wire {
  position: absolute;

  bottom: 126px;

  width: 84px;
  height: 54px;

  border-bottom: 2px solid rgba(205, 205, 205, .7);
}

.services-ui-wire-left {
  left: 0;

  border-right: 2px solid rgba(205, 205, 205, .7);

  border-bottom-right-radius: 26px;
}

.services-ui-wire-right {
  right: 0;

  border-left: 2px solid rgba(205, 205, 205, .7);

  border-bottom-left-radius: 26px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:1200px) {

  .services-expertise-top {
    grid-template-columns: 1fr;
  }

  .services-expertise-top-right {
    justify-content: flex-start;
  }

  .services-expertise-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width:768px) {

  .services-expertise-section {
    padding: 24px 16px 40px;
  }

  .services-expertise-title {
    font-size: clamp(42px, 11vw, 72px);
    letter-spacing: -2px;
  }

  .services-expertise-top-right p {
    font-size: 15px;
    line-height: 1.4;
  }

  .services-expertise-board {
    padding: 18px;
    border-radius: 24px;
  }

  .services-expertise-left {
    gap: 12px;
  }

  .service-item {
    grid-template-columns: 42px 1fr auto;
    gap: 12px;

    padding: 14px;
    border-radius: 20px;
  }

  .service-item-icon {
    width: 42px;
    height: 42px;

    font-size: 18px;
  }

  .service-item-copy h3 {
    font-size: 18px;
  }

  .service-item-copy p {
    font-size: 13px;
    max-width: 100%;
  }

  .service-item-arrow {
    width: 38px;
    height: 38px;

    font-size: 18px;
  }

  .services-ui-visual {
    min-height: 340px;
    border-radius: 20px;
  }

  .services-ui-window {
    top: 40px;
    left: 28px;
    right: 28px;
    bottom: 46px;
  }

  .services-ui-browser-dots {
    top: 54px;
    left: 50px;
  }

  .services-ui-phone {
    left: 48px;
    top: 104px;

    width: 132px;
    height: 180px;
  }

  .services-ui-top-card {
    right: 38px;
    top: 108px;

    width: 118px;
    height: 78px;
  }

  .services-ui-bottom-card {
    right: 38px;
    top: 206px;

    width: 118px;
    height: 90px;
  }

  .services-ui-button {
    left: 18px;
    right: 18px;
    bottom: 16px;

    height: 24px;
  }

  .services-ui-cursor {
    left: 165px;
    bottom: 100px;

    border-left-width: 14px;
    border-top-width: 10px;
    border-bottom-width: 10px;
  }
}

/* ===== DELIVERY PHILOSOPHY SECTION ===== */
.delivery-philosophy-section {
  position: relative;
  min-height: 100vh;

  overflow: hidden;
  padding: 10px 52px 50px;
  font-family: 'Outfit', sans-serif;
}

.delivery-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.delivery-glow-top {
  top: -90px;
  right: -120px;
  width: 900px;
  height: 300px;
  background: radial-gradient(ellipse at center,
      rgba(27, 174, 174, 0.82) 0%,
      rgba(44, 182, 182, 0.46) 28%,
      rgba(134, 255, 249, 0.18) 52%,
      rgba(255, 220, 182, .06) 68%,
      transparent 82%);
  filter: blur(62px);
  transform: rotate(22deg);
}

.delivery-glow-bottom {
  left: -120px;
  bottom: -130px;
  width: 560px;
  height: 220px;
  background: radial-gradient(ellipse at center,
      rgba(55, 167, 175, 0.652) 0%,
      rgba(64, 149, 152, 0.815) 46%,
      transparent 76%);
  filter: blur(58px);
}

.delivery-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1.4px solid #6b7882;
  border-radius: 999px;
  color: #69737c;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 26px;
}

.delivery-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 40px;
  min-height: calc(100vh - 286px);
}

.delivery-left {
  align-self: start;
  max-width: 1180px;
}

.delivery-title {
  margin: 0;
  color: #101822;
  font-size: clamp(72px, 6vw, 131px);
  line-height: .94;
  letter-spacing: -3.6px;
  font-weight: 300;
}

.delivery-title span {
  font-weight: 600;
}

.delivery-right {
  align-self: end;
  justify-self: end;
  max-width: 520px;
  padding-bottom: 34px;
}

.delivery-right p {
  margin: 0;
  color: #9da3a8;
  font-size: clamp(22px, 1.45vw, 32px);
  line-height: 1.08;
  font-weight: 300;
}

@media (max-width: 1200px) {
  .delivery-philosophy-section {
    padding: 120px 28px 70px;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 70px;
  }

  .delivery-right {
    justify-self: start;
    max-width: 700px;
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .delivery-philosophy-section {
    min-height: auto;
    padding: 70px 16px 54px;
  }

  .delivery-pill {
    min-height: 36px;
    padding: 0 12px;
    font-size: 14px;
    margin-bottom: 18px;
  }

  .delivery-title {
    font-size: clamp(42px, 11vw, 72px);
    line-height: .98;
    letter-spacing: -2px;
  }

  .delivery-right p {
    font-size: 18px;
    line-height: 1.16;
  }

  .delivery-glow-top {
    width: 520px;
    height: 180px;
    right: -120px;
    filter: blur(42px);
  }

  .delivery-glow-bottom {
    width: 320px;
    height: 150px;
    left: -80px;
    filter: blur(34px);
  }
}

/* ===== OUTCOMES SECTION ===== */
.outcomes-section {
  position: relative;
  min-height: 100vh;
  background: #efefed;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 120px 24px 80px;
  font-family: 'Outfit', sans-serif;
}

.outcomes-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(72px);
}

.outcomes-glow-left {
  width: 320px;
  height: 100%;
  left: -70px;
  top: 0;
  background: linear-gradient(180deg,
      rgba(63, 161, 162, 0.9) 0%,
      rgba(116, 226, 226, 0.38) 34%,
      rgba(246, 221, 192, 0) 72%);
  filter: blur(38px);
}

.outcomes-glow-right {
  width: 620px;
  height: 320px;
  right: -120px;
  bottom: -40px;
  background: radial-gradient(ellipse at center,
      rgba(19, 172, 180, 0.82) 0%,
      rgba(53, 172, 183, 0.42) 30%,
      rgba(255, 206, 153, .14) 54%,
      transparent 76%);
  transform: rotate(-18deg);
}

.outcomes-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1450px;
  text-align: center;
}

.outcomes-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1.4px solid #6f7c86;
  border-radius: 999px;
  color: #67727c;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 26px;
}

.outcomes-title {
  margin: 0 0 26px;
  color: #111822;
  font-size: clamp(64px, 7vw, 136px);
  line-height: .94;
  letter-spacing: -3.6px;
  font-weight: 300;
}

.outcomes-title span {
  font-weight: 600;
}

.outcomes-text {
  margin: 0;
  color: #202932;
  font-size: clamp(22px, 1.6vw, 34px);
  line-height: 1.08;
  font-weight: 300;
}

.outcomes-text span {
  color: #9aa1a8;
}

@media (max-width: 1200px) {
  .outcomes-section {
    padding: 90px 20px 70px;
  }

  .outcomes-title {
    letter-spacing: -2.4px;
  }
}

@media (max-width: 768px) {
  .outcomes-section {
    min-height: auto;
    padding: 70px 16px 52px;
  }

  .outcomes-pill {
    min-height: 36px;
    padding: 0 14px;
    font-size: 14px;
    margin-bottom: 18px;
  }

  .outcomes-title {
    font-size: clamp(42px, 11vw, 74px);
    line-height: .98;
    letter-spacing: -2px;
    margin-bottom: 18px;
  }

  .outcomes-text {
    font-size: 18px;
    line-height: 1.16;
  }

  .outcomes-glow-left {
    width: 180px;
    left: -50px;
  }

  .outcomes-glow-right {
    width: 360px;
    height: 220px;
    right: -80px;
    bottom: -20px;
    filter: blur(44px);
  }
}

/* ============================================================= */


/* ============================================================= */
/* PROCESS TIMELINE SECTION */
/* ============================================================= */

.process-timeline {
  position: relative;
  width: 100%;
  overflow: hidden;

  background: #05070b;

  padding: 0;

  isolation: isolate;
  perspective: 1200px;
  perspective-origin: center center;
}


.process-timeline .glow-background {
  position: fixed;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 900px;
  height: 900px;

  border-radius: 50%;

  z-index: 0;

  pointer-events: none;

  /* DARK PREMIUM GLOW */
  background:
    radial-gradient(circle,

      rgba(20, 99, 123, 0.55) 0%,

      rgba(20, 99, 123, 0.28) 22%,

      rgba(20, 99, 123, 0.14) 42%,

      rgba(20, 99, 123, 0.05) 62%,

      transparent 78%);

  filter: blur(95px);

  opacity: .9;
}

/* SCROLL AREA */
.scroll-wrapper {
  position: relative;
  z-index: 2;

  padding-top: 22vh;
  padding-bottom: 65vh;

  transform-style: preserve-3d;

  transition:
    transform .15s linear;
}

/* TITLE */
.title-container {
  width: min(1400px, 100%);
  margin: 0 auto 12vh auto;

  padding-inline: 50px;
  box-sizing: border-box;
}

.main-title {
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 1.02;

  color: #ffffff;

  margin: 0;

  transition:
    opacity .2s ease-out,
    transform .2s ease-out;
}


.Process-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1.4px solid #72808a;
  border-radius: 999px;
  color: #63707a;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 30px;
}


/* MAIN PROCESS AREA */
.process-container {
  position: relative;

  width: min(1300px, 100%);
  height: 1000px;

  margin: 0 auto;
}

/* SVG */
.process-container svg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  z-index: 1;
  overflow: visible;
}

/* BASE CURVE LINE */
.base-path {
  fill: none;

  stroke: rgba(255, 255, 255, 0.10);

  /* WIDTH वाढवली */
  stroke-width: 2.2px;
}

/* ACTIVE GLOWING CURVE */
.glowing-path {
  fill: none;

  stroke: #14a3b8;

  /* WIDTH वाढवली */
  stroke-width: 3px;

  stroke-linecap: round;
  stroke-linejoin: round;

  filter:
    drop-shadow(0 0 8px rgba(20, 163, 184, .9)) drop-shadow(0 0 18px rgba(20, 163, 184, .55));

  stroke-dasharray: 3200;
  stroke-dashoffset: 3200;

  transition: stroke-dashoffset .08s linear;
}

/* VERTICAL SMALL LINES */
.v-line {
  stroke: rgba(255, 255, 255, 0.18);

  stroke-width: 1.2px;
}

/* MOVING DOT */
.dot {
  position: absolute;

  width: 16px;
  height: 16px;

  border-radius: 50%;

  background: #ffffff;

  z-index: 4;

  /* PROPER GLOW */
  box-shadow:
    0 0 10px #fff,
    0 0 24px rgba(20, 163, 184, .95),
    0 0 42px rgba(20, 163, 184, .65);

  /* CURVE वर PERFECT चालेल */
  offset-path: path("M 510 50 C 150 130, 80 230, 265 290 C 450 350, 750 330, 810 440 C 870 550, 310 650, 265 730 C 220 810, 600 890, 810 900");

  offset-distance: 0%;

  /* IMPORTANT FIX */
  offset-rotate: 0deg;

  transform: translate(-50%, -50%);

  transition: offset-distance .08s linear;
}

/* TEXT LAYER */
.steps {
  position: absolute;
  inset: 0;
  z-index: 3;
}

/* STEP */
.step {
  position: absolute;

  width: 750px;

  opacity: 0;

  pointer-events: none;

  transition:
    opacity .5s cubic-bezier(.25, 1, .5, 1),
    transform .5s cubic-bezier(.25, 1, .5, 1);
}

/* EXACT POSITIONS */
.step-1 {
  top: 50px;
  left: 515px;
  transform: translateX(35px);
}

.step-2 {
  top: 190px;
  left: 166px;
  transform: translateX(35px);
}

.step-3 {
  top: 440px;
  left: 810px;
  transform: translateX(35px);
}

.step-4 {
  top: 724px;
  left: 265px;
  transform: translateX(35px);
}

.step-5 {
  top: 900px;
  left: 810px;
  transform: translateX(35px);
}

/* ACTIVE STEP */
.step.visible {
  opacity: 1;
  transform: translateX(35px) translateY(-10px);
}

/* META */
.step-meta {
  font-size: .85rem;

  color: rgba(255, 255, 255, .45);

  margin-bottom: 8px;

  display: flex;
  align-items: center;
  gap: 8px;
}

.step-meta::before {
  content: "⤖";

  color: #14a3b8;

  font-size: 1rem;
}

/* HEADING */
.step h3 {
  margin: 0;

  font-size: clamp(28px, 2.2vw, 42px);

  line-height: 1.08;

  font-weight: 400;

  letter-spacing: -1px;

  color: #ffffff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .scroll-wrapper {
    padding-top: 120px;
    padding-bottom: 280px;
  }

  .title-container {
    padding-inline: 20px;
  }

  .process-container {
    transform: scale(.82);
    transform-origin: top center;
    height: 820px;
  }
}

@media (max-width: 768px) {

  .main-title {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .process-container {
    transform: scale(.58);
    transform-origin: top left;

    width: 1300px;
    margin-left: 10px;

    height: 620px;
  }

  .scroll-wrapper {
    padding-bottom: 180px;
  }
}

/* =============================================================
   TABLET RESPONSIVE
============================================================= */

@media (max-width:1024px) {

  .process-timeline .glow-background {
    width: 700px;
    height: 700px;
  }

  .scroll-wrapper {
    padding-top: 120px;
    padding-bottom: 250px;
  }

  .title-container {
    padding-inline: 30px;
    margin-bottom: 80px;
  }

  .main-title {
    font-size: 64px;
    letter-spacing: -2px;
  }

  .process-container {
    transform: scale(.78);
    transform-origin: top center;
    height: 820px;
  }

  .step {
    width: 500px;
  }

  .step h3 {
    font-size: 32px;
  }
}


/* =============================================================
   MOBILE RESPONSIVE
============================================================= */

@media (max-width:768px) {

  .process-timeline {
    padding: 80px 0;
  }

  .process-timeline .glow-background {
    width: 420px;
    height: 420px;
    filter: blur(70px);
  }

  .scroll-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }

  .title-container {
    padding: 0 20px;
    margin-bottom: 60px;
  }

  .Process-pill {
    min-height: 34px;
    padding: 0 14px;
    font-size: 13px;
    margin-bottom: 20px;
  }

  .main-title {
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: -1px;
  }

  /* Hide SVG Timeline */
  .process-container svg,
  .dot {
    display: none;
  }

  .process-container {
    width: 100%;
    height: auto;
    transform: none;
    padding: 0 20px;
  }

  .steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .step {
    position: relative;
    width: 100%;
    left: auto !important;
    top: auto !important;

    opacity: 1;
    pointer-events: auto;

    transform: none !important;

    padding: 24px;

    border-radius: 24px;

    background:
      linear-gradient(180deg,
        rgba(255, 255, 255, .06),
        rgba(255, 255, 255, .03));

    border: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(10px);
  }

  .step.visible {
    transform: none !important;
  }

  .step-meta {
    font-size: 12px;
  }

  .step h3 {
    font-size: 24px;
    line-height: 1.25;
  }
}


/* =============================================================
   SMALL MOBILE
============================================================= */

@media (max-width:480px) {

  .title-container {
    padding: 0 16px;
  }

  .main-title {
    font-size: 32px;
  }

  .Process-pill {
    font-size: 12px;
    padding: 0 12px;
  }

  .step {
    padding: 20px;
    border-radius: 20px;
  }

  .step h3 {
    font-size: 20px;
  }

  .step-meta {
    font-size: 11px;
  }
}