/* Homepage Section 2: isolated service categories and Provider handoff. */
.indibems-section-2 {
  background: #fff;
  color: #0a1730;
  padding: 88px 0 96px;
}

.indibems-section-2__shell {
  width: 88%;
  max-width: 1280px;
  margin: 0 auto;
}

.indibems-section-2__heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.indibems-section-2__heading h2 {
  margin: 0;
  color: #0a1730;
  font: 800 clamp(28px, 2.55vw, 40px) / 1.16 "Blacker Sans Pro", "Poppins", sans-serif;
  letter-spacing: -0.75px;
}

.indibems-section-2__heading p {
  margin: 12px auto 0;
  color: #68758a;
  font: 400 clamp(15px, 1.25vw, 18px) / 1.55 "Poppins", sans-serif;
}

.indibems-section-2__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.indibems-section-2__card {
  position: relative;
  isolation: isolate;
  min-height: 424px;
  overflow: hidden;
  border-radius: 22px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(14, 27, 50, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.indibems-section-2__image,
.indibems-section-2__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.indibems-section-2__image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease;
}

.indibems-section-2__shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 12, 27, 0.02) 0%, rgba(4, 12, 27, 0.07) 38%, rgba(4, 12, 27, 0.56) 100%),
    linear-gradient(90deg, rgba(4, 12, 27, 0.42) 0%, rgba(4, 12, 27, 0.19) 44%, rgba(4, 12, 27, 0.03) 100%);
}

.indibems-section-2__content {
  display: flex;
  min-height: 424px;
  max-width: 330px;
  padding: 38px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.indibems-section-2__label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #002f78;
  color: #fff;
  font: 700 12px / 1 "Poppins", sans-serif;
  letter-spacing: 0.2px;
}

.indibems-section-2__content strong {
  color: #fff;
  font: 800 clamp(25px, 2.05vw, 31px) / 1.15 "Blacker Sans Pro", "Poppins", sans-serif;
  letter-spacing: -0.45px;
}

.indibems-section-2__description {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.88);
  font: 400 14px / 1.55 "Poppins", sans-serif;
}

.indibems-section-2__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 23px;
  color: #fff;
  font: 700 14px / 1 "Poppins", sans-serif;
}

.indibems-section-2__cta span {
  font-size: 22px;
  font-weight: 400;
  line-height: 0.65;
  transition: transform 220ms ease;
}


.indibems-section-2__content strong {
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.48),
    0 1px 3px rgba(0, 0, 0, 0.68);
}

.indibems-section-2__description,
.indibems-section-2__cta {
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.46),
    0 1px 2px rgba(0, 0, 0, 0.66);
}

@media (hover: hover) and (pointer: fine) {
  .indibems-section-2__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 19px 39px rgba(14, 27, 50, 0.15);
  }

  .indibems-section-2__card:hover .indibems-section-2__image {
    transform: scale(1.025);
  }

  .indibems-section-2__card:hover .indibems-section-2__cta span {
    transform: translateX(4px);
  }
}

@media (max-width: 1024px) {
  .indibems-section-2 {
    padding: 76px 0 82px;
  }

  .indibems-section-2__card,
  .indibems-section-2__content {
    min-height: 390px;
  }

  .indibems-section-2__content {
    padding: 31px;
  }
}

@media (max-width: 720px) {
  .indibems-section-2 {
    padding: 66px 0 70px;
  }

  .indibems-section-2__shell {
    width: calc(100% - 32px);
  }

  .indibems-section-2__heading {
    margin-bottom: 26px;
  }

  .indibems-section-2__card,
  .indibems-section-2__content {
    min-height: 344px;
  }

  .indibems-section-2__content {
    max-width: 270px;
    padding: 25px;
  }
}

@media (max-width: 640px) {
  .indibems-section-2 {
    padding: 28px 0 56px;
  }

  .indibems-section-2__heading {
    margin-bottom: 27px;
  }

  .indibems-section-2__heading h2 {
    font-size: clamp(25px, 6.1vw, 32px);
    letter-spacing: -0.55px;
  }

  .indibems-section-2__heading p {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.5;
  }

  .indibems-section-2__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .indibems-section-2__card,
  .indibems-section-2__content {
    min-height: 304px;
  }

  .indibems-section-2__card {
    border-radius: 20px;
  }

  .indibems-section-2__image {
    object-position: 72% center;
  }

  .indibems-section-2__shade {
    background:
      linear-gradient(180deg, rgba(4, 12, 27, 0.02) 0%, rgba(4, 12, 27, 0.05) 30%, rgba(4, 12, 27, 0.16) 56%, rgba(4, 12, 27, 0.66) 100%),
      linear-gradient(90deg, rgba(4, 12, 27, 0.24) 0%, rgba(4, 12, 27, 0.09) 56%, rgba(4, 12, 27, 0.015) 100%);
  }

  .indibems-section-2__content {
    max-width: min(78%, 292px);
    padding: 20px 18px;
  }

  .indibems-section-2__label {
    margin-bottom: 12px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .indibems-section-2__content strong {
    font-size: clamp(18px, 5.4vw, 24px);
    line-height: 1.1;
    letter-spacing: -0.3px;
  }

  .indibems-section-2__description {
    display: -webkit-box;
    margin-top: 9px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    line-height: 1.48;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .indibems-section-2__cta {
    gap: 6px;
    margin-top: 15px;
    font-size: 13px;
  }

  .indibems-section-2__cta span {
    font-size: 18px;
  }
}

@media (max-width: 340px) {
  .indibems-section-2__shell {
    width: calc(100% - 28px);
  }

  .indibems-section-2__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .indibems-section-2__card,
  .indibems-section-2__content {
    min-height: 326px;
  }

  .indibems-section-2__content {
    padding: 22px;
  }

  .indibems-section-2__description {
    -webkit-line-clamp: 4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .indibems-section-2__card,
  .indibems-section-2__image,
  .indibems-section-2__cta span {
    transition: none;
  }
}

/* =========================================================
   Existing IndiHome customer services — 6-card section only.
   Full-image visual card treatment matching the homepage's
   existing “Belum berlangganan Internet WiFi?” card language.
   ========================================================= */
.indibems-customer-services .indibems-section-2__heading {
  margin-bottom: 42px;
}

.indibems-customer-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.indibems-customer-service-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 410px;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #07152b;
  box-shadow: 0 14px 32px rgba(14, 27, 50, 0.10);
  color: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.indibems-customer-service-card__image,
.indibems-customer-service-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.indibems-customer-service-card__image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease;
}

.indibems-customer-service-card__shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 12, 27, 0.10) 0%, rgba(4, 12, 27, 0.28) 33%, rgba(4, 12, 27, 0.93) 100%),
    linear-gradient(90deg, rgba(4, 12, 27, 0.74) 0%, rgba(4, 12, 27, 0.24) 68%, rgba(4, 12, 27, 0.08) 100%);
}

.indibems-customer-service-card__content {
  display: grid;
  min-height: 410px;
  padding: 28px;
  box-sizing: border-box;
  grid-template-rows: 36px 50px 92px;
  row-gap: 8px;
  align-content: end;
}

.indibems-customer-service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.indibems-customer-service-card__number {
  display: inline-flex;
  min-width: 40px;
  height: 40px;
  padding: 0 11px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #002f78;
  box-shadow: 0 8px 20px rgba(0, 47, 120, 0.26);
  color: #fff;
  font: 700 12px / 1 "Poppins", sans-serif;
  letter-spacing: 0.4px;
}

.indibems-customer-service-card__brand {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid rgba(254, 0, 36, 0.48);
  border-radius: 999px;
  background: rgba(4, 12, 27, 0.46);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ff526a;
  font: 700 11px / 1 "Poppins", sans-serif;
}

.indibems-customer-service-card h3 {
  margin: 0;
  color: #fff;
  font: 800 clamp(23px, 1.7vw, 28px) / 1.14 "Blacker Sans Pro", "Poppins", sans-serif;
  letter-spacing: -0.4px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.20);
}

.indibems-customer-service-card__description {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font: 400 14px / 1.58 "Poppins", sans-serif;
}

.indibems-customer-service-card__solution {
  margin: 0;
  padding: 13px 14px;
  border-left: 3px solid #155fc1;
  border-radius: 0 12px 12px 0;
  background: rgba(7, 21, 43, 0.56);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  color: rgba(255, 255, 255, 0.86);
  font: 400 12px / 1.52 "Poppins", sans-serif;
}

.indibems-customer-service-card__solution strong {
  color: #fff;
  font-weight: 700;
}

.indibems-customer-services__note {
  display: flex;
  max-width: 900px;
  margin: 28px auto 0;
  padding: 16px 18px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(0, 47, 120, 0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 47, 120, 0.045) 0%, rgba(0, 47, 120, 0.015) 100%);
  color: #526179;
}

.indibems-customer-services__note-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #002f78;
  color: #fff;
  font: 700 13px / 1 "Poppins", sans-serif;
}

.indibems-customer-services__note p {
  margin: 0;
  font: 400 13px / 1.55 "Poppins", sans-serif;
}

@media (hover: hover) and (pointer: fine) {
  .indibems-customer-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 19px 39px rgba(14, 27, 50, 0.15);
  }

  .indibems-customer-service-card:hover .indibems-customer-service-card__image {
    transform: scale(1.025);
  }
}

@media (max-width: 1024px) {
  .indibems-customer-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .indibems-customer-service-card,
 .indibems-customer-service-card__content {
    min-height: 392px;
  }

 .indibems-customer-service-card__content {
    padding: 25px;
    grid-template-rows: 36px 50px 92px;
    row-gap: 8px;
  }
}

@media (max-width: 640px) {
  .indibems-customer-services .indibems-section-2__heading {
    margin-bottom: 27px;
  }

  .indibems-customer-services__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .indibems-customer-service-card,
 .indibems-customer-service-card__content {
    min-height: 350px;
  }

  .indibems-customer-service-card {
    border-radius: 18px;
  }

 .indibems-customer-service-card__content {
    display: flex;
    padding: 20px;
    flex-direction: column;
    justify-content: flex-end;
  }

  .indibems-customer-service-card__top {
    margin-bottom: 14px;
  }

  .indibems-customer-service-card__number {
    min-width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 11px;
  }

  .indibems-customer-service-card__brand {
    min-height: 28px;
    padding: 6px 10px;
    font-size: 10px;
  }

  .indibems-customer-service-card h3 {
    font-size: 22px;
  }

  .indibems-customer-service-card__description {
    margin-top: 10px;
    font-size: 13px;
  }

  .indibems-customer-service-card__solution {
    margin-top: 10px;
    padding: 12px 13px;
    font-size: 12px;
  }

  .indibems-customer-services__note {
    margin-top: 18px;
    padding: 14px 15px;
    align-items: flex-start;
  }

  .indibems-customer-services__note p {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .indibems-customer-service-card,
  .indibems-customer-service-card__image {
    transition: none;
  }
}


/* Indibiz customer services: same visual system as IndiHome, four cards in a balanced 2x2 grid. */
.indibems-indibiz-services {
  padding-top: 88px;
}

.indibems-indibiz-services__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .indibems-indibiz-services {
    padding-top: 76px;
  }
}

@media (max-width: 640px) {
  .indibems-indibiz-services {
    padding-top: 56px;
  }

  .indibems-indibiz-services__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   IndiHome 6-card visual tuning — brighter imagery while
   preserving strong text legibility. Scoped to IndiHome only.
   ========================================================= */
.indibems-customer-services:not(.indibems-indibiz-services) .indibems-customer-service-card__shade {
  background:
    linear-gradient(180deg,
      rgba(4, 12, 27, 0.015) 0%,
      rgba(4, 12, 27, 0.055) 38%,
      rgba(4, 12, 27, 0.18) 64%,
      rgba(4, 12, 27, 0.62) 100%),
    linear-gradient(90deg,
      rgba(4, 12, 27, 0.22) 0%,
      rgba(4, 12, 27, 0.09) 48%,
      rgba(4, 12, 27, 0.02) 100%);
}

.indibems-customer-services:not(.indibems-indibiz-services) .indibems-customer-service-card h3 {
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.58),
    0 1px 3px rgba(0, 0, 0, 0.72);
}

.indibems-customer-services:not(.indibems-indibiz-services) .indibems-customer-service-card__description {
  color: rgba(255, 255, 255, 0.96);
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.62),
    0 1px 2px rgba(0, 0, 0, 0.78);
}

.indibems-customer-services:not(.indibems-indibiz-services) .indibems-customer-service-card__solution {
  background: rgba(7, 21, 43, 0.72);
  border-left-color: #1781e8;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 640px) {
  .indibems-customer-services:not(.indibems-indibiz-services) .indibems-customer-service-card__shade {
    background:
      linear-gradient(180deg,
        rgba(4, 12, 27, 0.01) 0%,
        rgba(4, 12, 27, 0.04) 34%,
        rgba(4, 12, 27, 0.16) 58%,
        rgba(4, 12, 27, 0.66) 100%),
      linear-gradient(90deg,
        rgba(4, 12, 27, 0.16) 0%,
        rgba(4, 12, 27, 0.06) 55%,
        rgba(4, 12, 27, 0.015) 100%);
  }
}


/* =========================================================
   Unified card brightness tuning — Provider, IndiHome, and
   Indibiz cards all use lighter imagery with protected text.
   ========================================================= */
.indibems-customer-service-card__shade {
  background:
    linear-gradient(180deg,
      rgba(4, 12, 27, 0.015) 0%,
      rgba(4, 12, 27, 0.055) 38%,
      rgba(4, 12, 27, 0.18) 64%,
      rgba(4, 12, 27, 0.62) 100%),
    linear-gradient(90deg,
      rgba(4, 12, 27, 0.22) 0%,
      rgba(4, 12, 27, 0.09) 48%,
      rgba(4, 12, 27, 0.02) 100%);
}

.indibems-customer-service-card h3 {
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.58),
    0 1px 3px rgba(0, 0, 0, 0.72);
}

.indibems-customer-service-card__description {
  color: rgba(255, 255, 255, 0.96);
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.62),
    0 1px 2px rgba(0, 0, 0, 0.78);
}

.indibems-customer-service-card__solution {
  background: rgba(7, 21, 43, 0.74);
  border-left-color: #1781e8;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 640px) {
  .indibems-customer-service-card__shade {
    background:
      linear-gradient(180deg,
        rgba(4, 12, 27, 0.01) 0%,
        rgba(4, 12, 27, 0.04) 34%,
        rgba(4, 12, 27, 0.16) 58%,
        rgba(4, 12, 27, 0.66) 100%),
      linear-gradient(90deg,
        rgba(4, 12, 27, 0.16) 0%,
        rgba(4, 12, 27, 0.06) 55%,
        rgba(4, 12, 27, 0.015) 100%);
  }
}

/* =========================================================
   Modern service carousel — premium, practical, and simple.
   IndiHome and Indibiz both show 3 cards on desktop, 2 on
   tablet, and 1 on mobile with manual slide navigation.
   ========================================================= */
.indibems-service-carousel {
  position: relative;
}

.indibems-service-carousel__viewport {
  overflow: hidden;
}

.indibems-service-carousel__track {
  --carousel-gap: 22px;
  display: flex;
  gap: var(--carousel-gap);
  align-items: stretch;
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.indibems-service-carousel .indibems-customer-service-card {
  flex: 0 0 calc((100% - (var(--carousel-gap) * 2)) / 3);
  min-width: calc((100% - (var(--carousel-gap) * 2)) / 3);
}

.indibems-service-carousel__controls {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 26px auto 0;
  padding: 8px 10px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(0, 47, 120, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(9, 24, 46, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.indibems-service-carousel__controls[hidden] {
  display: none !important;
}

.indibems-service-carousel__arrow {
  display: inline-flex;
  width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 47, 120, 0.14);
  border-radius: 50%;
  background: #fff;
  color: #002f78;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.indibems-service-carousel__arrow svg {
  width: 18px;
  height: 18px;
}

.indibems-service-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.indibems-service-carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 47, 120, 0.18);
  cursor: pointer;
  transition: width 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.indibems-service-carousel__dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, #0047bb 0%, #1781e8 100%);
}

@media (hover: hover) and (pointer: fine) {
  .indibems-service-carousel__arrow:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 47, 120, 0.24);
    background: #f5f9ff;
    box-shadow: 0 8px 18px rgba(0, 47, 120, 0.12);
  }

  .indibems-service-carousel__dot:hover {
    transform: scale(1.06);
    background: rgba(0, 47, 120, 0.30);
  }
}

@media (max-width: 1024px) {
  .indibems-service-carousel__track {
    --carousel-gap: 18px;
  }

  .indibems-service-carousel .indibems-customer-service-card {
    flex-basis: calc((100% - var(--carousel-gap)) / 2);
    min-width: calc((100% - var(--carousel-gap)) / 2);
  }
}

@media (max-width: 640px) {
  .indibems-service-carousel__track {
    --carousel-gap: 14px;
  }

  .indibems-service-carousel .indibems-customer-service-card {
    flex-basis: 100%;
    min-width: 100%;
  }

  .indibems-service-carousel__controls {
    margin-top: 18px;
    padding: 8px;
    gap: 10px;
  }

  .indibems-service-carousel__arrow {
    width: 38px;
    height: 38px;
  }

  .indibems-service-carousel__dot.is-active {
    width: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .indibems-service-carousel__track,
  .indibems-service-carousel__arrow,
  .indibems-service-carousel__dot {
    transition: none;
  }
}

/* =========================================================
   MOBILE SERVICE CAROUSEL V2 — premium compact swipe layout
   Mobile-only. Desktop/tablet layouts remain unchanged.
   ========================================================= */
@media (max-width: 640px) {
  .indibems-customer-services {
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .indibems-customer-services .indibems-section-2__heading {
    margin-bottom: 22px;
  }

  .indibems-customer-services .indibems-section-2__heading h2 {
    font-size: clamp(25px, 7vw, 31px);
    line-height: 1.12;
    letter-spacing: -0.6px;
  }

  .indibems-customer-services .indibems-section-2__heading p {
    max-width: 330px;
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.48;
  }

  .indibems-service-carousel {
    margin-right: -16px;
  }

  .indibems-service-carousel__viewport {
    overflow: hidden;
    padding-right: 16px;
  }

  .indibems-service-carousel__track {
    --carousel-gap: 12px;
    align-items: stretch;
  }

  .indibems-service-carousel .indibems-customer-service-card {
    flex: 0 0 calc(100% - 42px);
    min-width: calc(100% - 42px);
    min-height: 364px;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(9, 24, 46, 0.12);
  }

  .indibems-service-carousel .indibems-customer-service-card__content {
    min-height: 364px;
    padding: 20px 18px 18px;
    justify-content: flex-end;
  }

  .indibems-service-carousel .indibems-customer-service-card__image {
    object-position: center center;
  }

  .indibems-service-carousel .indibems-customer-service-card__shade {
    background:
      linear-gradient(180deg,
        rgba(4, 12, 27, 0.00) 0%,
        rgba(4, 12, 27, 0.025) 38%,
        rgba(4, 12, 27, 0.13) 58%,
        rgba(4, 12, 27, 0.74) 100%),
      linear-gradient(90deg,
        rgba(4, 12, 27, 0.11) 0%,
        rgba(4, 12, 27, 0.035) 58%,
        rgba(4, 12, 27, 0.00) 100%);
  }

  .indibems-service-carousel .indibems-customer-service-card h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.14;
    letter-spacing: -0.35px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.62), 0 1px 2px rgba(0, 0, 0, 0.72);
  }

  .indibems-service-carousel .indibems-customer-service-card__description {
    margin-top: 8px;
    font-size: 12.2px;
    line-height: 1.48;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 10px rgba(0,0,0,0.60), 0 1px 2px rgba(0,0,0,0.72);
  }

  .indibems-service-carousel .indibems-customer-service-card__solution {
    margin-top: 10px;
    padding: 11px 12px;
    border-left-width: 3px;
    border-radius: 0 11px 11px 0;
    background: rgba(7, 21, 43, 0.78);
    box-shadow: 0 8px 22px rgba(0,0,0,0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 11.2px;
    line-height: 1.48;
  }

  .indibems-service-carousel__controls {
    margin: 16px 16px 0 0;
    padding: 7px 8px;
    gap: 9px;
    border-color: rgba(0, 47, 120, 0.10);
    background: rgba(255,255,255,0.94);
    box-shadow: 0 10px 26px rgba(9,24,46,0.08);
  }

  .indibems-service-carousel__arrow {
    width: 36px;
    height: 36px;
    border-color: rgba(0,47,120,0.13);
  }

  .indibems-service-carousel__arrow svg {
    width: 16px;
    height: 16px;
  }

  .indibems-service-carousel__dots {
    gap: 6px;
  }

  .indibems-service-carousel__dot {
    width: 7px;
    height: 7px;
  }

  .indibems-service-carousel__dot.is-active {
    width: 20px;
  }

  .indibems-customer-services__note {
    margin: 18px auto 0;
    padding: 13px 14px;
    border-radius: 14px;
  }

  .indibems-customer-services__note-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    font-size: 12px;
  }

  .indibems-customer-services__note p {
    font-size: 11.5px;
    line-height: 1.5;
  }

  .indibems-indibiz-services {
    padding-top: 52px;
  }
}

@media (max-width: 360px) {
  .indibems-service-carousel .indibems-customer-service-card {
    flex-basis: calc(100% - 32px);
    min-width: calc(100% - 32px);
    min-height: 352px;
  }

  .indibems-service-carousel .indibems-customer-service-card__content {
    min-height: 352px;
    padding: 18px 16px 16px;
  }
}


/* =========================================================
   KENAPA PILIH INDIBEMS? SECTION — V3
   Premium editorial composition: visual + 2x2 benefits.
   ========================================================= */
.indibems-why-indibems {
  padding: 42px 0 20px;
}

.indibems-why-indibems__heading {
  margin-bottom: 30px;
}


.indibems-why-indibems__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  gap: 24px;
  align-items: stretch;
  padding: 18px;
  border-radius: 32px;
  border: 1px solid rgba(3, 37, 95, 0.07);
  background: rgba(248, 251, 255, 0.72);
  box-shadow: 0 20px 48px rgba(5, 36, 92, 0.065);
}

.indibems-why-indibems__visual {
  position: relative;
  min-height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #0d2347;
  box-shadow: 0 18px 36px rgba(8,25,58,.17);
}

.indibems-why-indibems__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(2,17,43,0), rgba(2,17,43,.38));
  pointer-events: none;
}

.indibems-why-indibems__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.indibems-why-indibems__visual-badges {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
}

.indibems-why-indibems__visual-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(3,20,50,.50);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.indibems-why-indibems__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: stretch;
}

.indibems-why-benefit {
  display: flex;
  min-height: 0;
  height: 100%;
  box-sizing: border-box;
  padding: 21px 20px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border: 1px solid rgba(7,44,110,.085);
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 28px rgba(7,35,89,.055);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.indibems-why-benefit:hover {
  transform: translateY(-3px);
  border-color: rgba(0,80,200,.15);
  box-shadow: 0 17px 34px rgba(7,35,89,.09);
}

.indibems-why-benefit__icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,80,200,.11);
  border-radius: 17px;
  background: linear-gradient(180deg, #fff 0%, #eff5ff 100%);
  color: #0050c8;
  box-shadow: 0 9px 18px rgba(0,58,150,.06);
}

.indibems-why-benefit__icon svg {
  width: 26px;
  height: 26px;
}

.indibems-why-benefit__copy h3 {
  min-height: 2.44em;
  margin: 0 0 6px;
  color: #09162d;
  font-size: 1.02rem;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -.02em;
}

.indibems-why-benefit__copy p {
  margin: 0;
  color: #5d6e85;
  font-size: .9rem;
  line-height: 1.56;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .indibems-why-indibems__panel {
    grid-template-columns: 1fr;
  }

  .indibems-why-indibems__visual {
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  .indibems-why-indibems {
    padding: 28px 0 8px;
  }

  .indibems-why-indibems__heading {
    margin-bottom: 22px;
  }

  .indibems-why-indibems__panel {
    gap: 16px;
    padding: 14px;
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(7,35,89,.06);
  }

  .indibems-why-indibems__visual {
    min-height: 238px;
    border-radius: 20px;
  }

  .indibems-why-indibems__visual-badges {
    left: 12px;
    bottom: 12px;
  }

  .indibems-why-indibems__visual-badges span {
    min-height: 34px;
    padding: 0 13px;
    font-size: .78rem;
  }

  .indibems-why-indibems__benefits {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .indibems-why-benefit {
    display: grid;
    grid-template-columns: 50px minmax(0,1fr);
    gap: 12px;
    align-items: start;
    padding: 14px;
    border-radius: 18px;
  }

  .indibems-why-benefit__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
    border-radius: 15px;
  }

  .indibems-why-benefit__icon svg {
    width: 23px;
    height: 23px;
  }

  .indibems-why-benefit__copy h3 {
    min-height: 0;
    margin-bottom: 5px;
    font-size: .96rem;
  }

  .indibems-why-benefit__copy p {
    font-size: .84rem;
    line-height: 1.52;
  }
}


/* Kenapa Indibems v5 — final polish */
.indibems-why-indibems__panel {
  border-color: rgba(3, 37, 95, 0.055);
  box-shadow: 0 18px 44px rgba(5, 36, 92, 0.065);
}

.indibems-why-benefit {
  border-color: rgba(7, 44, 110, 0.065);
  box-shadow: 0 10px 24px rgba(7, 35, 89, 0.045);
}

.indibems-why-benefit__copy h3 {
  font-weight: 750;
  letter-spacing: -0.018em;
}

.indibems-why-benefit__icon {
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  .indibems-why-benefit {
    row-gap: 10px;
  }
}

/* =========================================================
   BAGAIMANA INDIBEMS MEMBANTU ANDA? — PROCESS V16
   Connected customer journey. Distinct from the benefit cards above.
   ========================================================= */
.indibems-process {
  position: relative;
  padding: 46px 0 28px;
  overflow: hidden;
}

.indibems-process::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 300px;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 80, 200, .065) 0%, rgba(0, 80, 200, 0) 70%);
  pointer-events: none;
}

.indibems-process__heading {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-bottom: 32px;
}

.indibems-process__flow {
  --process-node-y: 79px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 24px 20px 22px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(0, 47, 120, .06);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 80, 200, .052), transparent 34%),
    radial-gradient(circle at 88% 100%, rgba(0, 47, 120, .032), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .985) 0%, rgba(250, 252, 255, .97) 100%);
  box-shadow: 0 16px 44px rgba(9, 36, 87, .052);
}

/* Base route between the three nodes. */
.indibems-process__flow::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 16.66%;
  right: 16.66%;
  top: var(--process-node-y);
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,47,120,.08), rgba(0,80,200,.20), rgba(0,47,120,.08));
  pointer-events: none;
}

/* Soft moving highlight: subtle motion, not an attention-grabbing loader. */
.indibems-process__flow::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 16.66%;
  top: var(--process-node-y);
  width: 16%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,80,200,0), rgba(0,80,200,.48), rgba(0,80,200,0));
  animation: indibemsProcessRoute 6s ease-in-out infinite;
  pointer-events: none;
}

.indibems-process-step {
  position: relative;
  min-width: 0;
  min-height: 196px;
  padding: 16px 30px 12px;
  text-align: center;
}

.indibems-process-step__top {
  position: relative;
  display: flex;
  min-height: 78px;
  margin-bottom: 12px;
  align-items: center;
  justify-content: center;
}

.indibems-process-step__number {
  position: absolute;
  left: 50%;
  top: -9px;
  z-index: 3;
  display: inline-flex;
  min-width: 34px;
  height: 23px;
  padding: 0 8px;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  border: 1px solid rgba(0, 47, 120, .08);
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  color: #002f78;
  box-shadow: 0 5px 14px rgba(7, 35, 89, .035);
  font: 750 10px/1 "Poppins", sans-serif;
  letter-spacing: .08em;
}

.indibems-process-step__icon {
  position: relative;
  display: inline-flex;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 80, 200, .14);
  border-radius: 21px;
  background: linear-gradient(145deg, #ffffff 0%, #edf5ff 100%);
  color: #0050c8;
  box-shadow: 0 12px 26px rgba(0, 60, 158, .10), inset 0 1px 0 rgba(255,255,255,.95);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.indibems-process-step__icon::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(0, 80, 200, .07);
  border-radius: 26px;
  transition: transform .28s ease, opacity .28s ease;
}

.indibems-process-step__icon svg {
  width: 28px;
  height: 28px;
}

.indibems-process-step__copy {
  max-width: 315px;
  margin: 0 auto;
}

.indibems-process-step__copy h3 {
  margin: 0 0 8px;
  color: #0a1830;
  font: 750 1.08rem/1.28 "Poppins", sans-serif;
  letter-spacing: -.025em;
  transition: color .24s ease;
}

.indibems-process-step__copy p {
  margin: 0;
  color: #607086;
  font: 500 .89rem/1.58 "Poppins", sans-serif;
}

.indibems-process-step:hover .indibems-process-step__icon {
  transform: translateY(-3px);
  border-color: rgba(0, 80, 200, .22);
  box-shadow: 0 17px 32px rgba(0, 60, 158, .14), inset 0 1px 0 rgba(255,255,255,.95);
}

.indibems-process-step:hover .indibems-process-step__icon::after {
  transform: scale(1.035);
  opacity: .68;
}

.indibems-process-step:hover .indibems-process-step__copy h3 {
  color: #002f78;
}

/* Progressive enhancement: content stays visible if JavaScript is unavailable. */
html.indibems-motion-ready .indibems-process-step {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.2,.7,.2,1);
}

html.indibems-motion-ready .indibems-process.is-visible .indibems-process-step {
  opacity: 1;
  transform: translateY(0);
}

html.indibems-motion-ready .indibems-process.is-visible .indibems-process-step:nth-child(2) { transition-delay: .08s; }
html.indibems-motion-ready .indibems-process.is-visible .indibems-process-step:nth-child(3) { transition-delay: .16s; }

@keyframes indibemsProcessRoute {
  0%, 12% { transform: translateX(0); opacity: 0; }
  28% { opacity: .85; }
  76% { opacity: .85; }
  88%, 100% { transform: translateX(275%); opacity: 0; }
}

@media (max-width: 980px) {
  .indibems-process {
    padding: 46px 0 28px;
  }

  .indibems-process__flow {
    --process-node-y: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 26px;
    border-radius: 28px;
  }

  .indibems-process__flow::before,
  .indibems-process__flow::after {
    display: none;
  }

  .indibems-process-step {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 20px;
    min-height: 0;
    padding: 22px 4px;
    text-align: left;
  }

  .indibems-process-step + .indibems-process-step {
    border-top: 1px solid rgba(0, 47, 120, .065);
  }

  .indibems-process-step__top {
    grid-column: 1;
    min-height: 64px;
    margin: 0;
    justify-content: flex-start;
  }

  .indibems-process-step__number {
    left: 0;
    top: -8px;
    z-index: 2;
    transform: none;
  }

  .indibems-process-step__icon {
    margin-left: 18px;
  }

  .indibems-process-step__copy {
    grid-column: 2;
    max-width: none;
    margin: 0;
    align-self: center;
  }
}

@media (max-width: 640px) {
  .indibems-process {
    padding: 32px 0 18px;
  }

  .indibems-process::before {
    width: 360px;
    height: 240px;
  }

  .indibems-process__heading {
    margin-bottom: 22px;
  }

  .indibems-process__flow {
    padding: 8px 14px;
    border-radius: 23px;
    box-shadow: 0 14px 34px rgba(9, 36, 87, .055);
  }

  .indibems-process-step {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 13px;
    padding: 17px 0;
  }

  .indibems-process-step__top {
    min-height: 54px;
  }

  .indibems-process-step__number {
    top: -6px;
    min-width: 33px;
    height: 23px;
    padding: 0 7px;
    font-size: 9.5px;
  }

  .indibems-process-step__icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    margin-left: 12px;
    border-radius: 17px;
  }

  .indibems-process-step__icon::after {
    inset: -5px;
    border-radius: 21px;
  }

  .indibems-process-step__icon svg {
    width: 24px;
    height: 24px;
  }

  .indibems-process-step__copy h3 {
    margin-bottom: 5px;
    font-size: .98rem;
  }

  .indibems-process-step__copy p {
    font-size: .83rem;
    line-height: 1.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .indibems-process__flow::after { animation: none; }
  html.indibems-motion-ready .indibems-process-step,
  html.indibems-motion-ready .indibems-process.is-visible .indibems-process-step {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .indibems-process-step__icon,
  .indibems-process-step__copy h3 { transition: none; }
}

/* =========================================================
   HOMEPAGE DESKTOP SECTION RHYTHM — V17
   Normalize vertical spacing between main homepage sections.
   48px bottom + 48px top = 96px visual gap between sections.
   Desktop only; tablet/mobile spacing remains untouched.
   ========================================================= */
@media (min-width: 1025px) {
  .indibems-provider-section {
    padding-bottom: 48px;
  }

  .indibems-customer-services:not(.indibems-indibiz-services) {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .indibems-indibiz-services {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .indibems-why-indibems {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .indibems-process {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

/* =========================================================
   MOBILE PROCESS JOURNEY — V18
   Phone-only vertical connected journey. Desktop/tablet unchanged.
   ========================================================= */
@media (max-width: 640px) {
  .indibems-process {
    padding-top: 32px;
    padding-bottom: 22px;
  }

  .indibems-process__heading {
    margin-bottom: 24px;
  }

  .indibems-process__flow {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 4px 0 6px;
    overflow: visible;
    isolation: isolate;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  /* Continuous vertical route through the three icon nodes. */
  .indibems-process__flow::before {
    content: "";
    position: absolute;
    display: block;
    z-index: 0;
    left: 38px;
    right: auto;
    top: 39px;
    bottom: 39px;
    width: 1.5px;
    height: auto;
    border-radius: 999px;
    background: linear-gradient(
      180deg,
      rgba(0, 47, 120, .10) 0%,
      rgba(0, 80, 200, .28) 18%,
      rgba(0, 80, 200, .20) 82%,
      rgba(0, 47, 120, .08) 100%
    );
    pointer-events: none;
  }

  /* A soft highlight travels down the journey line. */
  .indibems-process__flow::after {
    content: "";
    position: absolute;
    display: block;
    z-index: 0;
    left: 37.75px;
    right: auto;
    top: 8%;
    width: 2px;
    height: 16%;
    border-radius: 999px;
    background: linear-gradient(
      180deg,
      rgba(0, 80, 200, 0),
      rgba(0, 80, 200, .52),
      rgba(0, 80, 200, 0)
    );
    animation: indibemsProcessRouteMobile 6s ease-in-out infinite;
    pointer-events: none;
  }

  .indibems-process-step {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 12px 2px 19px;
    text-align: left;
  }

  .indibems-process-step:first-child {
    padding-top: 10px;
  }

  .indibems-process-step:last-child {
    padding-bottom: 8px;
  }

  .indibems-process-step + .indibems-process-step {
    border-top: 0;
  }

  .indibems-process-step__top {
    grid-column: 1;
    position: relative;
    display: flex;
    min-height: 58px;
    margin: 0;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .indibems-process-step__icon {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    margin-left: 10px;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0, 60, 158, .09), inset 0 1px 0 rgba(255,255,255,.96);
  }

  .indibems-process-step__icon::after {
    inset: -5px;
    border-radius: 23px;
    background: rgba(255, 255, 255, .42);
  }

  .indibems-process-step__icon svg {
    width: 25px;
    height: 25px;
  }

  .indibems-process-step__number {
    left: 43px;
    top: -7px;
    z-index: 4;
    min-width: 29px;
    height: 20px;
    padding: 0 6px;
    transform: none;
    border-color: rgba(0, 47, 120, .10);
    background: #fff;
    box-shadow: 0 5px 13px rgba(7, 35, 89, .045);
    font-size: 9px;
    letter-spacing: .07em;
  }

  .indibems-process-step__copy {
    grid-column: 2;
    max-width: none;
    margin: 0;
    padding-top: 2px;
    align-self: start;
  }

  .indibems-process-step__copy h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    line-height: 1.30;
    letter-spacing: -.025em;
  }

  .indibems-process-step__copy p {
    margin: 0;
    font-size: .84rem;
    line-height: 1.52;
  }
}

@keyframes indibemsProcessRouteMobile {
  0%, 10% { transform: translateY(0); opacity: 0; }
  24% { opacity: .78; }
  76% { opacity: .78; }
  90%, 100% { transform: translateY(470%); opacity: 0; }
}

@media (max-width: 640px) and (prefers-reduced-motion: reduce) {
  .indibems-process__flow::after {
    animation: none;
    opacity: 0;
  }
}

/* =========================================================
   KENAPA MELALUI INDIBEMS — MOBILE V20 FINAL POLISH
   Phone-only refinement: shorter visual, lighter container,
   tighter benefit cards. Desktop/tablet remain unchanged.
   ========================================================= */
@media (max-width: 767px) {
  .indibems-why-indibems {
    padding-top: 28px;
    padding-bottom: 18px;
  }

  .indibems-why-indibems__heading {
    margin-bottom: 20px;
  }

  .indibems-why-indibems__panel {
    display: grid;
    gap: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .indibems-why-indibems__visual {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(8, 25, 58, .13);
  }

  .indibems-why-indibems__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 53%;
  }

  .indibems-why-indibems__visual::after {
    height: 24%;
  }

  .indibems-why-indibems__visual-badges {
    left: 11px;
    bottom: 11px;
  }

  .indibems-why-indibems__visual-badges span {
    min-height: 30px;
    padding: 0 11px;
    font-size: .72rem;
    border-color: rgba(255,255,255,.16);
    background: rgba(3,20,50,.46);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .indibems-why-indibems__benefits {
    gap: 9px;
  }

  .indibems-why-benefit {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 11px;
    padding: 12px 13px;
    border-radius: 17px;
    border-color: rgba(7, 44, 110, .07);
    background: rgba(255,255,255,.96);
    box-shadow: 0 7px 20px rgba(7,35,89,.045);
  }

  .indibems-why-benefit:hover {
    transform: none;
    box-shadow: 0 7px 20px rgba(7,35,89,.045);
  }

  .indibems-why-benefit__icon {
    width: 46px;
    height: 46px;
    margin: 0;
    border-radius: 14px;
    box-shadow: 0 6px 14px rgba(0,58,150,.05);
  }

  .indibems-why-benefit__icon svg {
    width: 21px;
    height: 21px;
  }

  .indibems-why-benefit__copy h3 {
    margin: 0 0 4px;
    font-size: .92rem;
    line-height: 1.24;
  }

  .indibems-why-benefit__copy p {
    font-size: .80rem;
    line-height: 1.48;
  }
}
