/* -- service-hero.css -- */
/* ── Service/Industry page hero — ported 1:1 from service-hero.css ── */
.svc-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #05111F;
  padding: 100px 0 80px;
}

.svc-hero__inner { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; }

.svc-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: 58px;
  line-height: 68px;
  font-weight: 700;
  color: #4AEFED;
  margin: 0 0 20px;
  max-width: 100%;
}

.svc-hero__sub {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0 0 32px;
  max-width: 680px;
}

.svc-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #23F8DE;
  color: #000818;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid #23F8DE;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease;
  line-height: 1.4;
}

.svc-hero__cta:hover { background-color: #1ADECE; border-color: #1ADECE; text-decoration: none; }
.svc-hero__cta:focus-visible { outline: 3px solid #4AEFED; outline-offset: 3px; }

.svc-hero__cta-arrow { display: flex; align-items: center; flex-shrink: 0; }
.svc-hero__cta-arrow svg { width: 18px; height: 14px; }

@media (max-width: 1024px) {
  .svc-hero { min-height: 460px; padding: 70px 0 70px; }
  .svc-hero__title { font-size: 48px; line-height: 58px; }
  .svc-hero__sub { font-size: 20px; line-height: 30px; }
}

@media (max-width: 768px) {
  .svc-hero { min-height: 360px; padding: 60px 0 60px; }
  .svc-hero__title { font-size: 36px; line-height: 46px; max-width: 100%; }
  .svc-hero__sub { font-size: 18px; line-height: 28px; max-width: 100%; }
  .svc-hero__cta { font-size: 16px; padding: 10px 16px; }
}

@media (max-width: 480px) {
  .svc-hero__inner { padding: 0 4px; }
  .svc-hero__title { font-size: 32px; line-height: 42px; }
  .svc-hero__sub { font-size: 17px; line-height: 26px; }
}

/* -- intro.css -- */
/* ── Intro (text-only paragraphs) — Service/Industry pages ─── */
.svc-intro { padding: 80px 0; }
.svc-intro__body { max-width: 100%; margin: 0 auto; text-align: center; }

.svc-intro__text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #00234C;
  margin: 0 0 24px;
}
.svc-intro__text:last-child { margin-bottom: 0; }

@media (max-width: 1024px) {
  .svc-intro__text { font-size: 17px; line-height: 28px; }
}

@media (max-width: 768px) {
  .svc-intro { padding: 60px 0; }
  .svc-intro__text { font-size: 16px; line-height: 26px; }
}

/* -- services-grid.css -- */
/* ── Services Grid (5 cards) — Service/Industry pages ────────── */
.svcg { background-color: #F5F5F5; padding: 80px 0; }
.svcg.svcg--alt { background-color: #fff; }

.svcg__heading {
  font-family: 'Inter', sans-serif;
  font-size: 45px;
  line-height: 54px;
  font-weight: 700;
  color: #00234C;
  text-align: center;
  margin: 0 auto 24px;
  max-width: 100%;
}

.svcg__subheading {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #00234C;
  text-align: center;
  margin: 0 auto 48px;
  max-width: 100%;
}

.svcg__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; }

.svcg__card {
  flex: 0 0 calc(33.333% - 19px);
  background: #FAFAFA;
  border: 1px solid rgba(27, 68, 175, 0.30);
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color 0.25s ease;
}
.svcg__card:hover { border-color: #1B44AF; }

.svcg__icon-wrap {
  width: 80px;
  height: 80px;
  background: #FFFFFF;
  border: 3px solid rgba(37, 99, 246, 0.20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.svcg__card-title { font-family: 'Inter', sans-serif; font-size: 22px; line-height: 32px; font-weight: 700; color: #00234C; margin: 0 0 14px; }
.svcg__card-desc { font-family: 'Inter', sans-serif; font-size: 18px; line-height: 30px; font-weight: 400; color: #40454D; margin: 0; }

@media (max-width: 1024px) {
  .svcg__heading { font-size: 34px; line-height: 44px; margin-bottom: 40px; }
  .svcg__card { flex: 0 0 calc(50% - 14px); }
}

@media (max-width: 768px) {
  .svcg { padding: 60px 0; }
  .svcg__heading { font-size: 28px; line-height: 38px; margin-bottom: 32px; }
  .svcg__card { flex: 0 0 100%; padding: 28px 18px; }
  .svcg__card-title { font-size: 20px; line-height: 30px; }
  .svcg__card-desc { font-size: 16px; line-height: 26px; }
}

/* -- expertise.css -- */
/* ── Expertise split layout — Service pages (intro_style = expertise) ── */
.exp { background-color: #fff; padding: 80px 0; }
.exp__inner { display: flex; align-items: center; gap: 48px; }

.exp__media { flex: 0 0 50%; max-width: 50%; }
.exp__img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; display: block; }

.exp__content { flex: 1; min-width: 0; }
.exp__heading { font-family: 'Inter', sans-serif; font-size: 45px; line-height: 54px; font-weight: 700; color: #00234C; text-align: left; margin: 0 0 24px; }
.exp__body { font-family: 'Inter', sans-serif; font-size: 18px; line-height: 30px; font-weight: 400; color: #00234C; text-align: left; margin: 0; }

@media (max-width: 1024px) {
  .exp__inner { gap: 36px; }
  .exp__heading { font-size: 34px; line-height: 44px; margin-bottom: 20px; }
  .exp__body { font-size: 17px; line-height: 28px; }
}

@media (max-width: 768px) {
  .exp { padding: 60px 0; }
  .exp__inner { flex-direction: column; gap: 0; }
  .exp__media { flex: none; max-width: 100%; width: 100%; margin-bottom: 28px; }
  .exp__content { width: 100%; }
  .exp__heading { font-size: 30px; line-height: 40px; margin-bottom: 18px; }
  .exp__body { font-size: 16px; line-height: 26px; }
}

@media (max-width: 480px) {
  .exp__heading { font-size: 28px; line-height: 38px; }
}

/* -- service-highlights.css -- */
/* ── Service Highlights split layout — Service pages (intro_style = highlights) ── */
.shl { background-color: #ffffff; padding: 80px 0px; }

.shl__header { text-align: center; margin-bottom: 48px; }
.shl__heading { font-family: 'Inter', sans-serif; font-size: 45px; font-weight: 700; line-height: 54px; color: #00234C; margin: 0 auto 16px; }
.shl__subheading { font-family: 'Inter', sans-serif; font-size: 18px; line-height: 30px; font-weight: 400; color: #40454D; margin: 0 auto; max-width: 100%; }

.shl__body { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.shl__items { display: flex; flex-direction: column; gap: 28px; }
.shl__item { display: flex; gap: 20px; align-items: center; }

.shl__item-icon { width: 56px; height: 56px; background: #EEF3FE; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.shl__item-title { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 700; line-height: 28px; color: #00234C; margin: 0 0 6px; }
.shl__item-desc { font-family: 'Inter', sans-serif; font-size: 16px; line-height: 26px; font-weight: 400; color: #40454D; margin: 0; }
.shl__footer-text { font-family: 'Inter', sans-serif; font-size: 16px; line-height: 26px; font-weight: 400; color: #40454D; margin: 20px 0 0; }

.shl__image-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 32px rgba(0, 35, 76, 0.10); }
.shl__image { width: 100%; height: auto; display: block; }

@media (max-width: 1024px) {
  .shl__heading { font-size: 38px; line-height: 48px; }
  .shl__body { gap: 36px; }
}

@media (max-width: 768px) {
  .shl { padding: 60px 0; }
  .shl__heading { font-size: 24px; line-height: 34px; }
  .shl__subheading { font-size: 16px; line-height: 26px; }
  .shl__body { grid-template-columns: 1fr; gap: 32px; }
  .shl__image-wrap { order: -1; }
  .shl__item-title { font-size: 16px; line-height: 24px; }
  .shl__item-desc { font-size: 15px; line-height: 24px; }
}

/* -- industries-grid.css -- */
/* ── Industries Grid (pill cards) — Service/Industry pages ──── */
.indg { background-color: #fff; padding: 80px 0; }

.indg__heading { font-family: 'Inter', sans-serif; font-size: 45px; line-height: 54px; font-weight: 700; color: #00234C; text-align: center; padding-bottom: 25px; max-width: 100%; }

.indg .indg__subheading {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #5C6077;
  text-align: center;
  margin: 16px auto 48px;
  max-width: 820px;
  display: block;
  width: 100%;
}

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

.indg__card {
  background-color: #FFFFFF;
  border: 2px solid rgba(27, 68, 175, 0.70);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.indg__card:hover { transform: translateY(-4px); border-color: #1B44AF; box-shadow: 0 6px 24px rgba(27, 68, 175, 0.12); }

.indg__img-wrap { position: relative; width: 100%; border-radius: 999px; overflow: hidden; margin-bottom: 20px; flex-shrink: 0; }
.indg__img { width: 100%; height: 130px; object-fit: cover; display: block; }

.indg__img-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  color: #FFFFFF;
  pointer-events: none;
}

.indg__desc { font-family: 'Inter', sans-serif; font-size: 18px; line-height: 30px; font-weight: 400; color: #00234C; text-align: center; margin: 0 0 20px; flex-grow: 1; }

.indg__cta {
  display: inline-block;
  background-color: #2563F6;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}
.indg__cta:hover { background-color: #1D4ED8; text-decoration: none; }
.indg__cta:focus-visible { outline: 3px solid #2563F6; outline-offset: 3px; }

@media (max-width: 768px) {
  .indg__img-title { font-size: 18px; line-height: 28px; }
}

@media (max-width: 1024px) {
  .indg__heading { font-size: 34px; line-height: 44px; margin-bottom: 40px; }
  .indg__grid, .indg__grid--4col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .indg { padding: 60px 0; }
  .indg__heading { font-size: 28px; line-height: 38px; margin-bottom: 32px; }
  .indg__grid, .indg__grid--2col, .indg__grid--4col { grid-template-columns: 1fr; }
  .indg__card { padding: 20px 18px; }
  .indg__img { height: 120px; }
  .indg__desc { font-size: 16px; line-height: 26px; }
}

/* ── Industry-page override: dashboard sits right after this, so drop the CTA + extra bottom margin ── */
.indg--compact { padding-top: 0; }
.indg--compact .indg__cta { display: none; }

/* -- trusted-by.css -- */
/* ── Trusted By — reused on Home, About, Service, Industry pages ── */
.trusted { padding: 80px 0; background: #FFFFFF; overflow: hidden; }

.trusted__header { text-align: center; margin-bottom: 52px; }

.trusted__title {
  font-family: 'Inter', sans-serif;
  font-size: 45px;
  line-height: 54px;
  font-weight: 700;
  color: #0D1535;
  margin-bottom: 20px;
}

.trusted__sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #475569;
  max-width: 860px;
  margin: 0 auto 30px;
}

.trusted__slider-outer { position: relative; width: 100%; overflow: hidden; }

.trusted__slider-outer::before,
.trusted__slider-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.trusted__slider-outer::before { left: 0;  background: linear-gradient(to right, #ffffff 0%, transparent 100%); }
.trusted__slider-outer::after  { right: 0; background: linear-gradient(to left, #ffffff 0%, transparent 100%); }

.trusted__track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: trusted-marquee 38s linear infinite;
  will-change: transform;
}

.trusted__slider-outer:hover .trusted__track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .trusted__track { animation-play-state: paused; } }

@keyframes trusted-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trusted__card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.trusted__card:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10); border-color: rgba(0, 0, 0, 0.14); }
.trusted__card img { max-width: 100%; max-height: 100%; width: auto; height: 84px; object-fit: contain; display: block; }

@media (max-width: 1024px) {
  .trusted__title { font-size: 36px; line-height: 45px; }
  .trusted__sub   { font-size: 16px; max-width: 680px; }
  .trusted__card  { width: 150px; height: 76px; }
}

@media (max-width: 768px) {
  .trusted { padding: 60px 0; }
  .trusted__title  { font-size: 30px; line-height: 40px; }
  .trusted__sub    { font-size: 15px; }
  .trusted__header { margin-bottom: 36px; }
  .trusted__card   { width: 136px; height: 68px; padding: 10px 16px; }
  .trusted__track  { gap: 12px; }
}

@media (max-width: 480px) {
  .trusted__title { font-size: 26px; line-height: 34px; }
  .trusted__card  { width: 120px; height: 62px; }
}

/* -- why-choose.css -- */
/* ── Why Choose (2-col cards) — Service/Industry pages ───────── */
.wcs { background-color: #FFFFFF; padding: 80px 0; }

.wcs__heading { font-family: 'Inter', sans-serif; font-size: 45px; line-height: 54px; font-weight: 700; color: #00234C; text-align: center; padding-bottom: 25px; max-width: 100%; }

.wcs__subheading {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #5C6077;
  text-align: center;
  margin: 16px auto 48px;
  max-width: 820px;
  display: block;
  width: 100%;
}

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

.wcs__card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  border: 2px solid #CECECE;
  border-radius: 8px;
  padding: 24px 28px;
  background: transparent;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.wcs__card:hover { border-color: #1B44AF; transform: translateY(-3px); }

.wcs__icon { flex-shrink: 0; width: 48px; height: 48px; margin-top: 2px; display: flex; align-items: flex-start; }
.wcs__icon svg { width: 48px; height: 48px; }

.wcs__body { flex: 1; min-width: 0; }
.wcs__title { font-family: 'Inter', sans-serif; font-size: 22px; line-height: 32px; font-weight: 700; color: #00234C; margin: 0 0 10px; }
.wcs__desc { font-family: 'Inter', sans-serif; font-size: 18px; line-height: 30px; font-weight: 400; color: #40454D; margin: 0; }

@media (max-width: 1024px) {
  .wcs__heading { font-size: 34px; line-height: 44px; margin-bottom: 40px; }
  .wcs__grid { gap: 20px; }
  .wcs__title { font-size: 20px; line-height: 30px; }
  .wcs__desc { font-size: 16px; line-height: 26px; }
}

@media (max-width: 768px) {
  .wcs { padding: 60px 0; }
  .wcs__heading { font-size: 28px; line-height: 38px; margin-bottom: 32px; }
  .wcs__grid { grid-template-columns: 1fr; gap: 16px; }
  .wcs__card { padding: 20px 18px; }
  .wcs__title { font-size: 18px; line-height: 28px; }
  .wcs__desc { font-size: 15px; line-height: 24px; }
}

/* -- approach.css -- */
/* ── Approach — plain 2-col text blocks (approach_style = plain) ── */
.appr { background-color: #fff; padding: 80px 0; }

.appr__heading { font-family: 'Inter', sans-serif; font-size: 45px; line-height: 54px; font-weight: 700; color: #00234C; text-align: center; margin: 0 auto 16px; max-width: 100%; }
.appr__subheading { font-family: 'Inter', sans-serif; font-size: 18px; line-height: 30px; font-weight: 400; color: #40454D; text-align: center; margin: 0 auto 56px; max-width: 100%; }

.appr__grid { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 48px; row-gap: 40px; }
.appr__block { display: flex; flex-direction: column; }
.appr__title { font-family: 'Inter', sans-serif; font-size: 22px; line-height: 32px; font-weight: 700; color: #00234C; margin: 0 0 14px; }
.appr__desc { font-family: 'Inter', sans-serif; font-size: 18px; line-height: 30px; font-weight: 400; color: #40454D; margin: 0; }

@media (max-width: 1024px) {
  .appr__heading { font-size: 34px; line-height: 44px; margin-bottom: 44px; }
  .appr__grid { column-gap: 36px; row-gap: 32px; }
  .appr__title { font-size: 20px; line-height: 30px; }
  .appr__desc { font-size: 16px; line-height: 26px; }
}

@media (max-width: 768px) {
  .appr { padding: 60px 0; }
  .appr__heading { font-size: 28px; line-height: 38px; margin-bottom: 36px; }
  .appr__grid { grid-template-columns: 1fr; row-gap: 28px; }
  .appr__title { font-size: 18px; line-height: 28px; margin-bottom: 10px; }
  .appr__desc { font-size: 15px; line-height: 24px; }
}

/* -- approach-cards.css -- */
/* ── Approach Cards — 3-col dark-header cards (approach_style = cards) ── */
.appr-cards { background-color: #fff; padding: 80px 0; }

.appr-cards__heading { font-family: 'Inter', sans-serif; font-size: 45px; line-height: 54px; font-weight: 700; color: #00234C; text-align: center; padding-bottom: 25px; max-width: 100%; }
.appr-cards__subheading { font-family: 'Inter', sans-serif; font-size: 18px; line-height: 30px; font-weight: 400; color: #40454D; text-align: center; max-width: 860px; margin: 0 auto 48px; }

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

.appr-card { border-radius: 12px; overflow: hidden; box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08); display: flex; flex-direction: column; }

.appr-card__head {
  background: #0B1D3A;
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 24px;
  border-bottom: 3px solid #2563F6;
  flex-shrink: 0;
}

.appr-card__icon-wrap { width: 52px; height: 52px; background: rgba(255, 255, 255, 0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #ffffff; }

.appr-card__num {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  opacity: 0.08;
  user-select: none;
  pointer-events: none;
}

.appr-card__body { background: #ffffff; padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }

.appr-card__label { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.appr-card__label-badge { background: #2563F6; color: #ffffff; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; line-height: 1; padding: 3px 7px; border-radius: 4px; }
.appr-card__label-word { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; color: #2563F6; letter-spacing: 0.08em; text-transform: uppercase; }

.appr-card__title { font-family: 'Inter', sans-serif; font-size: 22px; line-height: 32px; font-weight: 700; color: #00234C; margin: 0 0 12px; }
.appr-card__desc { font-family: 'Inter', sans-serif; font-size: 18px; line-height: 30px; font-weight: 400; color: #40454D; margin: 0; }

@media (max-width: 1024px) {
  .appr-cards__heading { font-size: 34px; line-height: 44px; margin-bottom: 44px; }
  .appr-cards__subheading { font-size: 16px; line-height: 26px; margin-bottom: 36px; }
  .appr-cards__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .appr-card__head { height: 140px; }
  .appr-card__num { font-size: 76px; }
  .appr-card__title { font-size: 20px; line-height: 30px; }
  .appr-card__desc { font-size: 16px; line-height: 26px; }
}

@media (max-width: 768px) {
  .appr-cards { padding: 60px 0; }
  .appr-cards__heading { font-size: 28px; line-height: 38px; margin-bottom: 36px; }
  .appr-cards__grid { grid-template-columns: 1fr; gap: 20px; }
  .appr-card__head { height: 120px; padding: 20px; }
  .appr-card__icon-wrap { width: 44px; height: 44px; }
  .appr-card__num { font-size: 64px; }
  .appr-card__body { padding: 22px 20px; }
  .appr-card__title { font-size: 18px; line-height: 28px; margin-bottom: 10px; }
  .appr-card__desc { font-size: 15px; line-height: 24px; }
}

/* -- benefits.css -- */
/* ── Benefits — 2-col editorial grid (generalized from the per-page sliders) ── */
.bnf { background-color: #F5F5F5; padding: 80px 0; }

.bnf__heading { font-family: 'Inter', sans-serif; font-size: 45px; line-height: 54px; font-weight: 700; color: #00234C; text-align: center; margin: 0 auto 56px; max-width: 100%; }
.bnf__heading--has-sub { margin-bottom: 16px; }
.bnf__subheading { font-family: 'Inter', sans-serif; font-size: 18px; line-height: 30px; font-weight: 400; color: #40454D; text-align: center; margin: 0 auto 56px; max-width: 100%; }

.bnf__grid { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 56px; row-gap: 48px; }
.bnf__item { display: flex; flex-direction: column; align-items: flex-start; }

.bnf__icon { width: 40px; height: 40px; flex-shrink: 0; margin-bottom: 16px; display: flex; align-items: center; }
.bnf__icon svg { width: 40px; height: 40px; }

.bnf__title { font-family: 'Inter', sans-serif; font-size: 22px; line-height: 32px; font-weight: 700; color: #00234C; text-align: left; margin: 0 0 10px; }
.bnf__desc { font-family: 'Inter', sans-serif; font-size: 18px; line-height: 30px; font-weight: 400; color: #40454D; text-align: left; margin: 0; }

@media (max-width: 1024px) {
  .bnf__heading { font-size: 34px; line-height: 44px; margin-bottom: 44px; }
  .bnf__grid { column-gap: 40px; row-gap: 40px; }
  .bnf__title { font-size: 20px; line-height: 30px; }
  .bnf__desc { font-size: 16px; line-height: 26px; }
}

@media (max-width: 768px) {
  .bnf { padding: 60px 0; }
  .bnf__heading { font-size: 28px; line-height: 38px; margin-bottom: 36px; }
  .bnf__grid { grid-template-columns: 1fr; row-gap: 32px; }
  .bnf__icon { width: 36px; height: 36px; margin-bottom: 12px; }
  .bnf__icon svg { width: 36px; height: 36px; }
  .bnf__title { font-size: 18px; line-height: 28px; margin-bottom: 8px; }
  .bnf__desc { font-size: 15px; line-height: 24px; }
}

/* -- faq.css -- */
/* ── FAQ accordion — Service/Industry pages ──────────────────── */
.faq { background-color: #FFFFFF; padding: 80px 0; }
.faq__heading { font-family: 'Inter', sans-serif; font-size: 45px; line-height: 54px; font-weight: 700; color: #00234C; text-align: center; margin: 0 auto 52px; max-width: 100%; }

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

.faq__item {
  border: 1px solid #D5D8DC;
  margin-top: -1px;
  background-color: #FFFFFF;
  position: relative;
  z-index: 0;
}
.faq__item--open { z-index: 1; }
.faq__item:first-child { border-radius: 8px 8px 0 0; }
.faq__item:last-child { border-radius: 0 0 8px 8px; }
.faq__item:only-child { border-radius: 8px; }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #1B1435;
  transition: color 0.2s ease;
}
.faq__question--active { color: #2563F6; }
.faq__question:focus-visible { outline: 3px solid #2563F6; outline-offset: -3px; border-radius: 8px; }

.faq__question-text { flex: 1; min-width: 0; }

.faq__toggle {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #D5D8DC;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
  pointer-events: none;
}
.faq__question--active .faq__toggle { border-color: #2563F6; }
.faq__toggle svg { width: 18px; height: 18px; display: block; transition: color 0.2s ease; }

.faq__answer { overflow: hidden; max-height: 0; transition: max-height 0.3s ease; }
.faq__answer--open { max-height: 1000px; }

.faq__answer-inner { padding: 0 22px 24px 22px; border-top: 1px solid #D5D8DC; padding-top: 18px; }
.faq__answer-text { font-family: 'Inter', sans-serif; font-size: 18px; line-height: 30px; font-weight: 400; color: #40454D; text-align: left; margin: 0; }

@media (max-width: 1024px) {
  .faq__heading { font-size: 34px; line-height: 44px; margin-bottom: 40px; }
  .faq__question { font-size: 18px; line-height: 28px; }
  .faq__answer-text { font-size: 17px; line-height: 28px; }
}

@media (max-width: 768px) {
  .faq { padding: 60px 0; }
  .faq__heading { font-size: 28px; line-height: 38px; margin-bottom: 32px; }
  .faq__question { font-size: 17px; line-height: 26px; padding: 16px 18px; }
  .faq__toggle { width: 40px; height: 40px; }
  .faq__answer-inner { padding: 16px 18px 20px; }
  .faq__answer-text { font-size: 16px; line-height: 26px; }
}

@media (max-width: 480px) {
  .faq { padding: 48px 0; }
  .faq__heading { font-size: 24px; line-height: 34px; margin-bottom: 24px; }
  .faq__question { font-size: 15px; line-height: 24px; padding: 14px 16px; gap: 12px; }
  .faq__toggle { width: 36px; height: 36px; }
  .faq__answer-inner { padding: 14px 16px 18px; }
  .faq__answer-text { font-size: 15px; line-height: 24px; }
}

/* -- case-studies.css -- */
/* ── Case Studies — reused on Home and almost every other page ── */
.case-studies { padding: var(--sp-20) 0; background: #EEF2F8; }

.case-studies__header { text-align: center; margin-bottom: var(--sp-12); }
.case-studies__title { font-size: var(--h2-size); line-height: var(--h2-line); font-weight: var(--h2-weight); color: var(--clr-text-dark); margin-bottom: var(--sp-5); }
.case-studies__subtitle { font-size: var(--body-size); line-height: var(--body-line); font-weight: 400; color: var(--clr-text-body); max-width: 100%; margin: 0 auto; }

.case-studies__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); margin-bottom: var(--sp-12); }

.case-card { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 3 / 4; display: flex; flex-direction: column; }
.case-card__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }

.case-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 15, 35, 0.08) 0%, rgba(5, 15, 35, 0.30) 35%, rgba(5, 15, 35, 0.82) 70%, rgba(5, 15, 35, 0.95) 100%);
}

.case-card__content { position: relative; z-index: 1; margin-top: auto; padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-5); }
.case-card__title { font-size: 18px; font-weight: 700; line-height: 1.45; color: var(--clr-white); }

.case-card__metrics { display: flex; gap: 0; }
.case-card__metric { flex: 1; display: flex; flex-direction: column; gap: 4px; padding-right: var(--sp-4); border-right: 1px solid rgba(255, 255, 255, 0.25); }
.case-card__metric:last-child { border-right: none; padding-right: 0; padding-left: var(--sp-4); }
.case-card__metric:not(:first-child):not(:last-child) { padding-left: var(--sp-4); }
.case-card__metric-value { font-size: 26px; font-weight: 700; line-height: 1; color: var(--clr-white); }
.case-card__metric-label { font-size: 11px; line-height: 1.45; color: rgba(255, 255, 255, 0.75); font-weight: 400; }

.case-card__read-more {
  display: inline-block;
  align-self: flex-start;
  padding: 8px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-white);
  text-decoration: none;
  background: transparent;
  transition: background var(--ease), border-color var(--ease);
}
.case-card__read-more:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--clr-white); }

.case-studies__footer { text-align: center; }
.case-studies__cta { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; padding: 14px 32px; border-radius: var(--radius-md); }

@media (max-width: 1024px) {
  .case-studies__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .case-studies__title { font-size: 32px; line-height: 42px; }
  .case-studies__grid { grid-template-columns: 1fr; }
}

/* -- insights.css -- */
/* ── Insights — reused on Home; also the basis for the blog card look ── */
.insights { padding: var(--sp-20) 0; background: var(--clr-white); }

.insights__header { text-align: center; margin-bottom: var(--sp-12); }
.insights__title { font-size: var(--h2-size); line-height: var(--h2-line); font-weight: var(--h2-weight); color: var(--clr-text-dark); margin-bottom: var(--sp-5); }
.insights__subtitle { font-size: var(--body-size); line-height: var(--body-line); font-weight: 400; color: var(--clr-text-body); max-width: 72ch; margin: 0 auto; }

.insights__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); align-items: stretch; }

.icard { display: flex; flex-direction: column; border-radius: var(--radius-xl); overflow: hidden; text-decoration: none; min-height: 480px; }

.icard--image { position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; justify-content: space-between; }

.icard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 12, 30, 0.15) 0%, rgba(5, 12, 30, 0.35) 40%, rgba(5, 12, 30, 0.88) 100%);
  border-radius: inherit;
  transition: opacity 0.35s ease-in-out;
  z-index: 1;
}

.icard__hover-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #01297A 0%, #00091D 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
  z-index: 2;
}

.icard--image:hover .icard__hover-bg { opacity: 1; }
.icard--image:hover .icard__overlay { opacity: 0; }

.icard__default-content { position: relative; z-index: 3; display: flex; flex-direction: column; justify-content: space-between; flex: 1; transition: opacity 0.25s ease-in-out; }
.icard--image:hover .icard__default-content { opacity: 0; pointer-events: none; }

.icard__read-time { align-self: flex-end; margin: var(--sp-5) var(--sp-5) 0 0; font-size: 13px; font-weight: 400; color: rgba(255, 255, 255, 0.88); letter-spacing: 0.01em; }

.icard__content { padding: var(--sp-6); }
.icard__title { font-size: 20px; font-weight: 700; line-height: 1.4; color: var(--clr-white); }

.icard__hover-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
  pointer-events: none;
}
.icard--image:hover .icard__hover-layer { opacity: 1; transform: translateY(0); pointer-events: auto; }

.icard__watermark {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 260px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.045);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  font-family: var(--font-family);
}

.icard__featured-top { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.icard__tag { font-size: 15px; font-weight: 600; color: var(--clr-white); }
.icard__author { font-size: 14px; font-weight: 400; color: rgba(255, 255, 255, 0.85); }

.icard__featured-body { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; gap: var(--sp-5); padding: var(--sp-8) 0 var(--sp-4); }
.icard__featured-title { font-size: 24px; font-weight: 700; line-height: 1.4; color: var(--clr-white); }
.icard__featured-desc { font-size: 15px; line-height: 1.7; color: rgba(255, 255, 255, 0.78); }

.icard__featured-footer { position: relative; z-index: 1; display: flex; justify-content: flex-end; }
.icard__expand { font-size: 16px; font-weight: 600; color: var(--clr-teal); letter-spacing: 0.01em; }

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

@media (max-width: 768px) {
  .insights__title { font-size: 32px; line-height: 42px; }
}

/* -- contact.css -- */
/* ── Contact — reused on Home and every Service/Industry page ── */
.contact { padding: var(--sp-20) 0; background: var(--clr-bg-light); }

.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }

.contact__form-side { background: var(--clr-white); padding: 52px 52px; }
.contact__form-heading { font-size: 45px; line-height: 54px; font-weight: 800; color: var(--clr-blue); margin-bottom: var(--sp-3); }
.contact__form-sub { font-size: 16px; line-height: 1.65; color: var(--clr-text-muted); margin-bottom: var(--sp-8); max-width: 44ch; }

.contact__form { display: flex; flex-direction: column; gap: var(--sp-5); }
.contact__field { display: flex; flex-direction: column; gap: 6px; }
.contact__label { font-size: 14px; font-weight: 500; color: var(--clr-text-body); }
.contact__required { color: #DC2626; margin-left: 2px; }

.contact__input,
.contact__textarea {
  border: 1.5px solid #DDE3EF;
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--clr-text-dark);
  background: #F4F7FC;
  transition: border-color var(--ease), background var(--ease);
  outline: none;
  width: 100%;
  font-family: inherit;
}
.contact__input:focus, .contact__textarea:focus { border-color: var(--clr-blue); background: var(--clr-white); }
.contact__input--error { border-color: #DC2626 !important; }
.contact__textarea { resize: none; min-height: 110px; }
.contact__input::placeholder, .contact__textarea::placeholder { color: var(--clr-text-light); }

select.contact__input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23677489' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact__error { font-size: 12px; color: #DC2626; font-weight: 500; }

.contact__phone-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 13px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--clr-text-dark);
  min-width: 0;
}

.contact__submit-row { display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap; padding-top: var(--sp-2); }
.contact__submit-btn { font-size: 13px; font-weight: 700; letter-spacing: 0.07em; padding: 14px 30px; }
.contact__submit-btn:disabled { opacity: 0.65; cursor: not-allowed; }

.contact__recaptcha-note { font-size: 11px; color: var(--clr-text-muted, #888); margin-top: var(--sp-2, 8px); }
.contact__recaptcha-note a { text-decoration: underline; color: inherit; }

.contact__status { font-size: 14px; font-weight: 500; }
.contact__status--ok  { color: #16A34A; }
.contact__status--err { color: #DC2626; }

.contact__info-side {
  position: relative;
  background: url('../../images/contact-bg.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 44px;
  overflow: hidden;
}

.contact__info-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 60% 20%, rgba(0, 180, 220, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(37,99,235,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.contact__info-cards { position: relative; z-index: 1; display: flex; flex-direction: column; gap: var(--sp-5); width: 100%; max-width: 420px; }

.contact__info-card {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.contact__info-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: #00D2D8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__info-icon svg { width: 22px; height: 22px; color: #031224; }

.contact__info-divider { width: 1px; height: 44px; background: rgba(255, 255, 255, 0.2); flex-shrink: 0; margin: 0 var(--sp-5); }

.contact__info-content { display: flex; flex-direction: column; gap: 3px; }
.contact__info-content a { font-size: 16px; font-weight: 500; color: var(--clr-white); text-decoration: none; transition: color var(--ease); line-height: 1.5; }
.contact__info-content a:hover { color: var(--clr-teal); }

.contact__card-country { display: block; font-size: 16px; font-weight: 700; color: var(--clr-white); line-height: 1.4; }
.contact__card-address { display: block; font-size: 14px; font-weight: 400; color: rgba(255, 255, 255, 0.8); line-height: 1.55; }

@media (max-width: 1024px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__form-sub { max-width: 100%; }
}

@media (max-width: 768px) {
  .contact__form-heading { font-size: 32px; line-height: 42px; }
  .contact__form-side { padding: 36px 28px; }
  .contact__info-side { padding: 40px 28px; }
}

@media (max-width: 480px) {
  .contact__form-side { padding: 24px 16px; }
  .contact__info-side { padding: 28px 16px; }
  .contact__form-heading { font-size: 26px; line-height: 36px; }
  .contact__info-card { padding: 14px 16px; }
  .contact__submit-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .contact__submit-btn { width: 100%; text-align: center; }
}

