/* =========================
   SERVICES ALT — ISOLATED ALTERNATING LAYOUT
   ========================= */

.services-alt {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.services-alt__shell {
  width: min(1380px, calc(100% - 64px));
  margin: 0 auto;
}

.services-alt__intro {
  max-width: 880px;
  margin-bottom: 72px;
}

.services-alt__kicker {
  display: inline-block;
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  color: #8e98a3;
}

.services-alt__title {
  margin: 0 0 20px;
  max-width: 11.5ch;
  font-size: clamp(2.5rem, 4.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 600;
  color: #192332;
}

.services-alt__text {
  max-width: 62ch;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  color: #5c6875;
}

.services-alt__list {
  display: grid;
  gap: 84px;
}

.services-alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 92px);
  align-items: center;
}

.services-alt-row--reverse .services-alt-row__media {
  order: 2;
}

.services-alt-row--reverse .services-alt-row__content {
  order: 1;
}

.services-alt-row__media {
  display: flex;
  align-items: center;
}

.services-alt-row--reverse .services-alt-row__media {
  justify-content: flex-end;
}

.services-alt-row__image {
  width: 100%;
  max-width: 760px;
  height: clamp(320px, 32vw, 430px);
  display: block;
  object-fit: cover;
  border-radius: 40px;
  background: #dfe5eb;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.8s cubic-bezier(.16,1,.3,1);
}

.services-alt-row:hover .services-alt-row__image {
  transform: scale(1.02);
}

.services-alt-row__content {
  max-width: 640px;
}

.services-alt-row__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin-bottom: 24px;
  border-radius: 22px;
  background: #192332;
  color: #ffffff;
}

.services-alt-row__icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.services-alt-row__heading {
  margin: 0 0 20px;
  font-size: clamp(2.2rem, 3.3vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 600;
  color: #192332;
}

.services-alt-row__body {
  max-width: 34ch;
  margin: 0 0 30px;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.72;
  color: #5f6f86;
}

.services-alt-row__points {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 16px 34px;
}

.services-alt-row__points li {
  position: relative;
  padding-left: 32px;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 600;
  color: #192332;
}

.services-alt-row__points li::before {

  content: "";

  position: absolute;
  left: 0;
  top: 0.78em;

  width: 18px;
  height: 18px;

  transform: translateY(-50%);

  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23091e31' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E")
    center / contain no-repeat;

}

.services-alt-row__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #192332;
  text-decoration: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.services-alt-row__link:hover {
  transform: translateX(4px);
  opacity: 0.8;
}

@media (max-width: 1180px) {
  .services-alt__shell {
    width: min(1380px, calc(100% - 48px));
  }

  .services-alt-row {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .services-alt-row--reverse .services-alt-row__media,
  .services-alt-row--reverse .services-alt-row__content {
    order: initial;
  }

  .services-alt-row__media,
  .services-alt-row--reverse .services-alt-row__media {
    justify-content: flex-start;
  }

  .services-alt-row__content,
  .services-alt-row__image {
    max-width: none;
  }

  .services-alt-row__body {
    max-width: 60ch;
  }
}

@media (max-width: 768px) {
  .services-alt {
    padding: 90px 0;
  }

  .services-alt__shell {
    width: calc(100% - 32px);
  }

  .services-alt__intro {
    margin-bottom: 48px;
  }

  .services-alt__list {
    gap: 56px;
  }

  .services-alt-row__image {
    height: 280px;
    border-radius: 28px;
  }

  .services-alt-row__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 18px;
  }

  .services-alt-row__icon svg {
    width: 24px;
    height: 24px;
  }

  .services-alt-row__points {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services-alt-row__body {
    max-width: none;
  }
}
/* =========================
   SERVICE PAGE TEMPLATE
   ========================= */

.service-page-hero {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
  background: #192332;
}

.service-page-hero__bg-shape {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.14;
  background-repeat: no-repeat;
  background-position: right 2% center;
  background-size: 980px auto;
  background-image: url("data:image/svg+xml,%3Csvg width='920' height='620' viewBox='0 0 920 620' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23bcc3cb' stroke-width='1.2'%3E%3Cpath d='M300 110L480 210L480 410L300 510L120 410L120 210L300 110Z'/%3E%3Cpath d='M480 210L660 110L840 210L840 410L660 510L480 410'/%3E%3Cpath d='M300 110L300 310L480 410'/%3E%3Cpath d='M660 110L480 210L300 110'/%3E%3Cpath d='M840 210L660 310L660 510'/%3E%3Cpath d='M300 510L480 410L660 510'/%3E%3C/g%3E%3C/svg%3E");
  animation: servicePageShapeFloat 18s ease-in-out infinite;
}

.service-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 22%, rgba(47,111,237,0.08), transparent 22%),
    radial-gradient(circle at 18% 80%, rgba(188,195,203,0.14), transparent 28%);
}

.service-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: none;
}

@keyframes servicePageShapeFloat {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(8px) translateY(-6px);
  }
}

.service-page-hero__grid {
  position: relative;
  z-index: 2;
  display: block;
}

.service-page-hero__content {
  max-width: 860px;
}

.service-page-hero__content h1 {
  max-width: 30ch;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 4.2vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: #ffffff;
}
.service-page-hero__intro {
  max-width: 720px;
  margin-bottom: 34px;
    font-size: 1.15rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.62);
}

.service-page-overview {
  padding: 120px 0 40px;
  background: #ffffff;
}


.service-page-overview__content h2 {
  max-width: 30ch;
  margin-bottom: 22px;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.08;
  color: #192332;
}

.service-page-overview__content p + p {
  margin-top: 18px;
}

.service-page-side-card {
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(47,111,237,0.06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
  border: 1px solid rgba(218, 225, 232, 0.95);
  box-shadow:
    0 14px 36px #192332,
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.service-page-overview,
.service-page-features,
.service-page-visual {
  position: relative;
}

.service-page-side-card__label {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #192332;
}

.service-page-side-card__list {
  padding-left: 18px;
  color: #626b76;
  line-height: 1.9;
}

.service-page-visual {
  padding: 0 0 120px;
  background: #ffffff;
}

.service-page-visual__image-wrap {
  border-radius: 0;
  overflow: hidden;
  background: #dfe5eb;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

.service-page-visual__image-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.service-page-features {
  padding: 120px 0 140px;
  background: linear-gradient(180deg, #fbfbfb 0%, #f6f7f9 100%);
}

.service-page-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-page-feature-card {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(218, 225, 232, 0.95);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.service-page-feature-card h3 {
  margin-bottom: 14px;
  color: #192332;
}

.service-page-feature-card p {
  margin: 0;
  color: #626b76;
}

.service-page-overview,
.service-page-features,
.service-page-visual {
  position: relative;
}


@media (max-width: 1180px) {
  .service-page-hero {
    padding: 150px 0 100px;
  }

  .service-page-hero__grid,
  .service-page-overview__grid,
  .service-page-features__grid {
    grid-template-columns: 1fr;
  }

  .service-page-hero__image-wrap img,
  .service-page-visual__image-wrap img {
    min-height: auto;
    height: 420px;
  }

  .service-page-hero__bg-shape {
    background-size: 720px auto;
    opacity: 0.08;
  }
}

@media (max-width: 640px) {
  .service-page-hero,
  .service-page-overview,
  .service-page-features {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .service-page-visual {
    padding-bottom: 90px;
  }

  .service-page-hero__content h1 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    max-width: 100%;
  }

  .service-page-overview__content h2 {
    font-size: clamp(1.6rem, 6vw, 2rem);
    max-width: 100%;
  }

  .service-page-overview__content p {
    font-size: 1rem;
  }

  .service-scope__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .svc-row {
    padding-left: 20px;
    padding-right: 20px;
  }

  .svc-row__heading {
    font-size: 1.3rem;
  }

  .service-page-side-card,
  .service-page-feature-card {
    padding: 24px;
  }

  .service-page-hero__image-wrap img,
  .service-page-visual__image-wrap img {
    height: 320px;
  }
}

/* =========================
   SERVICE PAGE BACKGROUND LAYERS
   ========================= */

.service-page-hero,
.service-page-overview,
.service-page-features {
  position: relative;
  overflow: hidden;
}

/* =========================
   SERVICE PAGE HERO
   ========================= */

/* geometry layer */

.service-page-hero__bg-shape{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  opacity: 0.22;

  background-repeat: no-repeat;
  background-position: right -120px top -80px;
  background-size: 900px;

  background-image: url("data:image/svg+xml,%3Csvg width='920' height='620' viewBox='0 0 920 620' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23ffffff' stroke-width='1.3'%3E%3Cpath d='M300 110L480 210L480 410L300 510L120 410L120 210L300 110Z'/%3E%3Cpath d='M480 210L660 110L840 210L840 410L660 510L480 410'/%3E%3Cpath d='M300 110L300 310L480 410'/%3E%3Cpath d='M660 110L480 210L300 110'/%3E%3Cpath d='M840 210L660 310L660 510'/%3E%3Cpath d='M300 510L480 410L660 510'/%3E%3C/g%3E%3C/svg%3E");
}

/* glow accent */

.service-page-hero__bg-glow{
  position: absolute;
  width: 520px;
  height: 520px;

  right: -120px;
  top: -120px;

  background: radial-gradient(
    circle,
    rgba(255,255,255,0.07) 0%,
    rgba(255,255,255,0.02) 40%,
    transparent 70%
  );

  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* ensure content is above shapes */

.service-page-hero .container{
  position: relative;
  z-index: 2;
}

/* -------------------------
   OVERVIEW BACKGROUND
   ------------------------- */

.service-page-overview {
  background: #ffffff;
}

.service-page-overview__bg-shape {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
  background-repeat: no-repeat;
  background-position: left -4% center;
  background-size: 760px auto;
  background-image: url("data:image/svg+xml,%3Csvg width='920' height='620' viewBox='0 0 920 620' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23c7ced6' stroke-width='1.1'%3E%3Cpath d='M300 110L480 210L480 410L300 510L120 410L120 210L300 110Z'/%3E%3Cpath d='M480 210L660 110L840 210L840 410L660 510L480 410'/%3E%3Cpath d='M300 110L300 310L480 410'/%3E%3Cpath d='M660 110L480 210L300 110'/%3E%3Cpath d='M840 210L660 310L660 510'/%3E%3Cpath d='M300 510L480 410L660 510'/%3E%3C/g%3E%3C/svg%3E");
}


.service-page-overview__grid {
  position: relative;
  z-index: 2;

  max-width: 1200px;
  margin: 0 auto;
}

/* -------------------------
   FEATURES BACKGROUND
   ------------------------- */

.service-page-features {
  background:
    linear-gradient(180deg, #fbfbfb 0%, #f6f7f9 100%);
}

.service-page-features__bg-shape {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.06;
  background-repeat: no-repeat;
  background-position: right -6% bottom;
  background-size: 720px auto;
  background-image: url("data:image/svg+xml,%3Csvg width='920' height='620' viewBox='0 0 920 620' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23c7ced6' stroke-width='1.1'%3E%3Cpath d='M300 110L480 210L480 410L300 510L120 410L120 210L300 110Z'/%3E%3Cpath d='M480 210L660 110L840 210L840 410L660 510L480 410'/%3E%3Cpath d='M300 110L300 310L480 410'/%3E%3Cpath d='M660 110L480 210L300 110'/%3E%3Cpath d='M840 210L660 310L660 510'/%3E%3Cpath d='M300 510L480 410L660 510'/%3E%3C/g%3E%3C/svg%3E");
}

.service-page-features::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(188,195,203,0.10), transparent 24%);
}

.service-page-features .container {
  position: relative;
  z-index: 2;
}

.service-page-hero__image-wrap,
.service-page-visual__image-wrap,
.service-page-side-card,
.service-page-feature-card {
  position: relative;
  z-index: 2;
}
/* =========================
   SERVICE PAGE CINEMATIC BAND
   ========================= */

.service-page-band {
  position: relative;
  padding: 0;
  background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
}

.service-page-band__image-wrap {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.service-page-band__image-wrap img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}

.service-page-band__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to top,
      rgba(10,16,28,0.16) 0%,
      rgba(10,16,28,0.04) 38%,
      rgba(10,16,28,0.00) 70%
    );
}

@media (max-width: 1180px) {
  .service-page-band {
    padding-bottom: 100px;
  }

  .service-page-band__image-wrap img {
    height: 460px;
  }
}

@media (max-width: 640px) {
  .service-page-band {
    padding-bottom: 90px;
  }

  .service-page-band__image-wrap {
    width: min(1560px, calc(100% - 24px));
    border-radius: 24px;
  }

  .service-page-band__image-wrap img {
    height: 280px;
  }
}

/* =========================
   SERVICE PAGE CINEMATIC BAND
   ========================= */

.service-page-band {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.service-page-band__image-wrap {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
  background: #dfe5eb;
}

.service-page-band__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
  animation: serviceBandImageIn 1.6s cubic-bezier(.16,1,.3,1) forwards;
}

@keyframes serviceBandImageIn {
  from {
    transform: scale(1.18);
  }
  to {
    transform: scale(1.03);
  }
}

.service-page-band__image-wrap:hover .service-page-band__image {
  transform: scale(1.07);
}

.service-page-band__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to top,
      rgba(8,12,20,0.58) 0%,
      rgba(8,12,20,0.26) 34%,
      rgba(8,12,20,0.08) 60%,
      rgba(8,12,20,0.02) 100%
    );
}

.service-page-band__content {
  position: absolute;
  left: clamp(24px, 4vw, 56px);
  bottom: clamp(100px, 4vw, 46px);
  z-index: 2;
  max-width: 760px;
  color: #ffffff;
}

.service-page-band__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.service-page-band__title {
  max-width: 30ch;
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: #ffffff;
  text-shadow:
    0 8px 24px rgba(0,0,0,0.18),
    0 16px 38px rgba(0,0,0,0.18);
}

.service-page-band__meta {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
}

.section-heading h2 {
    max-width: 30ch;
    margin-bottom: 22px;
    font-size: clamp(1.6rem, 2.4vw, 2.4rem);
    line-height: 1.08;
    color: #192332;
}

@media (max-width: 1180px) {
  .service-page-band__image-wrap {
    height: 520px;
  }
}

@media (max-width: 640px) {
  .service-page-band__image-wrap {
    height: 340px;
  }

  .service-page-band__title {
    max-width: 100%;
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .service-page-band__meta {
    font-size: 0.92rem;
  }
}

/* =========================
   SERVICE PAGE TYPOGRAPHY SPACING
   ========================= */

.service-page-hero__content .section-title {
  margin-bottom: 20px;
}

.service-page-hero__content h1 {
  margin-bottom: 40px;
}

.service-page-hero__intro {
  margin-bottom: 34px;
}

.service-page-overview__content .section-title {
  margin-bottom: 20px;
}

.service-page-overview__content h2 {
  margin-bottom: 22px;
}

.service-page-overview__content p:not(.eyebrow) {
  margin-bottom: 24px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #626b76;
  max-width: 85ch;
}

.service-page-side-card__label {
  margin-bottom: 18px;
}

.service-page-band__eyebrow {
  margin-bottom: 14px;
}

.service-page-band__title {
  margin: 0 0 14px;
  line-height: 1.04;
}

.service-page-band__meta {
  margin: 0;
}

.service-page-features .section-title {
  margin-bottom: 20px;
}

.service-page-features .section-heading h2 {
  margin-bottom: 18px;
}

.service-page-feature-card h3 {
  margin-bottom: 14px;
}

.service-page-feature-card p {
  margin: 0;
}

.cta-content h2 {
  margin-bottom: 14px;
}

/* =========================
   UNIFIED SERVICE PAGE EYEBROWS
   ========================= */

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8e98a3;
  line-height: 1;
}

.service-page-band .eyebrow {
  color: rgba(255,255,255,0.6);
}

/* =========================
   SERVICE SCOPE
   ========================= */

.service-scope {
  position: relative;
  padding: 50px 0 120px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  overflow: hidden;
}

.service-scope__bg-shape {
  position: absolute;
  top: 50%;
  right: -120px;
  width: 520px;
  height: 520px;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.18;
  border: 24px solid rgba(188, 195, 203, 0.18);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 78% 100%, 0 22%, 0 0);
}

.service-scope .container {
  position: relative;
  z-index: 2;
}

.service-scope__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 100px;
}

.service-scope__group {
  position: relative;
  padding-top: 0;
}

.service-scope__group h3 {
  margin: 0 0 32px;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: #192332;
}

.service-scope__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.service-scope__list li {
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  color: #4f5a66;
}

.service-scope__list li::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  background: #192332;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* tighten eyebrow spacing in this section only */
.service-scope .section-heading {
  margin-bottom: 20px;
}

.service-scope .section-heading .eyebrow {
  margin-bottom: 0;
}

/* optional cleanup if still needed */
.service-page-band {
  background: #ffffff !important;
}

.service-page-overview::before,
.service-page-features::before {
  content: none !important;
  display: none !important;
}

@media (max-width: 980px) {
  .service-scope__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-scope__bg-shape {
    display: none;
  }
}

@media (max-width: 640px) {
  .service-scope {
    padding: 90px 0;
  }

  .service-scope__group h3 {
    margin-bottom: 22px;
  }

  .service-scope__list li {
    font-size: 0.96rem;
    line-height: 1.68;
  }
}

/* =========================
   EYEBROW
   ========================= */

.section-heading .eyebrow {
  display: block;
  text-align: left;
  margin-bottom: 10px;
}

.section-heading h2 {
  margin-top: 0;
}


body{
  margin:0;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
}

.container{
  width:min(1200px, calc(100% - 40px));
  margin:auto;
}

/* =========================
   HERO DARK THEME OVERRIDES
   ========================= */

.service-page-hero .eyebrow {
  color: rgba(255,255,255,0.55);
}

/* =========================
   SERVICES CARD GRID
   ========================= */

.svc-section {
  padding: 120px 0 140px;
  background: #f4f5f7;
}

.svc-intro {
  max-width: 860px;
  margin-bottom: 64px;
}

.svc-intro .eyebrow {
  color: #8e98a3;
}

.svc-intro__title {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 600;
  color: #192332;
}

.svc-intro__text {
  margin: 0;
  max-width: 62ch;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  color: #5c6875;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.svc-card:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.svc-card:first-child .svc-card__media {
  height: 100%;
  min-height: 380px;
}

.svc-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(218,225,232,0.8);
  box-shadow: 0 4px 18px rgba(9,17,29,0.04);
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), box-shadow 0.4s ease;
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(9,17,29,0.10);
}

.svc-card__media {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.svc-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(.16,1,.3,1);
}

.svc-card:hover .svc-card__img {
  transform: scale(1.05);
}

.svc-card__mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(9,17,29,0.0) 30%, rgba(9,17,29,0.50) 100%);
}

.svc-card__num {
  position: absolute;
  top: 16px;
  left: 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.88);
  background: rgba(9,17,29,0.32);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 999px;
}

.svc-card__body {
  padding: 26px 28px 30px;
}

.svc-card__heading {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: #192332;
}

.svc-card:first-child .svc-card__heading {
  font-size: 2rem;
}

.svc-card__text {
  margin: 0 0 18px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.72;
  color: #5c6875;
}

.svc-card__tags {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-card__tags li {
  font-size: 0.78rem;
  font-weight: 600;
  color: #192332;
  background: #eef0f4;
  border-radius: 999px;
  padding: 4px 12px;
}

.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #192332;
  text-decoration: none;
  transition: gap 0.22s ease, color 0.22s ease;
}

.svc-card__link:hover {
  color: #192332;
  gap: 13px;
}

.svc-card__link svg {
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.svc-card__link:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1000px) {
  .svc-card:first-child {
    grid-template-columns: 1fr;
  }
  .svc-card:first-child .svc-card__media {
    height: 280px;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .svc-section {
    padding: 80px 0 100px;
  }
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .svc-card:first-child {
    grid-column: auto;
  }
  .svc-card__heading {
    font-size: 1.3rem;
  }
  .svc-card:first-child .svc-card__heading {
    font-size: 1.6rem;
  }
}

/* =========================
   SERVICES NUMBERED LIST
   ========================= */

.svc-list-section {
  padding: 120px 0 140px;
  background: #ffffff;
}

.svc-list-section .container {
  width: min(1280px, calc(100% - 64px));
}

.svc-list-intro {
  max-width: 760px;
  margin-bottom: 80px;
}

.svc-list-intro .eyebrow {
  color: #8e98a3;
}

.svc-list-intro h2 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 600;
  color: #192332;
}

.svc-list-intro p {
  margin: 0;
  max-width: 62ch;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  color: #5c6875;
}

.svc-list {
  border-top: 1px solid #e2e7ed;
}

.svc-row {
  display: block;
  padding: 56px 0 56px 28px;
  border-bottom: 1px solid #e2e7ed;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background 0.3s ease;
}

.svc-row::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #192332;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.38s cubic-bezier(.16,1,.3,1);
  border-radius: 2px;
}

.svc-row:hover::before {
  transform: scaleY(1);
}

.svc-row:hover {
  background: #f8f9fb;
}

.svc-row__num {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #8e98a3;
  padding-top: 10px;
}

.svc-row__heading {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: #192332;
  transition: color 0.22s ease;
}

.svc-row:hover .svc-row__heading {
  color: #192332;
}

.svc-row__text {
  margin: 0 0 28px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: #5c6875;
  max-width: 72ch;
}

.svc-row__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 36px;
}

.svc-row__points li {
  position: relative;
  padding-left: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #192332;
}

.svc-row__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8e98a3;
}

.svc-row__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #dde2e8;
  color: #192332;
  margin-top: 6px;
  flex-shrink: 0;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.28s ease;
}

.svc-row:hover .svc-row__arrow {
  border-color: #192332;
  background: #192332;
  color: #ffffff;
  transform: translateX(6px);
}

@media (max-width: 900px) {
  .svc-row {
    padding: 44px 0;
  }
}

@media (max-width: 640px) {
  .svc-list-section {
    padding: 64px 0 80px;
  }

  .svc-list-intro {
    margin-bottom: 48px;
  }

  .svc-row {
    padding: 36px 0;
  }

  .svc-row__heading {
    font-size: 1.4rem;
  }
}
}