/* ══════════════════════════════════════════
   ABOUT HERO SECTION
══════════════════════════════════════════ */
.about-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
  padding: 94px var(--section-x);
  min-height: 400px;
  overflow: hidden;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-primary);
}

/* All direct children above overlay */
.about-hero>* {
  position: relative;
  z-index: 1;
}

.about-hero__heading {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 700;
  color: var(--color-bg);
  line-height: 1.15;
  margin: 0;
}

.about-hero__subtext {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 24px;
  margin: 0;
}

.about-hero__btns {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .about-hero__heading {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .about-hero__heading {
    font-size: 28px;
  }

  .about-hero__btns {
    flex-direction: column;
    align-items: stretch;
  }

  .about-hero__btns .cta-banner__btn {
    justify-content: center;
  }
}

/* ══════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════ */
.services-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 60px var(--section-x);
  background-color: var(--color-white);
}

/* ── Header ── */
.services-page__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.services-page__heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

/* Search bar — reuses same pattern as hero search */
.services-page__search {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  width: 100%;
  max-width: 736px;
}

.services-page__search svg {
  flex-shrink: 0;
}

.services-page__search input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-jakarta);
  font-size: 16px;
  color: #3f4254;
  background: transparent;
}

.services-page__search input::placeholder {
  color: #3f4254;
}

/* ── Categories wrapper ── */
.services-page__categories {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* ── Category block ── */
.svc-category {
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.svc-category__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 34px;
  margin: 0;
  text-align: center;
}

/* ── Cards grid: 4 columns ── */
.svc-category__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── Service item card ── */
.svc-item {
  background-color: var(--color-white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, background-color 0.25s;
}

/* ── Card head: icon + title ── */
.svc-item__head {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* Icon swap */
.icon-hover {
  display: none;
}

.icon-default {
  display: block;
}

/* ── Title ── */
.svc-item__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 24px;
  margin: 0;
  flex: 1;
  min-width: 0;
  transition: color 0.25s;
}

/* ── Description ── */
.svc-item__desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
  margin: 0;
  transition: color 0.25s;
}

/* ══ HOVER STATE ══ */
.svc-item:hover {
  border-color: #c9a75c;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.25);
}

.svc-item:hover .svc-item__title {
  color: #c9a75c;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .svc-category__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .svc-category__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-page__heading {
    font-size: 32px;
  }

  .svc-category__title {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .svc-category__grid {
    grid-template-columns: 1fr;
  }

  .services-page__heading {
    font-size: 26px;
  }
}

/* ══════════════════════════════════════════
   HOME HERO SECTION
══════════════════════════════════════════ */
.home-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 94px var(--section-x);
  background: linear-gradient(90deg, #0b1f3b 0%, #0b1f3b 100%);
  position: relative;
  overflow: hidden;
  min-height: 747px;
}

/* subtle radial gold glow top-right (matches Figma) */
.home-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: 200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(201, 167, 92, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.home-hero>* {
  position: relative;
  z-index: 1;
}

/* ── Left ── */
.home-hero__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 34px;
  min-width: 0;
}

/* Tagline pill */
.home-hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #c9a75c;
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: #c9a75c;
  width: fit-content;
}

/* Heading */
.home-hero__heading {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 700;
  color: #E3D3B2;
  line-height: 1.15;
  margin: 0;
}

.home-hero__heading--gold {
  color: #c9a75c;
}

/* Description */
.home-hero__desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 24px;
  margin: 0;
}

/* CTA Buttons */
.home-hero__btns {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.home-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
  white-space: nowrap;
  transition: opacity .2s;
  cursor: pointer;
}

.home-hero__btn:hover {
  opacity: .85;
}

.home-hero__btn--gold {
  background-color: #c9a75c;
  color: #0b1f3b;
  border: none;
}

.home-hero__btn--outline {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid #d2d2cc;
}

.home-hero__btn-arrow {
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  display: inline-block;
}

/* Feature checklist */
.home-hero__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
}

.home-hero__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  color: #f7f2ea;
  line-height: 24px;
}

/* ── Right ── */
.home-hero__right {
  position: relative;
  width: 545px;
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
}

/* Main image card */
.home-hero__img-card {
  position: absolute;
  left: 66px;
  top: 0;
  width: 479px;
  height: 598px;
  border: 1px solid #c9a75c;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.home-hero__img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Floating cards */
.home-hero__float {
  position: absolute;
  background-color: var(--color-white);
  border: 1px solid #c9a75c;
  border-radius: 14px;
  z-index: 2;
}

/* Top-right float */
.home-hero__float--top {
  top: 84px;
  right: -56px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
}

/* Bottom-left float */
.home-hero__float--bottom {
  bottom: 84px;
  left: 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 228px;
}

.home-hero__float-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  color: #c9a75c;
  margin: 0;
  white-space: nowrap;
}

.home-hero__float-title {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-body);
  margin: 0;
  white-space: nowrap;
}

.home-hero__float-sub {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  color: var(--color-body);
  margin: 0;
}

.home-hero__float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: #f7f2ea;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
  padding: 2px;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .home-hero__img-card {
    width: 380px;
    height: 480px;
  }

  .home-hero__right {
    width: 440px;
  }

  .home-hero__heading {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .home-hero {
    flex-direction: column;
    padding-bottom: 60px;
  }

  .home-hero__right {
    width: 100%;
    height: 400px;
  }

  .home-hero__img-card {
    left: 0;
    width: 100%;
    height: 400px;
    position: relative;
  }

  .home-hero__float--top {
    top: 10px;
    right: 10px;
  }

  .home-hero__float--bottom {
    bottom: 10px;
    left: 10px;
  }
}

@media (max-width: 767px) {
  .home-hero__heading {
    font-size: 30px;
  }

  .home-hero__features {
    grid-template-columns: 1fr;
  }

  .home-hero__btns {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ══════════════════════════════════════════
   SINGLE SERVICE — HERO SECTION
══════════════════════════════════════════ */
.svc-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 94px var(--section-x);
  background: linear-gradient(90deg, #0b1f3b 0%, #0f1116 100%);
  min-height: 560px;
}

/* ── Left content ── */
.svc-hero__left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
}

/* Tagline pill */
.svc-hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #c9a75c;
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: #c9a75c;
  white-space: nowrap;
  flex-shrink: 0;
}

.svc-hero__tagline svg {
  flex-shrink: 0;
}

/* Heading */
.svc-hero__heading {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  color: #e3d3b2;
  line-height: 62px;
  margin: 0;
}

/* Description */
.svc-hero__desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 24px;
  margin: 0;
}

/* Buttons row */
.svc-hero__btns {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.svc-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity .2s;
}

.svc-hero__btn:hover {
  opacity: .85;
}

.svc-hero__btn--gold {
  background-color: #c9a75c;
  color: var(--color-primary);
  border: none;
}

.svc-hero__btn--gold:hover {
  color: var(--color-primary);
}

.svc-hero__btn--outline {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid #d2d2cc;
}

.svc-hero__btn--outline:hover {
  color: var(--color-white);
}

/* Arrow icon — rotate 45deg for diagonal arrow */
.svc-hero__btn-arrow {
  transform: rotate(45deg);
  display: inline-block;
  flex-shrink: 0;
}

/* ── Right image ── */
.svc-hero__right {
  flex-shrink: 0;
  width: 650px;
  height: 420px;
  border: 1px solid #c9a75c;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.svc-hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .svc-hero__right {
    width: 440px;
    height: 360px;
  }

  .svc-hero__heading {
    font-size: 44px;
    line-height: 52px;
  }
}

@media (max-width: 991px) {
  .svc-hero {
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 32px;
  }

  .svc-hero__right {
    width: 100%;
    height: 320px;
  }

  .svc-hero__heading {
    font-size: 36px;
    line-height: 44px;
  }
}

@media (max-width: 767px) {
  .svc-hero__heading {
    font-size: 28px;
    line-height: 36px;
  }

  .svc-hero__btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .svc-hero__right {
    height: 240px;
  }
}

/* ══════════════════════════════════════════
   SINGLE SERVICE — ABOUT SECTION
══════════════════════════════════════════ */
.svc-about {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 80px var(--section-x);
  background-color: var(--color-white);
}

/* ── Left image ── */
.svc-about__img-wrap {
  flex: 1;
  min-width: 0;
  height: 500px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

.svc-about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Right content ── */
.svc-about__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: stretch;
  justify-content: center;
}

/* Text block */
.svc-about__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-about__heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0;
}

.svc-about__body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-about__body p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
  margin: 0;
}

/* ── Feature cards grid: 2 columns ── */
.svc-about__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 0;
}

/* ── Feature card ── */
.svc-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-md);
  background-color: var(--color-white);
}

/* Icon wrapper */
.svc-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  padding: 8px;
}

.svc-feature__icon img {
  width: 24px;
  height: 24px;
  display: block;
}

/* Text */
.svc-feature__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  flex: 1;
  min-width: 0;
}

.svc-feature__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-body);
  line-height: 24px;
  margin: 0;
}

.svc-feature__desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
  margin: 0;
}

/* ── CTA buttons — add dark variant to existing svc-hero__btn ── */
.svc-hero__btn--dark {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
}

.svc-hero__btn--dark:hover {
  color: var(--color-white);
  opacity: .85;
}

.svc-about__btns {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .svc-about {
    flex-direction: column;
  }

  .svc-about__img-wrap {
    width: 100%;
    height: 340px;
  }

  .svc-about__heading {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .svc-about__heading {
    font-size: 26px;
  }

  .svc-about__features {
    grid-template-columns: 1fr;
  }

  .svc-about__btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .svc-about__img-wrap {
    height: 260px;
  }
}

/* ══════════════════════════════════════════
   SINGLE SERVICE — WHY YOU NEED SECTION
══════════════════════════════════════════ */
.svc-why {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px var(--section-x);
  background-color: #f7f6f3;
}

/* ── Header ── */
.svc-why__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.svc-why__heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0;
}

.svc-why__subtext {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
  margin: 0;
}

/* ── Cards grid: 2 columns ── */
.svc-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
}

/* ── Card — default state ── */
.svc-why-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background-color: var(--color-white);
  border: 1px solid #f7f2ea;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.25s, border-width 0.25s, box-shadow 0.25s;
}

/* ── Icon bubble ── */
.svc-why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: var(--radius-md);
  background-color: #f7f3e9;
  padding: 16px;
  transition: background-color 0.25s;
}

/* Icon swap */
.icon-hover {
  display: none;
}

.icon-default {
  display: block;
}

/* ── Card text ── */
.svc-why-card__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.svc-why-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 26px;
  margin: 0;
  transition: color 0.25s;
}

.svc-why-card__desc {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  color: #0f2447;
  line-height: 24px;
  margin: 0;
  transition: color 0.25s;
}

/* ══ HOVER STATE ══ */
.svc-why-card:hover {
  border-color: #c9a75c;
  border-width: 1.5px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .svc-why__heading {
    font-size: 32px;
  }

  .svc-why__grid {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .svc-why__heading {
    font-size: 26px;
  }

  .svc-why__grid {
    grid-template-columns: 1fr;
  }

  .svc-why-card {
    gap: 16px;
  }
}

/* ══════════════════════════════════════════
   SINGLE SERVICE — WHAT IS COVERED SECTION
══════════════════════════════════════════ */
.svc-covered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px var(--section-x);
  background-color: var(--color-white);
}

/* ── Header ── */
.svc-covered__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.svc-covered__heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0;
}

.svc-covered__subtext {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
  margin: 0;
}

/* ── 3-column cards grid ── */
.svc-covered__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

/* ── Covered card ── */
.covered-card {
  background-color: #f3f5f7;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}

/* Icon bubble */
.covered-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  padding: 9px;
}

.covered-card__icon img {
  width: 30px;
  height: 30px;
  display: block;
}

/* Card body */
.covered-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Title + subtitle */
.covered-card__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.covered-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 26px;
  margin: 0;
}

.covered-card__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
  margin: 0;
}

/* Key points list */
.covered-card__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.covered-card__point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
}

.covered-card__point img {
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   WHAT'S NOT COVERED BANNER
══════════════════════════════════════════ */
.svc-not-covered {
  width: 100%;
  background-color: var(--color-primary);
  border: 1.5px solid #c9a75c;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Heading row */
.svc-not-covered__head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.svc-not-covered__heading {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  color: #c9a75c;
  line-height: 24px;
}

/* Items list */
.svc-not-covered__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-not-covered__item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 24px;
  min-height: 27px;
}

.svc-not-covered__cross {
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .svc-covered__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .svc-covered__heading {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .svc-covered__grid {
    grid-template-columns: 1fr;
  }

  .svc-covered__heading {
    font-size: 26px;
  }

  .svc-not-covered__item {
    align-items: flex-start;
  }
}

/* ══════════════════════════════════════════
   SINGLE SERVICE — WHO IS IT FOR SECTION
══════════════════════════════════════════ */
.svc-who {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px var(--section-x);
  background-color: #f3f5f7;
}

/* ── Header ── */
.svc-who__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.svc-who__heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0;
}

.svc-who__subtext {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
  margin: 0;
}

/* ── Cards container ── */
.svc-who__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

/* ── Cards row: 3 columns ── */
.svc-who__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

/* ── Individual card ── */
.svc-who-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

/* Icon */
.svc-who-card__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.svc-who-card__icon img {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
}

/* Content block */
.svc-who-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  justify-content: center;
}

/* Title */
.svc-who-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 34px;
  margin: 0;
}

/* Description */
.svc-who-card__desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
  margin: 0;
}

/* Bullet list */
.svc-who-card__list {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-who-card__list li {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
  padding-left: 4px;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .svc-who__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .svc-who__heading {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .svc-who__row {
    grid-template-columns: 1fr;
  }

  .svc-who__heading {
    font-size: 26px;
  }

  .svc-who-card {
    padding: 32px 20px;
  }

  .svc-who-card__title {
    font-size: 22px;
    line-height: 28px;
  }
}


/* ══════════════════════════════════════════
   SINGLE SERVICE — HOW WE HELP / PROCESS SECTION
══════════════════════════════════════════ */
.svc-process {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 48px var(--section-x);
  background-color: #f7f6f3;
}

/* ── Header ── */
.svc-process__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.svc-process__heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0;
}

.svc-process__subtext {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
  margin: 0;
}

/* ── Grid: 3 cols x 2 rows ── */
.svc-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

/* ── Process Card — default ── */
.process-card {
  background-color: var(--color-white);
  border: 1.5px solid #f7f2ea;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 276px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s;
}

/* ── Card top row: icon + number ── */
.process-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-shrink: 0;
}

/* Icon bubble */
.process-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: #f7f2ea;
  border-radius: var(--radius-md);
  padding: 16px;
  flex-shrink: 0;
}

.process-card__icon img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

/* Step number */
.process-card__number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 600;
  color: rgba(11, 31, 59, 0.20);
  line-height: 80px;
  white-space: nowrap;
  flex-shrink: 0;
  user-select: none;
}

/* ── Card content ── */
.process-card__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  min-height: 0;
}

.process-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 26px;
  margin: 0;
}

.process-card__desc {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  color: #0f2447;
  line-height: 24px;
  margin: 0;
}

/* ══ HOVER STATE — gold border + shadow ══ */
.process-card:hover {
  border-color: #e3d3b2;
  box-shadow: 0px 6px 12px 0px rgba(10, 18, 41, 0.10);
}

/* ── CTA Buttons ── */
.svc-process__btns {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .svc-process__grid { grid-template-columns: repeat(2, 1fr); }
  .svc-process__heading { font-size: 32px; }
}

@media (max-width: 767px) {
  .svc-process__grid { grid-template-columns: 1fr; }
  .svc-process__heading { font-size: 26px; }
  .process-card { height: auto; }
  .process-card__number { font-size: 60px; line-height: 60px; }
  .svc-process__btns { flex-direction: column; align-items: stretch; }
  .svc-hero__btn { justify-content: center; }
}