/* ============================================
   SERVICE VARIANTS - Layout variants for unique service pages
   Loaded conditionally on service pages only
   v1.1 - polished per-section design
   ============================================ */

/* ================================================================
   INTRO VARIANTS
   ================================================================ */

/* --- Intro: Centered --- */
.svc-intro--centered .svc-intro__centered-body {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.svc-intro--centered .svc-intro__centered-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 16px;
}

.svc-intro--centered .svc-intro__centered-body p:first-child {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
}

.svc-intro--centered .svc-intro__badges-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.svc-intro--centered .svc-intro__badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--surface-light);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .svc-intro--centered .svc-intro__badge-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 46, 61, 0.08);
  }
}

/* --- Intro: Split --- */
.svc-intro--split {
  padding: clamp(48px, 6vw, 80px) 0;
}

.svc-intro--split .svc-intro__split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

.svc-intro--split .svc-intro__body {
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}

.svc-intro--split .svc-intro__body p:first-child {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.65;
}

.svc-intro--split .svc-intro__split-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 46, 61, 0.18),
    0 8px 20px rgba(0, 0, 0, 0.08);
  align-self: start;
  position: relative;
}

.svc-intro--split .svc-intro__split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.svc-intro--split .svc-intro__split-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  max-height: 420px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .svc-intro--split .svc-intro__split-image:hover img {
    transform: scale(1.03);
  }
}

.svc-intro--split .svc-intro__badges-row {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.svc-intro--split .svc-intro__badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--surface-white);
  border-radius: 8px;
  border: 1px solid rgba(0, 89, 122, 0.08);
  box-shadow: 0 2px 8px rgba(0, 46, 61, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.svc-intro--split .svc-intro__badge-item .svc-intro__highlight-icon {
  color: var(--accent);
}

@media (hover: hover) and (pointer: fine) {
  .svc-intro--split .svc-intro__badge-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 46, 61, 0.08);
  }
}

/* --- Intro: Editorial --- */
.svc-intro--editorial .svc-intro__editorial-body {
  max-width: 720px;
  margin: 0 auto;
}

.svc-intro--editorial .svc-intro__editorial-body p:first-child::first-letter {
  float: left;
  font-family: 'Crimson Pro', serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.8;
  padding-right: 12px;
  padding-top: 6px;
  color: var(--accent);
}

.svc-intro--editorial .svc-intro__editorial-body p {
  font-family: 'Crimson Pro', serif;
  font-size: 1.2rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 20px;
}

.svc-intro--editorial .svc-intro__editorial-body p:first-child {
  font-size: 1.3rem;
}

/* --- Intro: Magazine --- */
.svc-intro--magazine .svc-intro__magazine-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: start;
}

.svc-intro--magazine .svc-intro__magazine-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-intro--magazine .svc-intro__magazine-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface-white);
  border: 1px solid rgba(0, 89, 122, 0.08);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 46, 61, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .svc-intro--magazine .svc-intro__magazine-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 46, 61, 0.08);
  }
}


/* ================================================================
   EXTRA SECTIONS (service-specific content blocks)
   ================================================================ */
.svc-extra {
  padding: clamp(48px, 5vw, 72px) 0;
  background: var(--surface-light);
  position: relative;
}

.svc-extra::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--teal), transparent 80%);
}

.svc-extra__grid {
  max-width: 800px;
}

.svc-extra__grid--has-image {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.svc-extra .section-label {
  color: var(--accent);
}

.svc-extra .section-title {
  color: var(--text-dark);
  margin-bottom: 20px;
}

.svc-extra__body {
  color: var(--text-body);
  line-height: 1.75;
}

.svc-extra__body p {
  margin-bottom: 12px;
}

.svc-extra__body p:first-child {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
}

.svc-extra__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 46, 61, 0.15), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.svc-extra__image img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 400px;
}


/* ================================================================
   EXPERTISE VARIANTS
   ================================================================ */

/* --- Expertise: Overlap --- */
.svc-expertise--overlap {
  padding-top: 0;
  position: relative;
}

.svc-expertise__overlap-image {
  margin-top: -60px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 46, 61, 0.12);
  max-height: 400px;
}

.svc-expertise__overlap-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-expertise__overlap-content {
  max-width: 780px;
  margin: 40px auto 0;
}

/* --- Expertise: Full Background --- */
.svc-expertise--fullbg {
  position: relative;
  background-color: var(--navy-deep);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--section-pad) 0;
  border-top: none;
}

.svc-expertise__fullbg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 46, 61, 0.82) 0%,
    rgba(0, 30, 41, 0.9) 50%,
    rgba(0, 46, 61, 0.85) 100%
  );
  z-index: 1;
}

.svc-expertise--fullbg .container {
  position: relative;
  z-index: 2;
}

.svc-expertise__fullbg-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 48px 44px;
  max-width: 700px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.2),
    0 8px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--gold);
  position: relative;
}

.svc-expertise__fullbg-card .section-label {
  color: var(--accent);
}

.svc-expertise__fullbg-card .section-title {
  color: var(--text-dark);
}

.svc-expertise__fullbg-card .svc-expertise__text {
  color: var(--text-body);
}

/* --- Expertise: Pull Quote --- */
.svc-expertise--pull {
  padding: var(--section-pad) 0;
}

.svc-expertise__pull-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.svc-expertise__text--pull {
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
  text-align: left;
  margin-top: 24px;
}


/* ================================================================
   SCOPE VARIANTS
   ================================================================ */

/* --- Scope: Accordion --- */
.svc-scope__accordion {
  max-width: 800px;
  margin: 0 auto;
}

.svc-scope__accordion-item {
  border-bottom: 1px solid rgba(0, 89, 122, 0.1);
}

.svc-scope__accordion-item:last-child {
  border-bottom: none;
}

.svc-scope__accordion-trigger {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: color 0.2s ease;
}

.svc-scope__accordion-trigger:hover {
  color: var(--accent);
}

.svc-scope__accordion-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
  min-width: 40px;
  opacity: 0.5;
}

.svc-scope__accordion-title {
  flex: 1;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.svc-scope__accordion-chevron {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.svc-scope__accordion-item.active .svc-scope__accordion-chevron {
  transform: rotate(180deg);
}

.svc-scope__accordion-item.active .svc-scope__accordion-num {
  opacity: 1;
}

.svc-scope__accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-scope__accordion-item.active .svc-scope__accordion-panel {
  max-height: 500px;
}

.svc-scope__accordion-content {
  padding: 0 0 24px 56px;
  color: var(--text-body);
  line-height: 1.7;
}

.svc-scope__accordion-content p {
  margin-bottom: 8px;
}

/* --- Scope: Horizontal --- */
.svc-scope__horizontal-list {
  max-width: 800px;
  margin: 0 auto;
}

.svc-scope__horizontal-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0, 89, 122, 0.08);
  transition: background 0.2s ease;
}

.svc-scope__horizontal-item:last-child {
  border-bottom: none;
}

.svc-scope__horizontal-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  align-self: start;
  padding-top: 4px;
}

.svc-scope__horizontal-body .svc-scope__title {
  margin-bottom: 6px;
}

/* --- Scope: Staggered --- */
.svc-scope--staggered {
  padding: clamp(48px, 6vw, 80px) 0;
}

.svc-scope__staggered-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-scope__staggered-card {
  margin-left: var(--stagger-offset, 0);
  padding: 28px 32px;
  background: var(--surface-white);
  border: 1px solid rgba(0, 89, 122, 0.06);
  border-left: 4px solid var(--accent);
  border-radius: 4px 12px 12px 4px;
  box-shadow: 0 2px 12px rgba(0, 46, 61, 0.05);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.svc-scope__staggered-card:nth-child(even) {
  border-left-color: var(--teal);
}

.svc-scope__staggered-card .svc-scope__number {
  color: var(--accent);
  opacity: 0.35;
}

.svc-scope__staggered-card:nth-child(even) .svc-scope__number {
  color: var(--teal);
}

@media (hover: hover) and (pointer: fine) {
  .svc-scope__staggered-card:hover {
    transform: translateY(-3px) translateX(6px);
    box-shadow: 0 12px 32px rgba(0, 46, 61, 0.1);
    border-left-color: var(--gold);
  }
}

/* --- Scope: Compact --- */
.svc-scope__compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-scope__compact-card {
  padding: 24px 20px;
  background: var(--surface-white);
  border: 1px solid rgba(0, 89, 122, 0.06);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.svc-scope__compact-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
}

.svc-scope__compact-card .svc-scope__number {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.svc-scope__compact-card .svc-scope__title {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.svc-scope__compact-card .svc-scope__desc {
  font-size: 0.85rem;
}

@media (hover: hover) and (pointer: fine) {
  .svc-scope__compact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 46, 61, 0.08);
  }
}


/* ================================================================
   PROCESS VARIANTS
   ================================================================ */

/* --- Process: Stepper --- */
.svc-process__stepper {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 48px;
}

.svc-process__stepper-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.svc-process__stepper-indicator {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.svc-process__stepper-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text-white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 137, 182, 0.25);
}

.svc-process__stepper-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 100%);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(0, 137, 182, 0.2));
  transform: translateX(24px);
  z-index: 1;
}

.svc-process__stepper-body {
  padding: 0 12px;
}

.svc-process__stepper-body .svc-process__title {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.svc-process__stepper-body .svc-process__desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-body);
}

/* --- Process: Cards --- */
.svc-process__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.svc-process__card {
  padding: 32px 24px;
  background: var(--surface-white);
  border: 1px solid rgba(0, 89, 122, 0.08);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 46, 61, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.svc-process__card-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.svc-process__card .svc-process__title {
  margin-bottom: 8px;
}

@media (hover: hover) and (pointer: fine) {
  .svc-process__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 46, 61, 0.08);
  }
  .svc-process__card:hover .svc-process__card-num {
    opacity: 0.6;
  }
}

/* --- Process: Alternating --- */
.svc-process__alternating {
  position: relative;
  margin-top: 48px;
  padding: 0 20px;
}

/* Central vertical line */
.svc-process__alternating::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(0, 137, 182, 0.15) 100%);
  transform: translateX(-1px);
}

.svc-process__alt-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
  position: relative;
}

.svc-process__alt-step:last-child {
  margin-bottom: 0;
}

.svc-process__alt-step--left .svc-process__alt-content {
  grid-column: 1;
  text-align: right;
  padding-right: 8px;
}

.svc-process__alt-step--left .svc-process__alt-marker {
  grid-column: 2;
}

.svc-process__alt-step--right .svc-process__alt-content {
  grid-column: 3;
  text-align: left;
  padding-left: 8px;
}

.svc-process__alt-step--right .svc-process__alt-marker {
  grid-column: 2;
  grid-row: 1;
}

.svc-process__alt-marker {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}

.svc-process__alt-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 137, 182, 0.15);
  flex-shrink: 0;
}

.svc-process__alt-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}


/* ================================================================
   WHY-US VARIANTS
   ================================================================ */

/* --- Why: Light --- */
.svc-why--light {
  background: var(--surface-light);
  color: var(--text-dark);
  padding: var(--section-pad) 0;
}

.svc-why--light::before {
  display: none;
}

.svc-why--light .svc-why__header {
  margin-bottom: 48px;
}

.svc-why--light .section-label {
  color: var(--accent);
}

.svc-why--light .section-title {
  color: var(--text-dark);
}

.svc-why__light-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.svc-why__light-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px;
  background: var(--surface-white);
  border-radius: 10px;
  border: 1px solid rgba(0, 89, 122, 0.1);
  box-shadow: 0 2px 8px rgba(0, 46, 61, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.svc-why__light-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}

.svc-why--light .svc-why__text {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (hover: hover) and (pointer: fine) {
  .svc-why__light-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 46, 61, 0.06);
  }
}

/* Divider for light variant */
.section-divider--white-to-light {
  height: 60px;
  background: linear-gradient(to bottom, var(--surface-white), var(--surface-light));
}

/* --- Why: Testimonial --- */
.svc-why--testimonial {
  background: var(--navy-deep);
  padding: var(--section-pad) 0;
  position: relative;
}

.svc-why--testimonial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(0, 137, 182, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.svc-why__testimonial-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.svc-why__testimonial-item {
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 8px 8px 0;
  margin: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.svc-why__testimonial-item p {
  color: var(--text-light);
  font-family: 'Crimson Pro', serif;
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

@media (hover: hover) and (pointer: fine) {
  .svc-why__testimonial-item:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(4px);
  }
}

/* --- Why: Compact --- */
.svc-why--compact-variant {
  background: var(--navy-deep);
  padding: var(--section-pad) 0;
  position: relative;
}

.svc-why--compact-variant::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(0, 137, 182, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.svc-why__compact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.svc-why__compact-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.svc-why__compact-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-why__compact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-why__compact-text {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (hover: hover) and (pointer: fine) {
  .svc-why__compact-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }
}


/* ================================================================
   RESPONSIVE - 768px
   ================================================================ */
@media (max-width: 768px) {
  /* Intro: Split -> stack */
  .svc-intro--split .svc-intro__split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .svc-intro--split .svc-intro__body {
    padding-left: 16px;
  }

  .svc-intro--split .svc-intro__split-image img {
    max-height: 260px;
  }

  .svc-intro--split .svc-intro__badges-row {
    gap: 12px;
  }

  .svc-intro--split .svc-intro__badge-item {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  /* Intro: Magazine -> stack */
  .svc-intro--magazine .svc-intro__magazine-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Intro: Centered badges -> wrap tighter */
  .svc-intro--centered .svc-intro__badges-row {
    gap: 16px;
  }

  .svc-intro--centered .svc-intro__badge-item {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  /* Extra section */
  .svc-extra__grid--has-image {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .svc-extra__image img {
    max-height: 260px;
  }

  /* Expertise: Overlap */
  .svc-expertise__overlap-image {
    margin-top: -40px;
    max-height: 280px;
  }

  .svc-expertise__fullbg-card {
    padding: 32px 24px;
  }

  /* Scope: Compact -> 2 columns */
  .svc-scope__compact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Scope: Staggered -> no offset */
  .svc-scope__staggered-card {
    margin-left: 0 !important;
  }

  /* Scope: Horizontal -> smaller numbers */
  .svc-scope__horizontal-item {
    grid-template-columns: 60px 1fr;
    gap: 0 16px;
  }

  .svc-scope__horizontal-num {
    font-size: 2rem;
  }

  /* Process: Stepper -> vertical */
  .svc-process__stepper {
    flex-direction: column;
    gap: 24px;
  }

  .svc-process__stepper-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }

  .svc-process__stepper-indicator {
    margin-bottom: 0;
  }

  .svc-process__stepper-line {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 48px;
    transform: translateX(-1px);
  }

  .svc-process__stepper-num {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  /* Process: Alternating -> single column */
  .svc-process__alternating::before {
    left: 20px;
  }

  .svc-process__alt-step {
    grid-template-columns: auto 1fr;
    gap: 16px;
  }

  .svc-process__alt-step--left .svc-process__alt-content,
  .svc-process__alt-step--right .svc-process__alt-content {
    grid-column: 2;
    text-align: left;
    padding: 0;
  }

  .svc-process__alt-step--left .svc-process__alt-marker,
  .svc-process__alt-step--right .svc-process__alt-marker {
    grid-column: 1;
    grid-row: 1;
  }

  /* Process: Cards -> 1 column */
  .svc-process__cards-grid {
    grid-template-columns: 1fr;
  }

  /* Why: Light + Testimonial grids */
  .svc-why__light-grid {
    grid-template-columns: 1fr;
  }

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

  /* Why: Compact pills */
  .svc-why__compact-pills {
    gap: 8px;
  }

  .svc-why__compact-pill {
    padding: 10px 16px;
  }
}

/* ================================================================
   RESPONSIVE - 1024px
   ================================================================ */
@media (max-width: 1024px) and (min-width: 769px) {
  .svc-intro--split .svc-intro__split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .svc-intro--magazine .svc-intro__magazine-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
  }

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

  .svc-process__stepper-body .svc-process__desc {
    font-size: 0.8rem;
  }

  .svc-extra__grid--has-image {
    grid-template-columns: 1fr 0.7fr;
    gap: 32px;
  }
}
