/*
 * Service Detail Page — service-detail.css
 *
 * Covers all sections in template-parts/services/sections/*.php
 * and replicated shared-section styles (FAQ, Operations Team)
 * so home.css / about-page.css are not required on service pages.
 *
 * Brand palette (used directly — no CSS variables required):
 *   Navy:      #071B2E
 *   Gold:      #D6B54A
 *   Dark:      #030A12
 *   White:     #FFFFFF
 *   Light bg:  #F5F7FA
 *   Muted:     #64748B
 *   Border:    #E5E7EB
 *
 * @package KalumKabs
 */

/* ══════════════════════════════════════════════════════════════
   A. HERO SECTION — .svd-hero__*
══════════════════════════════════════════════════════════════ */

.svd-hero {
  position: relative;
  min-height: 600px;
  background: #071B2E no-repeat center / cover;
  display: flex;
  align-items: center;
  padding: calc(var(--site-header-full-height, 153px) + 80px) 0 100px;
}

.svd-hero__overlay {
  display: none;
}

.svd-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.svd-hero__content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.svd-hero__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.svd-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 999px;
  padding: 6px 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #FFFFFF;
}

.svd-hero__divider {
  display: none;
}

.svd-hero__tagline {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D6B54A;
  margin: 0 0 20px;
}

.svd-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.18;
  color: #FFFFFF;
  margin: 0 0 20px;
}

.svd-hero__highlight {
  font-style: normal;
  color: #D6B54A;
}

.svd-hero__desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.80);
  margin: 0 0 8px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.svd-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
  justify-content: center;
}

.svd-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(4px);
}

.svd-hero__chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.svd-hero__chip-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.svd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
  justify-content: center;
}

.svd-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 32px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.svd-hero__btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.svd-hero__btn--primary {
  background: #D6B54A;
  color: #071B2E;
  box-shadow: 0 4px 18px rgba(214, 181, 74, 0.35);
}

.svd-hero__btn--secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.svd-hero__btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.75);
}


/* ══════════════════════════════════════════════════════════════
   B. SERVICE CARDS SECTION — .svd-cards__ / .svd-card__
══════════════════════════════════════════════════════════════ */

.svd-cards {
  background: #F5F7FA;
  padding: 80px 0;
}

.svd-cards__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.svd-cards__header {
  text-align: center;
  margin-bottom: 56px;
}

.svd-cards__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #071B2E;
  margin: 0 0 12px;
  line-height: 1.25;
}

.svd-cards__subtitle {
  font-size: 1rem;
  color: #64748B;
  margin: 0 auto;
  line-height: 1.65;
}

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

.svd-card {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.svd-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
}



.svd-card__icon-wrap img {
  width: 50px;
  height: 50px;
    margin-bottom: 20px;

  object-fit: contain;
}

.svd-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #071B2E;
  margin: 0 0 8px;
  line-height: 1.35;
}

.svd-card__desc {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.65;
  margin: 0;
}

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

@media (max-width: 599px) {
  .svd-cards__grid {
    grid-template-columns: 1fr;
  }
}


/* ══════════════════════════════════════════════════════════════
   C. WHY CHOOSE SECTION — .svd-why__*
══════════════════════════════════════════════════════════════ */

.svd-why {
  background: #FFFFFF;
  padding: 100px 0;
}

.svd-why__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.svd-why__title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #071B2E;
  margin: 0 0 56px;
  line-height: 1.25;
}

.svd-why__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 48px;
}

.svd-why__image-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: auto;
}

.svd-why__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svd-why__image-placeholder {
  width: 100%;
  height: 100%;
  background: #E5E7EB;
  border-radius: 20px;
}

.svd-why__points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 8px;
}

.svd-why__point {
  display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid #E8E8E8;
    padding: 15px;
    border-radius: 12px;
}

.svd-why__point-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: #F5F7FA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svd-why__point-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.svd-why__point-body {
  flex: 1;
}

.svd-why__point-title {
  font-size: 1rem;
  font-weight: 700;
  color: #071B2E;
  margin: 0 0 4px;
  line-height: 1.35;
}

.svd-why__point-desc {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.65;
  margin: 0;
}

.svd-why__bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svd-why__bcard {
  border: 1px solid #E8E8E8;
  border-radius: 16px;
  padding: 28px 24px;
}

.svd-why__bcard:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
  transform: translateY(-2px);
}



.svd-why__bcard-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 20px;
}

.svd-why__bcard-title {
  font-size: 1rem;
  font-weight: 700;
  color: #071B2E;
  margin: 0 0 8px;
  line-height: 1.35;
}

.svd-why__bcard-desc {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.65;
  margin: 0;
}

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

  .svd-why__image-wrap {
    aspect-ratio: 16 / 9;
  }

  .svd-why__bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 599px) {
  .svd-why__bottom {
    grid-template-columns: 1fr;
  }
}


/* ══════════════════════════════════════════════════════════════
   D. PROCESS SECTION — .svd-proc__*
══════════════════════════════════════════════════════════════ */

.svd-proc {
  background: #071B2E;
  padding: 100px 0;
}

.svd-proc__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.svd-proc__header {
  text-align: center;
  margin-bottom: 64px;
}

.svd-proc__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 12px;
  line-height: 1.25;
}

.svd-proc__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto;
  line-height: 1.65;
}

.svd-proc__steps {
  display: flex;
  position: relative;
  justify-content: space-between;
  gap: 0;
}

.svd-proc__track {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(214, 181, 74, 0.2);
  pointer-events: none;
}

.svd-proc__fill {
  height: 100%;
  width: 0%;
  background: #D6B54A;
  transition: width 1.5s ease 0.3s;
}

.svd-proc__step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.svd-proc__step-icon-wrap {
  position: relative;
  display: inline-flex;
  margin-bottom: 20px;
}

.svd-proc__step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.svd-proc__step:hover .svd-proc__step-icon {
  border-color: #D6B54A;
  background: rgba(214, 181, 74, 0.20);
}

.svd-proc__step-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.svd-proc__step-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #D6B54A;
  color: #071B2E;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.svd-proc__step-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px;
  line-height: 1.35;
}

.svd-proc__step-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.65;
  margin: 0;
}

.svd-proc__cta {
  text-align: center;
  margin-top: 56px;
}

.svd-proc__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #D6B54A;
  color: #071B2E;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: 999px;
  text-decoration: none;
  
}

.svd-proc__btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(214, 181, 74, 0.45);
}

/* ── 1280px: shrink icons so 5 steps don't overflow ── */
@media (max-width: 1280px) {
  .svd-proc__step {
    padding: 0 8px;
  }
  .svd-proc__step-icon {
    width: 68px;
    height: 68px;
  }
  .svd-proc__step-icon img {
    width: 30px;
    height: 30px;
  }
  .svd-proc__track {
    top: 34px;
  }
}

/* ── 1024px: tighter text before going vertical ── */
@media (max-width: 1024px) {
  .svd-proc__step-icon {
    width: 60px;
    height: 60px;
  }
  .svd-proc__step-icon img {
    width: 26px;
    height: 26px;
  }
  .svd-proc__track {
    top: 30px;
  }
  .svd-proc__step-title {
    font-size: 0.875rem;
  }
  .svd-proc__step-desc {
    font-size: 0.75rem;
  }
}

/* ── 991px: vertical stacked layout ── */
@media (max-width: 991px) {
  .svd-proc {
    padding: 80px 0;
  }

  .svd-proc__header {
    margin-bottom: 48px;
  }

  .svd-proc__track {
    display: none;
  }

  .svd-proc__steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: relative;
    padding-left: 0;
  }

  /* vertical dashed connector between steps */
  .svd-proc__steps::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 68px;
    bottom: 68px;
    width: 2px;
    background: repeating-linear-gradient(
      to bottom,
      rgba(214, 181, 74, 0.35) 0px,
      rgba(214, 181, 74, 0.35) 6px,
      transparent 6px,
      transparent 12px
    );
    pointer-events: none;
    z-index: 0;
  }

  .svd-proc__step {
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex: none;
    width: 100%;
    padding: 0 0 36px 0;
    position: relative;
  }

  .svd-proc__step:last-child {
    padding-bottom: 0;
  }

  .svd-proc__step-icon-wrap {
    flex-shrink: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
  }

  .svd-proc__step-icon {
    width: 64px;
    height: 64px;
    background: #071B2E;
  }

  .svd-proc__step-icon img {
    width: 28px;
    height: 28px;
  }

  .svd-proc__step-title {
    font-size: 0.9375rem;
    margin-top: 4px;
  }

  .svd-proc__step-desc {
    font-size: 0.875rem;
  }
}

/* ── 767px: mobile ── */
@media (max-width: 767px) {
  .svd-proc {
    padding: 64px 0;
  }

  .svd-proc__container {
    padding: 0 20px;
  }

  .svd-proc__steps::before {
    left: 27px;
    top: 60px;
    bottom: 60px;
  }

  .svd-proc__step {
    gap: 16px;
    padding-bottom: 28px;
  }

  .svd-proc__step-icon {
    width: 56px;
    height: 56px;
  }

  .svd-proc__step-icon img {
    width: 24px;
    height: 24px;
  }

  .svd-proc__step-badge {
    width: 22px;
    height: 22px;
    font-size: 10px;
    top: -4px;
    right: -4px;
  }

  .svd-proc__step-title {
    font-size: 0.875rem;
  }

  .svd-proc__step-desc {
    font-size: 0.8125rem;
  }

  .svd-proc__cta {
    margin-top: 40px;
  }

  .svd-proc__btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}


/* ══════════════════════════════════════════════════════════════
   E. BENEFITS SECTION — .svd-ben__*
══════════════════════════════════════════════════════════════ */

.svd-ben {
  background: #F5F7FA;
  padding: 100px 0;
}

.svd-ben__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.svd-ben__header {
  text-align: center;
  margin-bottom: 56px;
}

.svd-ben__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #071B2E;
  margin: 0 0 12px;
  line-height: 1.25;
}

.svd-ben__subtitle {
  font-size: 1rem;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* 6-col grid: first 3 cards span 2 cols (→ 3 per row),
   remaining cards span 3 cols (→ 2 per row)           */
.svd-ben__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.svd-ben__card {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.svd-ben__card:nth-child(-n+3) {
  grid-column: span 2;
}

.svd-ben__card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}

.svd-ben__card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50px;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 20px;
}

.svd-ben__card-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.svd-ben__card-body {
  flex: 1;
}

.svd-ben__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #071B2E;
  margin: 0 0 8px;
  line-height: 1.4;
}

.svd-ben__card-desc {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 991px) {
  .svd-ben__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svd-ben__card,
  .svd-ben__card:nth-child(-n+3) {
    grid-column: span 1;
  }
}

@media (max-width: 599px) {
  .svd-ben__grid {
    grid-template-columns: 1fr;
  }
}


/* ══════════════════════════════════════════════════════════════
   F. FEATURES STRIP — .svd-feat__*
══════════════════════════════════════════════════════════════ */

.svd-feat {
  background: #030A12;
  padding: 60px 0;
}

.svd-feat__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.svd-feat__header {
  text-align: center;
  margin-bottom: 48px;
}

.svd-feat__title {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 8px;
  line-height: 1.25;
}

.svd-feat__subtitle {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.svd-feat__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.svd-feat__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 16px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.svd-feat__item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(214, 181, 74, 0.25);
}

.svd-feat__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svd-feat__icon svg {
  width: 36px;
  height: 36px;
}

.svd-feat__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.svd-feat__label {
  color: #FFFFFF;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .svd-feat__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 599px) {
  .svd-feat__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ══════════════════════════════════════════════════════════════
   G. FAQ SECTION — .faq-section__*
   Replicated from home.css / faq styles so home.css is not needed
══════════════════════════════════════════════════════════════ */

.faq-section {
  background: #FFFFFF;
  padding: 80px 0;
}

.faq-section__container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-section__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #071B2E;
  margin: 0 0 12px;
  line-height: 1.25;
}

.faq-section__subtitle {
  font-size: 1rem;
  color: #64748B;
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto;
}

/* Card-style items with gap between each */
.faq-section__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-section__item {
  background: #F5F7FA;
  border: 1px solid #EEEEEE;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-section__item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Remove old divider-line rules */
.faq-section__item:first-child {
  border-top: 1px solid #EEEEEE;
}

.faq-section__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #071B2E;
  gap: 16px;
}

.faq-section__trigger:hover {
  color: #071B2E;
}

.faq-section__question {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: #071B2E;
}

.faq-section__icon {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: #64748B;
}

.faq-section__item[data-open="true"] .faq-section__icon,
.faq-section__trigger[aria-expanded="true"] .faq-section__icon,
.faq-section__item.open .faq-section__icon {
  transform: rotate(180deg);
  color: #071B2E;
}

.faq-section__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-section__panel[aria-hidden="false"],
.faq-section__panel.is-open,
.faq-section__item.open .faq-section__panel {
  max-height: 600px;
}

.faq-section__answer {
  padding: 0 24px 22px;
  color: #64748B;
  line-height: 1.75;
  font-size: 0.9375rem;
  margin: 0;
}

@media (max-width: 767px) {
  .faq-section {
    padding: 56px 0;
  }
  .faq-section__trigger {
    padding: 18px 20px;
  }
  .faq-section__answer {
    padding: 0 20px 18px;
  }
  .faq-section__question {
    font-size: 0.9375rem;
  }
}


/* ══════════════════════════════════════════════════════════════
   H. OPERATIONS TEAM — .ab-team, .ops-*
   Replicated from about-page.css so it works on service pages
══════════════════════════════════════════════════════════════ */

.ab-team {
  background: #FFFFFF;
  padding: 80px 0;
}

.ab-team__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ab-team__header {
  text-align: center;
  margin-bottom: 48px;
}

.ab-team__header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #071B2E;
  margin: 0 0 12px;
  line-height: 1.25;
}

.ab-team__header p {
  font-size: 1rem;
  color: #64748B;
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
}

.ops-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.ops-top-grid__right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.ops-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ops-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #E5E7EB;
}

.ops-img-wrap--large {
  aspect-ratio: 4 / 5;
}

.ops-img-wrap--wide {
  aspect-ratio: 16 / 9;
}

.ops-img-wrap--small {
  aspect-ratio: 4 / 3;
}

.ops-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ops-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(7, 27, 46, 0.85);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(4px);
}

.ops-badge__icon-circle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(214, 181, 74, 0.15);
  border: 1px solid rgba(214, 181, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ops-badge__icon-circle img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.ops-badge__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
  min-width: 0;
}

.ops-badge__title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.ops-badge__subtitle {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

  .ops-top-grid__right {
    grid-template-rows: auto;
  }

  .ops-bottom-grid {
    grid-template-columns: 1fr;
  }
}


/* ══════════════════════════════════════════════════════════════
   I. GLOBAL RESPONSIVE HELPERS
══════════════════════════════════════════════════════════════ */

@media (max-width: 767px) {
  .svd-hero {
    min-height: 500px;
    padding: calc(var(--site-header-full-height, 153px) + 48px) 0 72px;
  }

  .svd-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .svd-hero__btn {
    width: 100%;
    justify-content: center;
  }

  .svd-cards {
    padding: 56px 0;
  }

  .svd-why {
    padding: 64px 0;
  }

  .svd-proc {
    padding: 64px 0;
  }

  .svd-ben {
    padding: 64px 0;
  }

  .svd-feat {
    padding: 48px 0;
  }

  .faq-section {
    padding: 56px 0;
  }

  .ab-team {
    padding: 56px 0;
  }

  .svd-ops {
    padding: 56px 0;
  }
}

/* ══════════════════════════════════════════════════════════════
   I. OPERATIONS TEAM SECTION — .svd-ops__*
══════════════════════════════════════════════════════════════ */

.svd-ops {
  background: #F5F7FA;
  padding: 80px 0;
}

.svd-ops__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.svd-ops__header {
  text-align: center;
  margin-bottom: 40px;
}

.svd-ops__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #071B2E;
  margin: 0 0 12px;
  line-height: 1.2;
}

.svd-ops__subtitle {
  font-size: 1rem;
  color: #64748B;
  margin: 0 auto 16px;
  line-height: 1.6;
}


/* Card grid — 5 equal-width cards in one row */
.svd-ops__grid {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

/* Individual card — image set as CSS background-image via inline style in PHP */
.svd-ops__item {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
border-radius: 24px;
    box-shadow: 0px 2px 14px 0px #0B1E3617;
    background: #FFFFFF01;
}

/* Label — white bold, bottom-left, over the photo */
.svd-ops__label {
  position: absolute;
  bottom: 20px;
    left: 16px;
    right: 16px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.75);
}

/* ── Responsive ── */

/* Tablet landscape: 3 per row */
@media (max-width: 1024px) {
  .svd-ops__grid {
    flex-wrap: wrap;
    gap: 12px;
  }

  .svd-ops__item {
    flex: 1 1 calc(33.333% - 8px);
    min-width: 0;
    height: 160px;
  }

  .svd-ops__label {
    font-size: 0.8rem;
    bottom: 14px;
    left: 12px;
    right: 12px;
  }
}

/* Tablet portrait: 2 per row */
@media (max-width: 767px) {
  .svd-ops {
    padding: 48px 0;
  }

  .svd-ops__container {
    padding: 0 16px;
  }

  .svd-ops__header {
    margin-bottom: 28px;
  }

  .svd-ops__title {
    font-size: 1.5rem;
  }

  .svd-ops__subtitle {
    font-size: 0.9rem;
  }

  .svd-ops__grid {
    gap: 10px;
  }

  .svd-ops__item {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    height: 160px;
  }

  .svd-ops__label {
    font-size: 0.82rem;
    font-weight: 700;
    bottom: 12px;
    left: 12px;
    right: 12px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.9);
  }
}

/* Mobile: 1 per row */
@media (max-width: 480px) {
  .svd-ops {
    padding: 40px 0;
  }

  .svd-ops__container {
    padding: 0 12px;
  }

  .svd-ops__grid {
    gap: 8px;
  }

  .svd-ops__item {
    flex: 1 1 100%;
    min-width: 0;
    height: 200px;
    background-size: cover;
    background-position: center;
  }

  .svd-ops__label {
    font-size: 1rem;
    font-weight: 700;
    bottom: 16px;
    left: 16px;
    right: 16px;
    line-height: 1.3;
    text-shadow: 0 1px 8px rgba(0,0,0,0.95);
  }
}
