* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

h2 {
  font-size: clamp(var(--h2-size-28), 4.5vw, var(--h2-size-40));
}



/* HERO SECTION */
.hero-sec {
  background: var(--bg-main);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: var(--space-60) 0;
  height: calc(100vh - 80px);
}

.hero-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 20px;
  align-items: center;
  position: relative;


}

.hero::before {
  content: '';
  position: absolute;
  left: -120px;
  top: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 86, 255, .10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left {
  animation: fadeUp .7s ease both;
}

.hero-left h1 {
  font-family: var(--heading-bold-font-family);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.hero-left p {
  font-size: var(--p-size-18);
  font-weight: var(--font-400);
  line-height: 28px;
  letter-spacing: 5%;
  color: var(--text-primary);
  max-width: 630px;
  margin-bottom: 24px;
}

.hero-left .tagline {
  font-size: var(--p-size-16);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 36px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}


.hero-left .trust {
  font-family: 'Poppins-Regular';
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 5%;
  font-weight: var(--font-400);
  color: var(--text-primary);
  max-width: 700px;
}

.hero-card {
  background: var(--bg-light);
  border-radius: 28px;
  /* box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1); */
  animation: fadeUp .7s .18s ease both;
  position: relative;
  overflow: hidden;
  max-width: 700px;
  border: 1px solid #E2E2E2;

}

.card-head {
  font-size: 24px;
  font-family: var(--heading-font-family);
  font-weight: var(--font-700);
  line-height: 140%;
  padding: 24px 24px 8px 24px;
  color: var(--text-primary);
  /* background-color: var(--text-primary); */
  margin-bottom: var(--space-24);
}

.card-head h2 {
  font-size: var(--h3-size-24);
  font-family: var(--heading-bold-font-family);
  line-height: 160%;
  text-align: center;
}

.card-head p {
  font-size: var(--p-size-16);
  font-family: var(--para-font-family);
  font-weight: var(--font-400);
}


.hero-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(26, 86, 255, .08) 0%, transparent 70%);
  pointer-events: none;
}

.feature-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px 0;
  border: 1px solid #E2E2E2;
  border-radius: 16px;
  margin-left: 32px;
  margin-right: 32px;
  margin-bottom: 12px;
  padding: 18px;
  transition: transform .2s;
  gap: var(--space-24);
  background: #ffffff;
}

.feature-item:last-child {
  margin-bottom: 32px;
}

.feature-item .detail {
  font-family: var(--para-font-family);
  font-size: var(--p-size-16);
  font-weight: var(--font-500);
  line-height: 1.1;
  color: var(--text-primary);
}

.feature-item .detail .in {
  color: rgb(8, 143, 13);
  font-size: 20px;
}

.feature-item .detail .out {
  color: rgb(255, 136, 0);
  font-size: 20px;
}

.feature-item .detail .net {
  color: var(--danger-color);
  font-size: 20px;
}

.feature-item .detail h3 {
  font-size: var(--p-size-18);
  font-family: var(--para-font-family);
  margin-bottom: var(--space-8);
}

.feature-item .detail p {
  font-size: var(--p-size-14);
}

.feature-item .detail-tag {
  font-family: var(--para-font-family);
  font-size: var(--p-size-14);
  font-weight: var(--font-400);
  line-height: 110%;
  color: rgb(255, 136, 0);
  border: 1px solid #ff6a00;
  padding: 4px 10px;
  border-radius: var(--space-32);
}

.feature-item .detail-tag.done {
  color: rgb(8, 143, 13);
  border: 1px solid rgb(8, 143, 13);
}

.feature-item .detail-tag.ready {
  color: var(--danger-color);
  border: 1px solid #ff4400;
}

.feature-item:hover {
  transform: translateX(4px);
}

.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 30px;
  background: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 22, 35, .25);
}

.feat-icon svg {
  width: 24px;
  height: 24px;
}

.feat-text h3 {
  font-size: var(--p-size-18);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.feat-text p {
  font-size: .875rem;
  line-height: 1.6;
  color: var(--text-body);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}




@media (max-width:1280px) {
  .card-head {
    font-size: var(--p-size-18);
  }

  .hero-card p {
    font-size: var(--p-size-14);
  }

  .hero-card p {
    margin-bottom: 6px;
  }

  .hero-sec {
    height: calc(100vh - 16px);
  }
}


@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
    gap: 32px;
  }

  .hero::before {
    display: none;
  }

  .hero-left {
    text-align: center;
  }

  .hero-left p {
    margin: 0 auto 18px;
  }

  .hero-left .trust {
    min-width: unset;
  }

  .btn-group {
    justify-content: center;
  }

  .hero-sec {
    height: auto;

  }

  .hero-card {
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .section-header {
    flex-direction: column;
    gap: var(--space-16);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width:600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .hero-left h1 {
    font-size: 22px;
  }

  .card-head {
    font-size: 18px;
    padding: 18px 16px 8px;
  }

  .hero-card p {
    padding: 0 16px 18px;
    font-size: var(--p-size-14);
  }
}



/* activity section */

.activity-sec {
  margin: 0 auto;
  padding: var(--space-85) 0;
  background: var(--bg-light);
}


.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-64);
  gap: var(--space-48);
}

.section-header-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  font-family: var(--para-font-family);
  font-size: var(--p-size-14);
  font-weight: var(--font-600);
  color: var(--primary-color);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-eyebrow .dash {
  width: 18px;
  height: 2px;
  background: var(--primary-color);
  border-radius: var(--radius-6);
  display: inline-block;
}

.section-title {
  font-family: var(--heading-bold-font-family);
  font-size: clamp(var(--h2-size-28), 5vw, var(--h2-size-40));
  font-weight: var(--font-700);
  color: var(--text-primary);
  line-height: var(--leading-tight);
}

.section-header span {
  color: var(--primary-color);
}

.section-desc {
  font-family: var(--para-font-family);
  font-size: var(--p-size-18);
  font-weight: var(--font-400);
  color: var(--text-primary);
  line-height: var(--leading-normal);
  margin-top: 2px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-20);
}

/* ── SINGLE CARD ── */
.card {
  position: relative;
  border-radius: var(--radius-16);
  overflow: hidden;
  height: 480px;
  cursor: default;
}

.card__img {
  position: absolute;
  inset: 0;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  transition: background 0.4s ease;
}

.card__topic {
  position: absolute;
  bottom: var(--space-24);
  left: var(--space-24);
  right: var(--space-24);
  z-index: 2;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.card__num {
  font-family: var(--heading-bold-font-family);
  font-size: 12px;
  font-weight: var(--font-700);
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-8);
}

.card__topic-title {
  font-family: var(--heading-bold-font-family);
  font-size: 22px;
  font-weight: var(--font-800);
  color: #fff;
  line-height: var(--leading-tight);
  letter-spacing: -0.01em;
}

.card__topic-sub {
  font-size: var(--p-size-13, 13px);
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  line-height: var(--leading-normal);
}

.card__badge {
  position: absolute;
  top: var(--space-20);
  left: var(--space-20);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-9999);
  font-size: 11px;
  font-weight: var(--font-700);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  color: #fff;
  transition: opacity 0.3s ease;
}

.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.card--1 .badge__dot {
  background: #60a5fa;
}

.card--2 .badge__dot {
  background: #a78bfa;
}

.card--3 .badge__dot {
  background: #4ade80;
}

.card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-24);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.content__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

.content__list li {
  display: flex;
  align-items: center;
  gap: var(--space-10, 10px);
  font-size: var(--p-size-14);
  color: rgba(255, 255, 255, 0.9);
  font-weight: var(--font-500);
  line-height: var(--leading-normal);
}

.content__list .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.card--1 .content__list .dot {
  background: #60a5fa;
}

.card--2 .content__list .dot {
  background: #a78bfa;
}

.card--3 .content__list .dot {
  background: #4ade80;
}

.content__note {
  font-size: var(--p-size-14);
  color: rgb(255, 255, 255);
  line-height: var(--leading-relaxed);
  padding-top: var(--space-12);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-style: italic;
}

.card:hover .card__img {
  filter: blur(3px) brightness(0.5);
  transform: scale(1.04);
}

.card:hover .card__img::after {
  background: rgba(0, 0, 0, 0.65);
}

.card:hover .card__topic {
  opacity: 0;
  transform: translateY(8px);
}

/* Show content on hover */
.card:hover .card__content {
  opacity: 1;
  transform: translateY(0);
}

/* Badge stays visible always */
.card:hover .card__badge {
  opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1023px) {
  .heading {
    font-size: var(--h2-size-32);
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .cards .card:last-child {
    grid-column: span 2;
    height: 360px;
  }
}

@media (max-width: 900px) {
  .section-header {
    flex-direction: column;
    gap: var(--space-16);
  }

}

@media (max-width: 767px) {
  .section {
    padding: var(--space-48) var(--space-16);
  }

  .heading {
    font-size: var(--h2-size-28);
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-24);
    margin-bottom: var(--space-32);
  }

  .header__right {
    max-width: 100%;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .cards .card:last-child {
    grid-column: span 1;
    height: 420px;
  }

  .card {
    height: 420px;
  }

  .card__topic {
    opacity: 0;
  }

  .card__content {
    opacity: 1;
    transform: translateY(0);
  }

  .card__img {
    filter: blur(3px) brightness(0.5);
  }

  .card__img::after {
    background: rgba(0, 0, 0, 0.65);
  }
}



.track-sec {
  margin: 0 auto;
  padding: var(--space-85) 0;
}

.main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-60);
  align-items: start;
}

.left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.track-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-24);
  padding: var(--space-32) 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  transition: background 0.2s;
  cursor: default;
}

.track-row:first-child {
  padding-top: 0;
}

.track-row:last-child {
  border-bottom: none;
}

/* .track-row::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 0 2px 2px 0;
  background: var(--row-color, var(--primary-color));
  opacity: 0;
  transition: opacity 0.25s;
} */

.track-row:hover::before {
  opacity: 1;
}

.track-row__num {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  padding-top: 3px;
}

.num-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  background: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-bold-font-family);
  font-size: var(--h3-size-24);
  font-weight: var(--font-700);
  color: var(--text-primary);
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.track-row:hover .num-circle {
  background: var(--row-color, var(--primary-color));
  border-color: var(--row-color, var(--primary-color));
  color: #fff;
}

.num-line {
  width: 1px;
  flex: 1;
  background: var(--color-border);
  min-height: 20px;
}

.track-row:hover .num-line {
  background: var(--row-color, var(--primary-color));
  border-color: var(--row-color, var(--primary-color));
  color: #fff;
}

/* .track-row:last-child .num-line {
  display: none;
} */

.track-row__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.track-row__title {
  font-family: var(--para-font-family);
  font-size: var(--h3-size-24);
  font-weight: var(--font-600);
  color: var(--text-primary);
  letter-spacing: -0.01em;
  transition: color 0.25s;
}

.track-row:hover .track-row__title {
  color: var(--row-color, var(--primary-color));
}

.track-row__desc {
  font-size: var(--p-size-16);
  color: var(--text-primary);
  line-height: var(--leading-relaxed);
}

/* Tags */
.track-row__tags {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.tag {
  font-size: var(--p-size-13);
  font-weight: var(--font-400);
  padding: 4px 10px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

/* 
.tag.blue {
  background: var(--bg-light);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.tag.orange {
  background: var(--bg-light);
  color: #ca5d00;
  border: 1px solid #ca5d00
}

.tag.green {
  background: var(--bg-light);
  color: var(--text-status-green);
  border: 1px solid var(--text-status-green);
}

.tag.red {
  background: var(--bg-light);
  color: var(--text-status-red);
  border: 1px solid var(--text-status-red);
}

.track-row:hover .tag {
  background: var(--tag-bg);
  color: var(--tag-color);
  border-color: var(--tag-border);
} */

/* Per row colors */
.row--1 {
  --row-color: var(--success-color);
  --tag-bg: #ecf3ec;
  --tag-color: var(--success-color);
  --tag-border: #b6d9bb;
}

.row--2 {
  --row-color: var(--danger-color);
  --tag-bg: #fff0e8;
  --tag-color: var(--danger-color);
  --tag-border: #fbc9a8;
}

.row--3 {
  --row-color: var(--primary-color);
  --tag-bg: var(--color-active-bg);
  --tag-color: var(--primary-color);
  --tag-border: #c5d8fc;
}

.row--4 {
  --row-color: var(--purple-color);
  --tag-bg: #f0eaff;
  --tag-color: var(--purple-color);
  --tag-border: #d4b8fc;
}

.row--5 {
  --row-color: #0ea5e9;
  --tag-bg: #e0f2fe;
  --tag-color: #0369a1;
  --tag-border: #bae6fd;
}

.row--6 {
  --row-color: #f59e0b;
  --tag-bg: #fef9ec;
  --tag-color: #b45309;
  --tag-border: #fde68a;
}

.right {
  position: sticky;
  top: 40px;
}

.sticky-card {
  background: var(--bg-main);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-20);
  overflow: hidden;
  box-shadow: var(--shadow-panel);
}

.sticky-card__img {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.sticky-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sticky-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
}

.sticky-card__img-badge {
  position: absolute;
  top: var(--space-16);
  left: var(--space-16);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--space-8);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-9999);
  padding: 6px 12px;
}

.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: blink 1.8s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}

.badge__text {
  font-size: 11px;
  font-weight: var(--font-600);
  color: #fff;
  letter-spacing: 0.03em;
}

.sticky-card__img-label {
  position: absolute;
  bottom: var(--space-16);
  left: var(--space-16);
  right: var(--space-16);
  z-index: 2;
  font-family: var(--heading-bold-font-family);
  font-size: 20px;
  font-weight: var(--font-800);
  color: #fff;
  line-height: var(--leading-tight);
  letter-spacing: -0.01em;
}

.sticky-card__info {
  padding: var(--space-24);
  display: none;
  flex-direction: column;
  gap: var(--space-16);
}

.info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid var(--color-border);
}

.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-row__label {
  font-size: var(--p-size-12);
  color: var(--text-primary);
  font-weight: var(--font-500);
}

.info-row__value {
  font-family: var(--heading-bold-font-family);
  font-size: var(--p-size-14);
  font-weight: var(--font-700);
  color: var(--text-nav);
}

.info-row__pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: var(--font-600);
  padding: 3px 10px;
  border-radius: var(--radius-9999);
}

.pill--green {
  background: #ecf3ec;
  color: var(--success-color);
}

.pill--blue {
  background: var(--color-active-bg);
  color: var(--primary-color);
}

.pill__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.pill--green .pill__dot {
  background: var(--success-color);
}

.pill--blue .pill__dot {
  background: var(--primary-color);
}

@media (max-width: 1023px) {
  .heading {
    font-size: var(--h2-size-32);
  }

  .main {
    grid-template-columns: 1fr 360px;
    gap: var(--space-32);
  }
}

@media (max-width: 767px) {
  .section {
    padding: var(--space-48) var(--space-16);
  }

  .heading {
    font-size: var(--h2-size-28);
  }

  .header {
    margin-bottom: var(--space-32);
  }

  .main {
    grid-template-columns: 1fr;
  }

  .right {
    position: static;
  }

  .sticky-card {
    margin-bottom: var(--space-32);
  }

  .track-row::before {
    left: -16px;
  }
}



.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .06s;
}

.d2 {
  transition-delay: .12s;
}

.d3 {
  transition-delay: .18s;
}

.d4 {
  transition-delay: .24s;
}

.d5 {
  transition-delay: .30s;
}

.d6 {
  transition-delay: .36s;
}

/* WHY SECTION */

.why-sec {
  padding: var(--space-85) 0;
  background: var(--bg-main);
}

.why-layout {
  margin-top: 60px;

  display: grid;
  grid-template-columns: 1fr 450px 1fr;
  gap: 32px;

  align-items: center;
}

.why-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-center {
  position: relative;
}

.why-center::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: #0065f2;
  opacity: .08;
  filter: blur(120px);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.why-monitor {
  text-align: center;
}

.why-monitor img {
  width: 100%;
  max-width: 650px;
  display: block;
  margin: auto;
}

/* CARD */

.why-card {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  border-radius: 16px;

  padding: 5px 0;

  display: flex;
  align-items: flex-start;
  gap: 16px;

  transition: .3s ease;
}

.why-card:hover {
  transform: translateY(-4px);

  border-color: #bfdbfe;
}

.why-card-icon {
  width: 42px;
  height: 42px;

  flex-shrink: 0;
  border: 2px dotted rgb(86, 8, 8);
  border-radius: 30px;
  background: var(--bg-dark);

  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card-body {
  flex: 1;
}

.why-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.why-card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* RESPONSIVE */

@media(max-width:1150px) {

  .why-layout {
    grid-template-columns: 1fr;
  }

  .why-center {
    order: 1;
  }

  .why-side:first-child {
    order: 2;
  }

  .why-side:last-child {
    order: 3;
  }

  .why-monitor img {
    max-width: 700px;
  }
}

@media(max-width:768px) {
  .why-layout {
    gap: 20px;
    margin-top: 40px;
  }

  .why-card {
    padding: 18px;
  }

  .why-card-title {
    font-size: 18px;
  }

  .why-card-desc {
    font-size: 14px;
  }
}



.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .06s;
}

.d2 {
  transition-delay: .12s;
}

.d3 {
  transition-delay: .18s;
}

.d4 {
  transition-delay: .24s;
}

.d5 {
  transition-delay: .30s;
}

.d6 {
  transition-delay: .36s;
}

.d7 {
  transition-delay: .42s;
}

.d8 {
  transition-delay: .48s;
}

.decisions-sec {
  padding: var(--space-85) 0;
  background: var(--bg-light);
}


.decisions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-12);
}

.decision-card {
  /* background: var(--bg-main); */
  /* border: 1px solid var(--color-border); */
  border-radius: var(--radius-8);
  padding: var(--space-20) var(--space-24);
  display: flex;
  align-items: flex-start;
  gap: var(--space-16);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
  cursor: default;
}

.decision-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-blue);
  background: var(--receivable-bg);
  /* box-shadow: var(--shadow-panel); */
  /* border: 0.1px solid rgb(237, 247, 255); */
}

.decision-card:hover .decision-num {
  background: var(--bg-main);
  color: var(--text-primary);
  border-color: var(--text-status-blue);
}

.decision-card:hover .decision-q {
  color: var(--text-status-blue);
}

.decision-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--text-status-blue);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: var(--p-size-18);
  font-weight: 700;
  color: var(--bg-main);
  flex-shrink: 0;
  margin-top: 1px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.decision-q {
  font-size: var(--p-size-18);
  font-weight: 500;
  color: var(--text-nav);
  line-height: 1.55;
  padding-top: 4px;
  transition: color .2s ease;
}

@media(max-width:1024px) {

  .decisions-header {
    grid-template-columns: 1fr;
    gap: var(--space-16);
  }
}

@media(max-width:640px) {

  .decisions-grid {
    grid-template-columns: 1fr;
  }

  .decisions-title {
    font-size: clamp(22px, 5vw, 28px);
  }
}




/* ── FAQ SECTION ── */
.faq-section {
  padding: var(--space-85) 0;
  background: var(--bg-main);
}

.faq-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-24);
  margin-bottom: var(--space-48);
  flex-wrap: wrap;
}

.section-heading {
  font-family: var(--heading-bold-font-family);
  font-size: clamp(var(--h2-size-28), 5vw, var(--h2-size-40));
  font-weight: var(--font-800);
  color: var(--text-nav);
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-8);
}

.faq-header__left {
  flex: 1;
}

.section-eyebrow__line {
  width: 24px;
  height: 1.5px;
  background: var(--primary-color);
}

.section-eyebrow__text {
  font-size: var(--p-size-12);
  font-weight: var(--font-600);
  color: var(--primary-color);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collapse-all-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  cursor: pointer;
  color: var(--primary-color);
  font-family: var(--para-font-family);
  font-size: var(--p-size-14);
  font-weight: var(--font-600);
  padding: 8px 14px;
  border-radius: var(--radius-9999);
  border: 1.5px solid var(--color-border);
  background: var(--bg-main);
  user-select: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
  margin-top: 6px;
}

.collapse-all-btn:hover {
  background: #eaf0ff;
}

.collapse-all-btn .btn-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  font-weight: var(--font-700);
}


.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-item {
  background: var(--bg-main);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-12);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 101, 242, 0.08);
}

.faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-24);
  padding: var(--space-20) var(--space-24);
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-family: var(--para-font-family);
  font-size: clamp(var(--p-size-18), 2.5vw, 22px);
  font-weight: var(--font-500);
  color: var(--text-primary);
  line-height: var(--leading-tight);
  letter-spacing: -0.38px;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 var(--space-24);
}

.faq-answer p {
  font-size: var(--p-size-16);
  color: var(--text-primary);
  line-height: var(--leading-relaxed);
  padding-bottom: var(--space-20);
  max-width: 1000px;
}

.faq-item input[type="checkbox"]:checked~.faq-label .faq-icon {
  transform: rotate(180deg);
}

.faq-item input[type="checkbox"]:checked~.faq-label .faq-icon svg {
  stroke: var(--primary-color);
}

.faq-item input[type="checkbox"]:checked~.faq-answer {
  max-height: 300px;
  padding-top: 0;
}

#faq1:checked~.faq-label .faq-icon {
  transform: rotate(180deg);
}

#faq1:checked~.faq-answer {
  max-height: 300px;
}



@media (max-width: 767px) {

  .faq-label {
    padding: var(--space-16);
    gap: var(--space-12);
  }

  .faq-answer {
    padding: 0 var(--space-16);
  }

  .faq-item input[type="checkbox"]:checked~.faq-answer {
    padding-top: 0;
  }
}

@media (max-width: 600px) {
  .faq-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-16);
  }
}

/* FINAL CTA*/
.cta-sec {
  background: var(--bg-light);
  padding: 0 0 var(--space-64);
}

.cta-banner {
  background: var(--bg-dark);
  border-radius: var(--radius-24);
  padding: 72px var(--space-64);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-48);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-glow-r {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 101, 242, .2) 0%, transparent 60%);
  pointer-events: none;
}

.cta-glow-l {
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(ellipse, rgba(101, 0, 242, .09) 0%, transparent 60%);
  pointer-events: none;
}

.cta-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.cta-eyebrow {
  color: rgba(255, 255, 255, .4);
}

.cta-eyebrow .eyebrow-dash {
  background: rgba(255, 255, 255, .3);
}

.cta-title {
  font-family: var(--heading-font);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.022em;
}

.cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.75;
  max-width: 520px;
}

.cta-btns {
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}