/* ============================================
   SLM SERVICES — Shared Apple-inspired Styles
   Used by all 10 service pages
   ============================================ */

/* --- A. Keyframes --- */
@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   A2. HERO DESCRIPTION — Clean white text
   ============================================ */
#hs_cos_wrapper_dnd_area-module-4 p {
  color: #fff;
  font-family: Rubik, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-top: 30px;
}

/* ============================================
   A3. VISIÓN GLOBAL + OBJETIVOS — Apple cards
   ============================================ */
#hs_cos_wrapper_dnd_area-module-14 > span,
#hs_cos_wrapper_dnd_area-module-18 > span {
  display: block;
}

#hs_cos_wrapper_dnd_area-module-14 h3,
#hs_cos_wrapper_dnd_area-module-18 h3 {
  font-family: Rubik, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  padding-bottom: 14px;
  position: relative;
  line-height: 1.25;
}

#hs_cos_wrapper_dnd_area-module-14 h3::after,
#hs_cos_wrapper_dnd_area-module-18 h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #ed741b, #f5923e);
  border-radius: 3px;
}

#hs_cos_wrapper_dnd_area-module-14 h3 span,
#hs_cos_wrapper_dnd_area-module-18 h3 span {
  color: #ed741b;
}

#hs_cos_wrapper_dnd_area-module-14 ul,
#hs_cos_wrapper_dnd_area-module-18 ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#hs_cos_wrapper_dnd_area-module-14 li,
#hs_cos_wrapper_dnd_area-module-18 li {
  font-family: Rubik, sans-serif;
  font-size: 15px !important;
  line-height: 1.5;
  color: #444;
  padding: 13px 18px 13px 44px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

#hs_cos_wrapper_dnd_area-module-14 li:hover,
#hs_cos_wrapper_dnd_area-module-18 li:hover {
  border-color: #ed741b;
  box-shadow: 0 2px 12px rgba(237, 116, 27, 0.08);
  transform: translateX(4px);
}

#hs_cos_wrapper_dnd_area-module-14 li::before,
#hs_cos_wrapper_dnd_area-module-18 li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 7px;
  height: 12px;
  border-right: 2.5px solid #ed741b;
  border-bottom: 2.5px solid #ed741b;
}

#hs_cos_wrapper_dnd_area-module-14 p:not([data-i18n]),
#hs_cos_wrapper_dnd_area-module-18 p:not([data-i18n]) {
  display: none;
}

#hs_cos_wrapper_dnd_area-module-14 p[data-i18n],
#hs_cos_wrapper_dnd_area-module-18 p[data-i18n] {
  display: block;
  font-family: Rubik, sans-serif;
  font-size: 16px !important;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  #hs_cos_wrapper_dnd_area-module-14 h3,
  #hs_cos_wrapper_dnd_area-module-18 h3 {
    font-size: 20px;
  }

  #hs_cos_wrapper_dnd_area-module-14 li,
  #hs_cos_wrapper_dnd_area-module-18 li {
    font-size: 14px !important;
    padding: 11px 14px 11px 40px;
  }
}

/* ============================================
   A4. INDICADORES GRID — Card grid (KPIs)
   ============================================ */
#hs_cos_wrapper_dnd_area-module-18 h4 {
  font-family: Rubik, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 32px 0 16px;
  line-height: 1.3;
}

#hs_cos_wrapper_dnd_area-module-18 .indicadores-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  flex-direction: unset;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

#hs_cos_wrapper_dnd_area-module-18 .indicadores-grid li {
  border-left: none;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

#hs_cos_wrapper_dnd_area-module-18 .indicadores-grid li::before {
  display: none;
}

#hs_cos_wrapper_dnd_area-module-18 .indicadores-grid li p {
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  margin: 0;
}

#hs_cos_wrapper_dnd_area-module-18 .indicadores-grid li .bi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  font-size: 20px;
  margin: 0 auto 4px;
  background: linear-gradient(135deg, #ed741b, #f5923e);
  color: #fff;
  box-shadow: 0 4px 16px rgba(237, 116, 27, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#hs_cos_wrapper_dnd_area-module-18 .indicadores-grid li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(237, 116, 27, 0.12);
  border-color: #ed741b;
}

#hs_cos_wrapper_dnd_area-module-18 .indicadores-grid li:hover .bi {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(237, 116, 27, 0.35);
}

#hs_cos_wrapper_dnd_area-module-18 .indicadores-grid li span {
  font-size: 13px !important;
  line-height: 1.45;
  color: #555;
}

#hs_cos_wrapper_dnd_area-module-18 .indicadores-grid li strong {
  display: block;
  font-size: 14px !important;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}

@media (max-width: 768px) {
  #hs_cos_wrapper_dnd_area-module-18 .indicadores-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  #hs_cos_wrapper_dnd_area-module-18 .indicadores-grid li {
    padding: 16px 12px;
  }

  #hs_cos_wrapper_dnd_area-module-18 .indicadores-grid li .bi {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 18px;
  }
}

/* --- Icon-list (Casos de uso) --- */
#hs_cos_wrapper_dnd_area-module-18 .icon-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#hs_cos_wrapper_dnd_area-module-18 .icon-list li {
  font-size: 14.5px !important;
  line-height: 1.6;
  color: #444;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  border-left: 3px solid #ed741b;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

#hs_cos_wrapper_dnd_area-module-18 .icon-list li::before {
  display: none;
}

#hs_cos_wrapper_dnd_area-module-18 .icon-list li p {
  margin: 0;
  display: flex;
  align-items: center;
}

#hs_cos_wrapper_dnd_area-module-18 .icon-list li .bi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff5ed, #fff0e4);
  color: #ed741b;
  font-size: 16px;
  margin-right: 14px;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 1px 4px rgba(237, 116, 27, 0.1);
}

#hs_cos_wrapper_dnd_area-module-18 .icon-list li:hover {
  border-color: #ed741b;
  box-shadow: 0 4px 20px rgba(237, 116, 27, 0.1);
  transform: translateX(4px);
}

#hs_cos_wrapper_dnd_area-module-18 .icon-list li:hover .bi {
  background: #ed741b;
  color: #fff;
  box-shadow: 0 4px 12px rgba(237, 116, 27, 0.3);
  transform: scale(1.1);
}

#hs_cos_wrapper_dnd_area-module-18 .icon-list li strong {
  color: #ed741b;
  font-weight: 600;
}

@media (max-width: 768px) {
  #hs_cos_wrapper_dnd_area-module-18 .icon-list li {
    padding: 14px 14px;
    font-size: 13.5px !important;
  }

  #hs_cos_wrapper_dnd_area-module-18 .icon-list li .bi {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 14px;
    margin-right: 10px;
  }
}

/* ============================================
   B. SERVICE-BOX — Apple-inspired cards
   ============================================ */
.service-box {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
  min-height: 480px;
  overflow: hidden;
  padding: 0;
  position: relative;
  border-radius: 20px;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
}

.service-box a {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

/* Orange accent line — bottom */
.service-box:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #ed741b, #f5923e);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 15;
  border-radius: 3px;
}

.service-box:hover:before {
  transform: translateX(-50%) scaleX(1);
}

/* Background image */
.service-box .service-box_bg {
  backface-visibility: hidden;
  background-position: 50%;
  background-size: cover;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(1);
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  width: 100%;
  z-index: 1;
}

.service-box:hover .service-box_bg {
  transform: scale(1.05);
}

/* Overlay — clean gradient, text readable */
.service-box .service-box_bg:before {
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.55) 100%);
  bottom: 0;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  transition: background 0.5s ease;
  width: 100%;
  z-index: 10;
}

.service-box:hover .service-box_bg:before {
  background: #ed741bbf;
}

/* Number label — glass morphism badge */
.service-box_subtitle {
  font-family: Rubik, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ed741b !important;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 20px;
  position: absolute;
  top: 24px;
  left: 24px;
  opacity: 1;
  transform: none;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  z-index: 12;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin: 0;
  line-height: 1;
}

.service-box:hover .service-box_subtitle {
  opacity: 1;
  transform: none;
  background: #1a1a1a;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* Inner container */
.service-box .service-box_inner {
  align-self: flex-end;
  padding: 0 32px 32px;
  position: relative;
  width: 100%;
  z-index: 12;
}

/* Text block */
.service-box .service-box_text {
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-box:hover .service-box_text {
  transform: translateY(-44px);
}

.service-box .service-box_text > :last-child {
  margin-bottom: 0;
}

/* Title */
.service-box .service-box_title {
  font-family: Rubik, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 10px;
  color: #fff !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.3px;
}

/* Description */
.service-box .service-box_desc {
  opacity: 0.9;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92) !important;
  transition: opacity 0.4s ease;
}

.service-box .service-box_desc span {
  color: rgba(255, 255, 255, 0.92) !important;
}

.service-box:hover .service-box_desc {
  opacity: 1;
}

/* Arrow button */
.service-box .service-box_button {
  bottom: 32px;
  left: 32px;
  height: 40px;
  opacity: 0;
  position: absolute;
  transform: translateY(12px);
  transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  width: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 12;
}

.service-box:hover .service-box_button {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.12s, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.12s;
}

.service-box_button svg {
  fill: #ed741b !important;
  height: 20px;
  width: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  padding: 8px;
  box-sizing: content-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.service-box:hover .service-box_button svg {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(237, 116, 27, 0.25);
}

.service-box * {
  color: #fff;
}

.service-box_subtitle,
.service-box_title {
  line-height: 1.2;
  margin-bottom: 15px;
}

/* Service-box responsive */
@media (max-width: 991px) {
  .service-box {
    min-height: 400px;
    margin-bottom: 20px;
  }

  .service-box .service-box_inner {
    padding: 0 24px 28px;
  }

  .service-box .service-box_title {
    font-size: 24px;
  }

  .service-box .service-box_button {
    bottom: 28px;
    left: 24px;
  }
}

@media (max-width: 768px) {
  .service-box {
    min-height: 360px;
    border-radius: 16px;
  }

  .service-box:hover {
    transform: translateY(-4px);
  }

  .service-box:hover .service-box_text {
    transform: translateY(-36px);
  }

  .service-box .service-box_inner {
    padding: 0 20px 24px;
  }

  .service-box .service-box_title {
    font-size: 22px;
  }

  .service-box_subtitle {
    top: 16px;
    left: 16px;
    font-size: 12px;
    padding: 5px 12px;
  }

  .service-box .service-box_button {
    bottom: 24px;
    left: 20px;
  }

  .service-box_button svg {
    height: 18px;
    width: 18px;
    padding: 7px;
  }
}

@media (max-width: 480px) {
  .service-box {
    min-height: 320px;
    border-radius: 14px;
  }

  .service-box .service-box_title {
    font-size: 20px;
  }
}

/* ============================================
   C. SECTION HEADINGS — Apple typography
   ============================================ */
.body-container--services02 .heading-title-wrapper.heading-align-center {
  margin-bottom: 48px;
}

.body-container--services02 .heading-color-dark .title-subtitle {
  display: inline-block;
  font-family: Rubik, sans-serif;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ed741b !important;
  background: rgba(237, 116, 27, 0.08);
  padding: 7px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.body-container--services02 .heading-color-dark .heading-title {
  font-family: Rubik, sans-serif;
  font-size: clamp(2rem, 4vw, 2.2rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -1px;
  color: #1a1a1a !important;
  margin-bottom: 16px !important;
}

.body-container--services02 .heading-color-dark .title-description {
  font-family: Rubik, sans-serif;
  font-size: 17px !important;
  line-height: 1.6 !important;
  color: #666 !important;
  max-width: 600px;
  margin: 0 auto;
}

.body-container--services02 .heading-color-dark .title-description span {
  font-size: inherit !important;
  color: inherit !important;
}

.body-container--services02 .heading-color-dark .heading-title-wrapper {
  margin-bottom: 40px;
}

.body-container--services02 .heading-color-dark .title-description {
  line-height: 1.7;
  font-size: 18px;
}

/* ============================================
   C2. STANDALONE H2 HEADINGS — Orange underline
   (CASOS DE USO, SOLUCIONES, PREGUNTAS FRECUENTES)
   ============================================ */
#hs_cos_wrapper_widget_1762202625059 h2,
#hs_cos_wrapper_widget_1762209315999 h2 {
  font-family: Rubik, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}

#hs_cos_wrapper_widget_1762202625059 h2::after,
#hs_cos_wrapper_widget_1762209315999 h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #ed741b, #f5923e);
  border-radius: 3px;
}

/* ============================================
   D. BUTTON-LINK — Pill naranja
   ============================================ */
.body-container--services02 .button-link .button {
  background-color: #ed741b;
  border: none;
  border-radius: 50px;
  color: #fff !important;
  font-family: Rubik, sans-serif;
  font-weight: 600;
  padding: 15px 36px;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 16px rgba(237, 116, 27, 0.25);
}

.body-container--services02 .button-link .button:hover {
  background-color: #d4650f;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(237, 116, 27, 0.35);
}

/* ============================================
   E. TABS — Apple segmented control
   ============================================ */
.body-container--services02 .hs-tabs__tab-wrapper {
  display: flex;
  gap: 4px;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto 36px;
  background: #f5f5f7;
  border-radius: 12px;
  padding: 4px;
  border-bottom: none;
}

.body-container--services02 .hs-tabs__tab,
.body-container--services02 .hs-tabs__tab:active,
.body-container--services02 .hs-tabs__tab:focus,
.body-container--services02 .hs-tabs__tab:hover {
  background: none;
  background-color: transparent;
  border: none;
  border-bottom: none;
  border-radius: 8px;
  color: #666;
  font-family: Rubik, sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  margin-bottom: 0;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

.body-container--services02 .hs-tabs__tab:hover {
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.6);
}

.body-container--services02 .hs-tabs__tab[aria-selected=true] {
  background: #fff;
  border-bottom: none;
  color: #1a1a1a;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08), 0 0 1px rgba(0, 0, 0, 0.04);
}

.body-container--services02 .hs-tabs__tab:after {
  display: none;
}

.body-container--services02 .hs-tabs__content {
  border: none !important;
}

.body-container--services02 .hs-tabs__content__panel {
  padding: 32px 24px !important;
  animation: fadeInTab 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.body-container--services02 .hs-tabs__content__panel p {
  font-family: Rubik, sans-serif;
  font-size: 15px !important;
  line-height: 1.7;
  color: #444;
}

/* ============================================
   E2. TABS — Widget ID overrides (higher specificity)
   ============================================ */
#hs_cos_wrapper_widget_1759438046140 .hs-tabs {
  display: block;
}

#hs_cos_wrapper_widget_1759438046140 .hs-tabs__scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  justify-content: center;
  text-align: center;
  display: block;
  width: 100%;
  margin-left: 0;
}

#hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab-wrapper {
  display: inline-flex;
  gap: 4px;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto 36px;
  background: #f5f5f7;
  border-radius: 12px;
  padding: 4px;
  border: none;
}

#hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab,
#hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab:active,
#hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab:focus,
#hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab:hover {
  background: none;
  background-color: transparent;
  border: none !important;
  border-bottom: none !important;
  border-radius: 8px;
  color: #666;
  font-family: Rubik, sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  margin-bottom: 0;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  white-space: nowrap;
}

#hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab:hover {
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.6) !important;
}

#hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab[aria-selected="true"],
#hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab[aria-selected="true"]:hover,
#hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab[aria-selected="true"]:focus {
  background: #fff !important;
  border: none !important;
  border-bottom: none !important;
  color: #1a1a1a;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08), 0 0 1px rgba(0, 0, 0, 0.04);
}

#hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab[aria-selected="false"],
#hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab[aria-selected="false"]:hover,
#hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab[aria-selected="false"]:focus {
  border: none !important;
  border-bottom: none !important;
}

#hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab:after,
#hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab[aria-selected="true"]:after,
#hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab[aria-selected="false"]:after,
#hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab[aria-selected="false"]:hover:after,
#hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab[aria-selected="false"]:focus:after {
  display: none !important;
  border: none !important;
}

#hs_cos_wrapper_widget_1759438046140 .hs-tabs__content {
  border: none !important;
  display: flex;
}

#hs_cos_wrapper_widget_1759438046140 .hs-tabs__content__panel {
  margin-right: -100%;
  visibility: hidden;
  padding: 36px 32px;
  box-sizing: border-box;
  width: 100%;
  background: #fafafa;
  border-radius: 14px;
  border-left: 3px solid #ed741b;
}

#hs_cos_wrapper_widget_1759438046140 .hs-tabs__content__panel--visible {
  visibility: visible;
  animation: fadeInTab 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

#hs_cos_wrapper_widget_1759438046140 .hs-tabs__content__panel p {
  font-family: Rubik, sans-serif;
  font-size: 16px !important;
  line-height: 1.8 !important;
  color: #444;
  margin: 0;
}

#hs_cos_wrapper_widget_1759438046140 .hs-tabs__content__panel p span {
  font-size: inherit !important;
  color: inherit !important;
}

#hs_cos_wrapper_widget_1759438046140 .hs-tabs__content__panel p strong,
#hs_cos_wrapper_widget_1759438046140 .hs-tabs__content__panel p strong span {
  color: #ed741b !important;
  font-weight: 700;
}

#hs_cos_wrapper_widget_1759438046140 .hs-tabs__nudge {
  display: none;
}

/* ============================================
   F. TOGGLES/FAQ — Apple card design
   ============================================ */
.body-container--services02 .toggles__entry {
  border-bottom: none !important;
  margin-bottom: 8px;
}

.body-container--services02 .toggles__header {
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.body-container--services02 .toggles__header:hover {
  border-color: #ed741b;
  box-shadow: 0 2px 12px rgba(237, 116, 27, 0.1);
  transform: translateY(-1px);
}

.body-container--services02 .toggles__header h5 {
  margin: 0;
  font-family: Rubik, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #2d2d2d;
  line-height: 1.4;
  padding-right: 40px;
  transition: color 0.25s ease;
}

.body-container--services02 .toggles__header:hover h5 {
  color: #ed741b;
}

/* Icon - chevron arrow */
.body-container--services02 .toggles__icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

/* Hide the + original */
.body-container--services02 .toggles__icon:before {
  display: none !important;
}

/* Chevron right */
.body-container--services02 .toggles__icon:after {
  content: "" !important;
  display: block !important;
  width: 8px;
  height: 8px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transform: rotate(-45deg) !important;
  position: static !important;
  border-radius: 0 !important;
  background: none !important;
  transition: border-color 0.25s ease;
  margin-left: -2px;
}

.body-container--services02 .toggles__header:hover .toggles__icon {
  background: #ed741b;
  border-color: #ed741b;
}

.body-container--services02 .toggles__header:hover .toggles__icon:after {
  border-color: #fff;
}

/* Descriptions hidden — content displayed via modal */
.toggles__description {
  display: none !important;
}

/* Toggle header click feedback */
.toggles__header:active .toggles__icon {
  transform: scale(0.9);
  transition: transform 0.1s ease;
}

/* Tabs scroll */
.hs-tabs__scroll {
  opacity: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* ============================================
   G. RESPONSIVE — All shared components
   ============================================ */
@media (max-width: 768px) {
  /* Headings */
  .body-container--services02 .heading-color-dark .heading-title {
    letter-spacing: -0.5px;
  }

  .body-container--services02 .heading-color-dark .title-description {
    font-size: 15px !important;
    max-width: 100%;
  }

  /* Tabs — horizontal scroll on mobile */
  .body-container--services02 .hs-tabs__tab-wrapper {
    flex-wrap: nowrap;
    border-radius: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .body-container--services02 .hs-tabs__tab-wrapper::-webkit-scrollbar {
    display: none;
  }

  .body-container--services02 .hs-tabs__tab {
    padding: 8px 14px;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .body-container--services02 .hs-tabs__content__panel {
    padding: 24px 16px !important;
  }

  /* Toggles */
  .body-container--services02 .toggles__header {
    padding: 14px 16px;
  }

  .body-container--services02 .toggles__header:hover {
    transform: none;
  }

  .body-container--services02 .toggles__header h5 {
    font-size: 14px;
    padding-right: 36px;
  }

  .body-container--services02 .toggles__icon {
    right: 12px;
    width: 26px;
    height: 26px;
  }

  /* H2 standalone headings */
  #hs_cos_wrapper_widget_1762202625059 h2,
  #hs_cos_wrapper_widget_1762209315999 h2 {
    font-size: 1.6rem !important;
    margin-bottom: 32px;
  }

  /* Tabs ID responsive — horizontal scroll */
  #hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab-wrapper {
    flex-wrap: nowrap;
    border-radius: 10px;
    gap: 2px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  #hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab-wrapper::-webkit-scrollbar {
    display: none;
  }

  #hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab,
  #hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab:active,
  #hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab:focus,
  #hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab:hover {
    padding: 8px 14px;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  #hs_cos_wrapper_widget_1759438046140 .hs-tabs__content__panel {
    padding: 24px 16px;
  }
}

@media (max-width: 480px) {
  .body-container--services02 .heading-color-dark .title-subtitle {
    font-size: 11px !important;
    padding: 5px 14px;
  }

  .body-container--services02 .hs-tabs__tab {
    padding: 7px 10px;
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  #hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab,
  #hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab:active,
  #hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab:focus,
  #hs_cos_wrapper_widget_1759438046140 .hs-tabs__tab:hover {
    padding: 7px 10px;
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* ============================================
   H. TOGGLE MODAL — Apple-inspired overlay
   ============================================ */

/* Body scroll lock */
body.toggle-modal-open {
  overflow: hidden;
}

/* Overlay with backdrop blur */
.toggle-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.toggle-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal container with slide-up */
.toggle-modal-container {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 720px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transform: translateY(30px) scale(0.97);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  overflow: hidden;
}

.toggle-modal-overlay.active .toggle-modal-container {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Modal header */
.toggle-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px 28px;
  border-bottom: 2px solid #ed741b;
  background: linear-gradient(135deg, #fff7f0 0%, #ffffff 100%);
  flex-shrink: 0;
}

.toggle-modal-title {
  margin: 0;
  font-family: Rubik, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.3;
  padding-right: 16px;
}

/* Close button */
.toggle-modal-close {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(237, 116, 27, 0.1);
  color: #ed741b;
  font-size: 22px;
  font-weight: 700;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  line-height: 1;
  padding: 0;
}

.toggle-modal-close:hover {
  background: #ed741b;
  color: #ffffff;
  transform: rotate(90deg);
}

.toggle-modal-close:focus-visible {
  outline: 2px solid #ed741b;
  outline-offset: 2px;
}

/* Modal body - scrollable */
.toggle-modal-body {
  padding: 28px;
  overflow-y: auto;
  flex: 1;
  font-family: Rubik, sans-serif;
  color: #333;
  line-height: 1.7;
}

/* Custom scrollbar */
.toggle-modal-body::-webkit-scrollbar {
  width: 6px;
}
.toggle-modal-body::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 3px;
}
.toggle-modal-body::-webkit-scrollbar-thumb {
  background: #ed741b;
  border-radius: 3px;
}
.toggle-modal-body::-webkit-scrollbar-thumb:hover {
  background: #d4650f;
}

/* ============================================
   I. UNIFIED MODAL CONTENT DESIGN SYSTEM
   ============================================ */

/* Section block */
.modal-section {
  margin-bottom: 16px;
}

.modal-section:last-child {
  margin-bottom: 0;
}

/* Section title - orange gradient header */
.modal-section-title {
  background: linear-gradient(135deg, #ed741b, #f5923e);
  color: #ffffff;
  padding: 13px 20px;
  font-family: Rubik, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.4;
  border-radius: 10px 10px 0 0;
}

/* When title is alone (no items, no text follows) */
.modal-section-title:last-child {
  border-radius: 10px;
}

/* Items container - the "table body" */
.modal-section-items {
  border: 1px solid #ebebeb;
  border-top: none;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* When items are alone (no title above) */
.modal-section-title + .modal-section-items {
  border-radius: 0 0 10px 10px;
}

.modal-section-items:first-child {
  border-top: 1px solid #ebebeb;
  border-radius: 10px;
}

/* Individual item rows - zebra striped */
.modal-item {
  padding: 14px 20px;
  font-family: Rubik, sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: #3a3a3a;
  border-bottom: 1px solid #f2f2f2;
  transition: background-color 0.2s ease;
}

.modal-item:last-child {
  border-bottom: none;
}

.modal-item.even {
  background-color: #ffffff;
}

.modal-item.odd {
  background-color: #faf9f7;
}

.modal-item:hover {
  background-color: #fff6ee;
}

/* Strong/bold inside items */
.modal-item strong {
  color: #c85a0a;
  font-weight: 600;
}

/* Text block - for simple paragraphs and descriptions */
.modal-section-text {
  padding: 16px 20px;
  font-family: Rubik, sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: #3a3a3a;
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Text block after a title */
.modal-section-title + .modal-section-text {
  border-top: none;
  border-radius: 0 0 10px 10px;
}

/* Text block after items */
.modal-section-items + .modal-section-text {
  border-top: none;
  border-radius: 0 0 10px 10px;
  background: #fef9f4;
  font-style: italic;
  color: #555;
}

.modal-section-text strong {
  color: #c85a0a;
  font-weight: 600;
  font-style: normal;
}

/* ============================================
   J. MODAL RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .toggle-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .toggle-modal-container {
    max-width: 100%;
    max-height: 92vh;
    border-radius: 16px 16px 0 0;
  }

  .toggle-modal-header {
    padding: 20px 20px 16px 20px;
  }

  .toggle-modal-title {
    font-size: 17px;
  }

  .toggle-modal-body {
    padding: 20px;
  }

  .modal-section-title {
    padding: 12px 16px;
    font-size: 13px;
  }

  .modal-item {
    padding: 12px 16px;
    font-size: 13.5px;
  }

  .modal-section-text {
    padding: 14px 16px;
    font-size: 13.5px;
  }
}

@media (max-width: 480px) {
  .modal-section-title {
    padding: 10px 14px;
    font-size: 12.5px;
  }

  .modal-item {
    padding: 10px 14px;
    font-size: 13px;
  }

  .modal-section-text {
    padding: 12px 14px;
    font-size: 13px;
  }
}
