body {
  background: var(--bs-primary, #000);
  overflow-x: hidden;
}

/* ── Animated blobs ── */

.blob-container {
  pointer-events: none;
}

/* ── HERO ── */

.services-hero {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  position: relative;
}

.hero-eyebrow {
  font-family: 'Advent Pro', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bs-cyan);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp .7s .2s forwards;
}

.services-hero h1 {
  font-family: 'Advent Pro', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .7s .35s forwards;
}

.services-hero h1 .dot {
  color: var(--bs-cyan);
}

.services-hero p {
  font-family: 'Advent Pro', sans-serif;
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  font-weight: 400;
  color: rgba(255,255,255,.58);
  max-width: 580px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp .7s .5s forwards;
}

/* ── SCROLL CUE ── */

.scroll-cue {
  margin-top: 40px;
  opacity: 0;
  animation: fadeUp .6s .75s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.3);
  font-family: 'Advent Pro', sans-serif;
  font-size: .75rem;
  letter-spacing: .15em;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--bs-cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: .3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
}

/* ── SECTION LABEL ── */

.section-label {
  font-family: 'Advent Pro', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bs-cyan);
  margin-bottom: 12px;
}

/* ── MAIN SERVICE CARDS ── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 0 60px;
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
}

.service-card.visible {
  animation: cardReveal .6s ease forwards;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14,186,224,.4);
  box-shadow: 0 20px 60px rgba(14,186,224,.12), 0 0 0 1px rgba(14,186,224,.15);
}

/* glow line top */

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--bs-cyan), transparent);
  opacity: 0;
  transition: opacity .35s;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.04);
}

.service-card-img-wrap {
  overflow: hidden;
  position: relative;
}

/* overlay gradient on image */

.service-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.7));
}

.service-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(14,186,224,.12);
  border: 1px solid rgba(14,186,224,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
  transition: background .3s;
}

.service-card:hover .service-icon {
  background: rgba(14,186,224,.22);
}

.service-card-title {
  font-family: 'Advent Pro', sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 10px;
}

.service-card-text {
  font-family: 'Geist', sans-serif;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  flex: 1;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-family: 'Advent Pro', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--bs-cyan);
  text-decoration: none;
  letter-spacing: .04em;
  transition: gap .25s;
}

.service-card-cta:hover {
  gap: 14px;
  color: var(--bs-cyan);
}

.service-card-cta svg {
  transition: transform .25s;
}

.service-card-cta:hover svg {
  transform: translateX(4px);
}

/* ── FEATURE STRIP ── */

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .feature-strip {
    grid-template-columns: 1fr;
  }
}

.feature-cell {
  background: rgba(255,255,255,.03);
  padding: 32px 24px;
  text-align: center;
  transition: background .3s;
}

.feature-cell:hover {
  background: rgba(14,186,224,.07);
}

.feature-num {
  font-family: 'Advent Pro', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--bs-cyan);
  line-height: 1;
  margin-bottom: 6px;
}

.feature-label {
  font-family: 'Advent Pro', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── PROCESS SECTION ── */

.process-section {
  padding: 80px 0;
}

.process-title {
  font-family: 'Advent Pro', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 12px;
}

.process-sub {
  font-family: 'Geist', sans-serif;
  font-size: .95rem;
  color: rgba(255,255,255,.45);
  max-width: 480px;
  line-height: 1.7;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* vertical line */

.process-steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 30px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--bs-cyan), rgba(14,186,224,0));
}

.process-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 30px 0;
  position: relative;
}

.step-number {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(14,186,224,.12);
  border: 1px solid rgba(14,186,224,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Advent Pro', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--bs-cyan);
  position: relative;
  z-index: 1;
  transition: background .3s, border-color .3s;
}

.process-step:hover .step-number {
  background: rgba(14,186,224,.25);
  border-color: var(--bs-cyan);
}

.step-content h4 {
  font-family: 'Advent Pro', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 6px;
}

.step-content p {
  font-family: 'Geist', sans-serif;
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  margin: 0;
}

/* ── CTA BANNER ── */

.cta-banner {
  background: rgba(14,186,224,.07);
  border: 1px solid rgba(14,186,224,.2);
  border-radius: 28px;
  padding: 70px 48px;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14,186,224,.18), transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: 'Advent Pro', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 14px;
  position: relative;
}

.cta-banner p {
  font-family: 'Geist', sans-serif;
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
}

.cta-banner .btn-cyan {
  background: var(--bs-cyan);
  color: #000;
  border: none;
  border-radius: 14px;
  padding: 14px 36px;
  font-family: 'Advent Pro', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  transition: transform .25s, box-shadow .25s;
  position: relative;
}

.cta-banner .btn-cyan:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(14,186,224,.35);
  color: #000;
}

.cta-banner .btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  padding: 14px 36px;
  font-family: 'Advent Pro', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .06em;
  transition: border-color .25s, color .25s, transform .25s;
}

.cta-banner .btn-ghost:hover {
  border-color: rgba(255,255,255,.5);
  color: #fff;
  transform: translateY(-3px);
}

/* ── ANIMATIONS ── */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 {
  animation-delay: .1s !important;
}

.delay-2 {
  animation-delay: .22s !important;
}

.delay-3 {
  animation-delay: .34s !important;
}

/* Divider */

.nua-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.12), transparent);
  margin: 60px 0;
}

/* section subtitle */

.section-subtitle {
  font-family: 'Geist', sans-serif;
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* hero-section override for this page */

.hero-section {
  display: none;
}

