/* ══════════════════════════════════════════
   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;
  }
}

/* ══════════════════════════════════════════
   INDUSTRIES PAGE — HEADER + FILTER BAR
══════════════════════════════════════════ */
.industries-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

/* Heading */
.industries-header__heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: normal;
  text-align: center;
  margin: 0;
}

/* Controls row: filter btn + search */
.industries-header__controls {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  width: 100%;
}

/* ── All Industries filter button ── */
.industries-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-pill);
  padding: 16px 24px;
  font-family: var(--font-jakarta);
  font-size: 16px;
  font-weight: 600;
  color: #3f4254;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.industries-filter-btn:hover {
  border-color: #c9a75c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.industries-filter-btn svg { flex-shrink: 0; }

/* ── Search bar ── */
.industries-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-pill);
  padding: 12px 19px;
  width: 736px;
  max-width: 100%;
  transition: border-color 0.2s;
}

.industries-search:focus-within {
  border-color: #c9a75c;
}

.industries-search svg { flex-shrink: 0; }

.industries-search input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-jakarta);
  font-size: 16px;
  font-weight: 400;
  color: #3f4254;
  background: transparent;
  min-width: 0;
}

.industries-search input::placeholder { color: #3f4254; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .industries-header__heading { font-size: 32px; }
  .industries-search { width: 100%; }
  .industries-header__controls { flex-wrap: wrap; }
}

@media (max-width: 767px) {
  .industries-header__heading { font-size: 26px; }
  .industries-header__controls { flex-direction: column; align-items: stretch; }
  .industries-filter-btn { justify-content: center; }
  .industries-search { width: 100%; }
}
/* ══════════════════════════════════════════
   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 INDUSTRY — ABOUT / WHY IT MATTERS
══════════════════════════════════════════ */
.ind-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px var(--section-x);
  background-color: #f7f6f3;
  width: 100%;
}

/* ── Text block ── */
.ind-about__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

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

.ind-about__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.ind-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: 4 columns ── */
.ind-about__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 100%;
}

/* ── Feature card ── */
.ind-feature-card {
  background-color: var(--color-white);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

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

.ind-feature-card__icon img {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
}

/* Text block */
.ind-feature-card__text {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

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

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

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

/* ── Responsive ── */
@media (max-width: 1199px) {
  .ind-about__cards { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .ind-about__heading { font-size: 32px; }
}

@media (max-width: 767px) {
  .ind-about__cards { grid-template-columns: 1fr; gap: 16px; }
  .ind-about__heading { font-size: 26px; }
  .ind-about__btns { flex-direction: column; align-items: stretch; }
  .svc-hero__btn { justify-content: center; }
}
/* ══════════════════════════════════════════
   SINGLE INDUSTRY — COVERAGE SOLUTIONS SECTION
══════════════════════════════════════════ */
.ind-coverage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px var(--section-x);
  background-color: var(--color-white);
}

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

.ind-coverage__heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: #171a46;
  line-height: 1.2;
  margin: 0;
}

.ind-coverage__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 ── */
.ind-coverage__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  align-items: stretch;
}

/* ══════════════════════════════════════════
   COVERAGE CARD — DEFAULT STATE
══════════════════════════════════════════ */
.cov2-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #b8b6b6;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--color-white);
  cursor: pointer;
}

/* ── Card head — default: light grey ── */
.cov2-card__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background-color: #f3f5f7;
  width: 100%;
  flex-shrink: 0;
}

/* Icon row */
.cov2-card__icon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

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

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

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

/* Badge */
.cov2-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #d1fae5;
  border-radius: var(--radius-md);
  padding: 6px 12px;
  font-family: var(--font-jakarta);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-body);
  white-space: nowrap;
}

/* Title — default: navy */
.cov2-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 28px;
  margin: 0;
}

/* ── Card body ── */
.cov2-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  flex: 1;
}

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

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

.cov2-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;
}

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

/* Card button — default: outlined */
.cov2-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  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;
  color: var(--color-primary);
  background-color: transparent;
  border: 1px solid #d2d2cc;
}

/* Button arrow — default: navy stroke */
.cov2-card__btn svg path {
  stroke: var(--color-primary);
}

/* ══════════════════════════════════════════
   COVERAGE CARD — HOVER STATE (matches card 1)
══════════════════════════════════════════ */

/* Card border disappears, shadow appears */
.cov2-card:hover {
  border-color: transparent;
  box-shadow: 0px 10px 15px -4px rgba(0, 0, 0, 0.25);
}

/* Head turns dark navy */
.cov2-card:hover .cov2-card__head {
  background-color: var(--color-primary);
}

/* Icon bubble turns dark charcoal */
.cov2-card:hover .cov2-card__icon {
  background-color: #313a42;
  border-color: transparent;
  box-shadow: 2px 4px 5px rgba(176, 141, 87, 0.10);
}

/* Icon swap */
.cov2-card:hover .icon-default { display: none;  }
.cov2-card:hover .icon-hover   { display: block; }

/* Title turns white */
.cov2-card:hover .cov2-card__title {
  color: var(--color-white);
}

/* Button turns dark navy filled */
.cov2-card:hover .cov2-card__btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Button arrow turns white */
.cov2-card:hover .cov2-card__btn svg path {
  stroke: var(--color-white);
}

/* ── CTA Banner ── */
.ind-coverage__cta-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 36px;
  border-radius: var(--radius-md);
  border: 1px solid #5ea7ff;
  text-align: center;
  width: 926px;
  max-width: 100%;
  background: radial-gradient(ellipse at center, #0f1116 0%, #0d1829 50%, #0b1f3b 100%);
}

.ind-coverage__cta-heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 34px;
  margin: 0;
}

.ind-coverage__cta-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: #f7f2ea;
  line-height: 24px;
  margin: 0;
}

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

@media (max-width: 767px) {
  .ind-coverage__grid { grid-template-columns: 1fr; }
  .ind-coverage__heading { font-size: 26px; }
  .ind-coverage__cta-banner { padding: 24px 20px; }
  .ind-coverage__cta-heading { font-size: 22px; }
}

/* ============================================================
   ind-problems  —  Main Problems/Challenges Section
   File: css/pages/industries.css
   ============================================================ */

/* ── Section wrapper ── */
.ind-problems {
    background-color: #f7f2ea;
    padding: 80px var(--section-x);
}

.ind-problems__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

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

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

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

/* ── Accordion list ── */
.ind-problems__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

/* ── Single accordion item ── */
.prob-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* Closed state: white card with gold border */
    background-color: var(--color-white);
    border: 1px solid var(--color-border-gold);
}

/* ── Trigger button (always visible header row) ── */
.prob-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

/* Icon circle — closed: gold bg */
.prob-item__icon-wrap {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 100px;
    background-color: #f7f3e9;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon swap helpers */
.prob-item__icon-wrap .icon-hover  { display: none;  }
.prob-item__icon-wrap .icon-default { display: block; }

/* Text meta */
.prob-item__meta {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.prob-item__name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 24px;
}

.prob-item__num {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-body);
    line-height: 24px;
}

/* Toggle icon (+/−) */
.prob-item__toggle-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prob-item__toggle-icon .icon-minus { display: none; }
.prob-item__toggle-icon .icon-plus  { display: block; }

/* ── Expandable body — hidden by default ── */
.prob-item__body {
    display: none;
}

.prob-item__body-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-top: 1px solid var(--color-border-gold);
}

/* Problem / Solution blocks */
.prob-item__block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    border-radius: var(--radius-md);
}

.prob-item__block--bg {
    background-color: #f3f5f7;
}

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

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

/* ============================================================
   OPEN STATE — applied to first item by default & via jQuery
   ============================================================ */
.prob-item--open {
    /* Blue outline border matches Figma open card */
    border-color: #5ea7ff;
    background-color: transparent;
}

/* Open: trigger row = dark navy bg */
.prob-item--open > .prob-item__trigger {
    background-color: var(--color-primary);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Open: icon circle = dark charcoal bg */
.prob-item--open > .prob-item__trigger .prob-item__icon-wrap {
    background-color: #313a42;
}

/* Open: icon swap to white version */
.prob-item--open > .prob-item__trigger .prob-item__icon-wrap .icon-default { display: none;  }
.prob-item--open > .prob-item__trigger .prob-item__icon-wrap .icon-hover   { display: block; }

/* Open: text colours become white */
.prob-item--open > .prob-item__trigger .prob-item__name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 28px;
}

.prob-item--open > .prob-item__trigger .prob-item__num {
    color: var(--color-white);
}

/* Open: show minus icon, hide plus */
.prob-item--open > .prob-item__trigger .prob-item__toggle-icon .icon-plus  { display: none;  }
.prob-item--open > .prob-item__trigger .prob-item__toggle-icon .icon-minus { display: block; }

/* Open: expand the body */
.prob-item--open > .prob-item__body {
    display: block;
    background-color: var(--color-white);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ── CTA Banner ── */
.ind-problems__banner {
    width: 100%;
    max-width: 926px;
    padding: 36px 56px;
    border-radius: var(--radius-md);
    border: 1px solid #5ea7ff;
    background: radial-gradient(ellipse at center, #0d1829 0%, #0d1829 50%, #0b1f3b 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.ind-problems__banner-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin: 0;
}

.ind-problems__banner-sub {
    font-family: var(--font-jakarta);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 24px;
    margin: 0;
}

.ind-problems__banner-btns {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .ind-problems {
        padding: 60px 40px;
    }

    .ind-problems__title {
        font-size: 34px;
    }

    .ind-problems__banner {
        padding: 32px 36px;
        max-width: 100%;
    }

    .ind-problems__banner-title {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ind-problems {
        padding: 48px 24px;
    }

    .ind-problems__title {
        font-size: 26px;
    }

    .ind-problems__subtitle {
        font-size: 15px;
    }

    .prob-item__trigger {
        padding: 16px;
        gap: 12px;
    }

    .prob-item__icon-wrap {
        width: 48px;
        height: 48px;
    }

    .prob-item__icon-wrap img {
        width: 24px;
        height: 24px;
    }

    .prob-item__name {
        font-size: 14px;
    }

    .prob-item__num {
        font-size: 13px;
    }

    .prob-item__body-inner {
        padding: 16px;
        gap: 12px;
    }

    .prob-item__block {
        padding: 16px;
    }

    .ind-problems__banner {
        padding: 28px 24px;
        max-width: 100%;
    }

    .ind-problems__banner-title {
        font-size: 22px;
    }

    .ind-problems__banner-sub {
        font-size: 14px;
    }

    .ind-problems__banner-btns {
        gap: 12px;
    }
}

/* ============================================================
   svc-why  —  Why Do Scaffolders Need Insurance Cover?
   File: css/pages/industries.css  (or services.css)
   ============================================================ */

/* ── Section wrapper ── */
.svc-why {
    background-color: #f3f5f7;
    padding: 80px var(--section-x);
}

.svc-why__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

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

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

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

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

/* ── Individual card ── */
.svc-why__card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 30px;
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    /* Default: no shadow */
}

/* Hover state: lift shadow (matches card #1 in Figma) */
.svc-why__card:hover {
    box-shadow: 0px 10px 15px -4px rgba(0, 0, 0, 0.25);
}

/* ── Icon container ── */
.svc-why__card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: #f7f3e9;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon swap helpers */
.svc-why__card-icon .icon-hover   { display: none;  }
.svc-why__card-icon .icon-default { display: block; }

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

.svc-why__card-title {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.4;
    margin: 0;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet — 2 columns */
@media (max-width: 1024px) {
    .svc-why {
        padding: 60px 40px;
    }

    .svc-why__title {
        font-size: 34px;
    }

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

/* Mobile — 1 column */
@media (max-width: 767px) {
    .svc-why {
        padding: 48px 24px;
    }

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

    .svc-why__subtitle {
        font-size: 15px;
    }

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

    .svc-why__card {
        padding: 20px;
        gap: 16px;
    }

    .svc-why__card-icon {
        width: 40px;
        height: 40px;
    }

    .svc-why__card-icon img {
        width: 20px;
        height: 20px;
    }

    .svc-why__card-title {
        font-size: 15px;
    }

    .svc-why__card-desc {
        font-size: 14px;
    }
}

/* ══════════════════════════════════════════
   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; }
}