/* CB Odensys page enhancements */

/* Fix: these sections pair col-lg-* with no base col-12, so below 992px the
   column has no explicit width — inside Bootstrap's flex .row, an <img
   width:100%> then forces the column (and the whole page) to overflow
   horizontally to the image's intrinsic pixel size. min-width:0 lets the
   column shrink to the viewport like a normal block instead. */
.cb-hero .row > div,
.cb-why-section .row > div,
.cb-solutions-section .row > div {
  min-width: 0;
}

/* Fix: the desktop nav (logo + 5 links + CTA button) only just fits above
   1200px. Between 992px (where it switches on) and 1199px it has no slack
   left and wraps mid-label ("Healthcare" / "Advisory" on two lines). Tighten
   link spacing/size in that gap so it stays on one line. */
@media (min-width: 992px) and (max-width: 1199px) {
  .main-nav-area ul.fluxi-desktop-menu .menu-item .fluxi-dropdown-main-element {
    padding: 35px 10px;
    font-size: 13.5px;
    letter-spacing: -0.2px;
  }
}

/* Fix: .header-style-one is position:absolute (theme default, meant for a
   header that floats over a hero background) so it takes no space in normal
   flow — .cb-hero starts at y:0 and the header (96px tall, measured, stable
   at every width) sits on top of it, hiding the first ~16-36px of the
   full-bleed video underneath. Push the hero down by the header's height so
   the video starts right below it instead of underneath it. */
.cb-hero {
  position: relative;
  overflow: hidden;
  padding-top: 96px;
  background: linear-gradient(135deg, #eaf4fb 0%, #f7fbfe 55%, #ffffff 100%);
}

.cb-hero::before,
.cb-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  filter: blur(2px);
}

.cb-hero::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 99, 165, 0.12) 0%, rgba(0, 99, 165, 0) 70%);
  top: -140px;
  right: -120px;
}

.cb-hero::after {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 99, 165, 0.08) 0%, rgba(0, 99, 165, 0) 70%);
  bottom: -120px;
  left: -100px;
}

.cb-hero .container {
  position: relative;
  z-index: 1;
}

.cb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1;
  color: #0063a5;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(0, 99, 165, 0.08);
  border: 1px solid rgba(0, 99, 165, 0.18);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.cb-eyebrow i {
  font-size: 15px;
}

.cb-hero-image-wrap {
  position: relative;
}

.cb-hero-image-wrap img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 99, 165, 0.18);
  position: relative;
  z-index: 1;
}

.cb-hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 2px solid rgba(0, 99, 165, 0.25);
  border-radius: 20px;
  z-index: 0;
}

/* Full-bleed hero video: sits outside .container (direct child of
   .cb-hero) so it's naturally 100% of the screen width, edge to edge, with
   no vw/scrollbar rounding gap. width:100%/height:auto scales it down
   proportionally only — never stretched or cropped — so it stays sharp. */
.cb-hero-video-full {
  position: relative;
}

.cb-hero-video-full img,
.cb-hero-video-full video {
  display: block;
  width: 100%;
  height: auto;
}

/* CTA buttons in a normal-flow row right under the video (not floated on
   top of it). principal_destkope.mp4 has its own burned-in artwork —
   welcome title/logo card, then app screenshots — that runs close to the
   very bottom edge of the frame at every width (checked from 320px up to
   the video's native 1920px: since the video scales as one uniform image,
   the same relative spot stays clear each time). A bottom-anchored overlay
   floating over that content would collide with it at every breakpoint,
   not just small ones — so the buttons live below the video instead,
   where nothing can ever overlap. The row's fill is #09183f, sampled
   directly from principal_destkope.mp4's background (checked at several
   points across its ~53s loop — it stays ~rgb(9,24,63) throughout), so
   the row reads as a continuation of the video, not a bolted-on bar. */
.cb-hero-video-overlay {
  position: static;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 32px 20px;
  background: #09183f;
}

.cb-hero-video-overlay .button-banner-one-wrapper {
  gap: 16px;
}

.cb-hero-video-overlay .rts-btn.btn-primary {
  background: rgb(0, 191, 212);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.cb-hero-video-overlay .rts-btn.btn-primary:hover {
  background: rgb(0, 168, 187);
}

@media (max-width: 767px) {
  .cb-hero-video-overlay {
    padding: 20px 16px;
  }

  .cb-hero-video-overlay .button-banner-one-wrapper {
    gap: 12px;
  }
}

@media (max-width: 575px) {
  .cb-hero-video-overlay {
    padding: 18px 14px;
  }

  .cb-hero-video-overlay .button-banner-one-wrapper {
    gap: 10px;
  }

  .cb-hero-video-overlay .rts-btn.btn-primary {
    padding: 12px 16px;
    font-size: 13px;
    border-radius: 8px;
  }

  .cb-hero-video-overlay .cb-btn-ghost-light {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .cb-hero-video-overlay {
    padding: 16px 10px;
  }

  .cb-hero-video-overlay .button-banner-one-wrapper {
    gap: 8px;
  }

  .cb-hero-video-overlay .rts-btn.btn-primary {
    padding: 10px 13px;
    font-size: 12px;
  }

  .cb-hero-video-overlay .cb-btn-ghost-light {
    font-size: 12px;
  }
}

.cb-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}

.cb-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(0, 99, 165, 0.15);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #1f1f25;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.cb-pill i {
  color: #0063a5;
  font-size: 16px;
}

.cb-value-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(0, 99, 165, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (max-width: 575px) {
  .cb-value-card {
    padding: 1.5rem;
  }
}

.cb-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 99, 165, 0.14);
}

.cb-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0063a5 0%, #0092d6 100%);
  color: #fff;
  font-size: 24px;
  margin-bottom: 1.4rem;
  box-shadow: 0 8px 18px rgba(0, 99, 165, 0.25);
}

.cb-why-section {
  position: relative;
  background: linear-gradient(135deg, #0063a5 0%, #004e83 100%);
  border-radius: 28px;
  padding: 3.5rem 3rem;
  color: #fff;
  overflow: hidden;
}

.cb-why-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -100px;
  right: -80px;
}

.cb-why-section h2 {
  color: #fff;
}

.cb-why-section p {
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  z-index: 1;
}

.cb-why-section .cb-eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* Extra horizontal breathing room between the image and the "Quiénes somos"
   text column once they sit side by side (>=992px) — the default
   col-lg-6/col-lg-6 Bootstrap gutter reads as cramped at this width. Scaled
   down in one intermediate step for the 992-1199px range. Left untouched
   below 992px: there the columns stack and already get vertical spacing
   from mt_md--40 / mt_sm--40 on the image column. */
@media (min-width: 1200px) {
  .cb-quienes-somos-row .col-lg-6:first-child {
    padding-left: 48px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .cb-quienes-somos-row .col-lg-6:first-child {
    padding-left: 32px;
  }
}

.cb-split-image {
  position: relative;
}

.cb-split-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.cb-split-image .cb-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  border-radius: 16px;
  padding: 1.1rem 1.4rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.cb-badge-float i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0063a5 0%, #0092d6 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.cb-badge-float .cb-badge-title {
  font-weight: 700;
  font-size: 15px;
  color: #1f1f25;
  line-height: 1.2;
}

.cb-badge-float .cb-badge-sub {
  font-size: 12px;
  color: #6b7280;
}

.cb-solutions-section {
  background: #153f79;
  position: relative;
}

.cb-solutions-section h2.title {
  color: #ffffff;
}

.cb-solutions-section p.disc {
  color: rgba(255, 255, 255, 0.75);
}

.cb-solutions-section .cb-showcase-more-label {
  color: rgba(255, 255, 255, 0.6);
}

.cb-solutions-section .cb-chip {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.cb-solution-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  height: 100%;
  border-top: 3px solid transparent;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

@media (max-width: 575px) {
  .cb-solution-card {
    padding: 1.6rem 1.3rem;
  }
}

.cb-solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 99, 165, 0.16);
  border-top-color: #0063a5;
}

.cb-solution-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 99, 165, 0.08);
  color: #0063a5;
  font-size: 26px;
  margin-bottom: 1.4rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.cb-solution-card:hover .cb-solution-icon {
  background: linear-gradient(135deg, #0063a5 0%, #0092d6 100%);
  color: #fff;
}

.cb-solution-card h4 {
  font-size: 18px;
  margin-bottom: 0.8rem;
}

.cb-cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #0063a5 0%, #0092d6 100%);
  border-radius: 28px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  color: #fff;
}

.cb-cta-banner::before,
.cb-cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cb-cta-banner::before {
  width: 260px;
  height: 260px;
  top: -100px;
  left: -60px;
}

.cb-cta-banner::after {
  width: 200px;
  height: 200px;
  bottom: -80px;
  right: -40px;
}

.cb-cta-banner h2 {
  color: #fff;
  position: relative;
  z-index: 1;
}

.cb-cta-banner p {
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cb-cta-banner .button-banner-one-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.cb-cta-banner .rts-btn {
  position: relative;
  z-index: 1;
  background: #fff;
  color: #0063a5;
  border-color: #fff;
}

.cb-cta-banner .rts-btn:hover {
  background: transparent;
  color: #fff;
}

@media (max-width: 991px) {
  .cb-why-section,
  .cb-cta-banner {
    padding: 2.5rem 1.5rem;
  }

  .cb-split-image .cb-badge-float {
    left: 12px;
    bottom: -16px;
    padding: 0.9rem 1.1rem;
  }

  .cb-hero-image-wrap::after {
    inset: 12px -12px -12px 12px;
  }
}

@media (max-width: 575px) {
  .cb-why-section,
  .cb-cta-banner {
    padding: 1.75rem 1.25rem;
  }

  .cb-why-section h2,
  .cb-cta-banner h2 {
    font-size: 24px;
  }

  .cb-pill-row {
    gap: 10px;
    margin-top: 1.4rem;
  }
}

/* Secondary "ghost" button (hero) */
.cb-hero .button-banner-one-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.cb-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: #0063a5;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.cb-btn-ghost i {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.cb-btn-ghost:hover {
  color: #004e83;
  gap: 12px;
}

/* Light variant for use over dark/photo backgrounds (hero video overlay) */
.cb-btn-ghost-light {
  color: #ffffff;
}

.cb-btn-ghost-light:hover {
  color: #cfe8fb;
}

/* Floating highlight strip (hero) */
.cb-highlight-strip {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: #ffffff;
  border-radius: 24px;
  padding: 2.4rem 2.6rem;
  box-shadow: 0 20px 50px rgba(0, 99, 165, 0.1);
  border: 1px solid rgba(0, 99, 165, 0.08);
}

.cb-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}

.cb-highlight-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0063a5 0%, #0092d6 100%);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 8px 18px rgba(0, 99, 165, 0.25);
}

.cb-highlight-title {
  font-weight: 700;
  font-size: 17px;
  color: #1f1f25;
  margin-bottom: 0.3rem;
}

.cb-highlight-item p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.cb-highlight-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(0, 99, 165, 0.12);
}

@media (max-width: 1199px) {
  .cb-highlight-strip {
    padding: 2rem;
    gap: 1.5rem;
  }
}

@media (max-width: 991px) {
  .cb-highlight-strip {
    flex-wrap: wrap;
    gap: 1.75rem;
  }

  .cb-highlight-item {
    flex: 1 1 45%;
  }

  .cb-highlight-divider {
    display: none;
  }
}

@media (max-width: 767px) {
  .cb-highlight-strip {
    padding: 1.75rem 1.5rem;
  }
}

@media (max-width: 575px) {
  .cb-highlight-strip {
    padding: 1.5rem;
    gap: 1.4rem;
  }

  .cb-highlight-item {
    flex: 1 1 100%;
  }
}

/* Checklist (inside cb-why-section) */
.cb-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cb-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.cb-check-list li i {
  color: #ffffff;
  font-size: 17px;
  margin-top: 2px;
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .cb-check-list li {
    font-size: 14px;
  }
}

/* Modules showcase (home) */
.cb-showcase-tabs {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cb-showcase-tab {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  background: rgb(0, 99, 165);
  box-shadow: 0 10px 24px rgba(0, 99, 165, 0.2);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.cb-showcase-tab:hover,
.cb-showcase-tab.active {
  background: rgb(0, 191, 212);
  box-shadow: 0 14px 32px rgba(0, 191, 212, 0.35);
}

.cb-showcase-tab-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: rgb(0, 99, 165);
  font-size: 19px;
  transition: transform 0.2s ease;
}

.cb-showcase-tab:hover .cb-showcase-tab-icon {
  transform: translateY(-2px);
}

.cb-showcase-tab-title {
  display: block;
  font-weight: 700;
  font-size: 15.5px;
  color: #ffffff;
  margin-bottom: 2px;
}

.cb-showcase-tab-desc {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.cb-showcase-more-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 0.8rem;
}

.cb-chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cb-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #0063a5;
  background: rgba(0, 99, 165, 0.06);
  border: 1px solid rgba(0, 99, 165, 0.14);
  border-radius: 999px;
  padding: 6px 12px;
}

.cb-chip i {
  font-size: 13px;
}

.cb-showcase-frame-wrap {
  position: relative;
}

.cb-showcase-frame {
  position: relative;
  background: #0f172a;
  border-radius: 22px;
  padding: 14px 14px 0;
  box-shadow: 0 30px 70px rgba(0, 99, 165, 0.22);
  overflow: hidden;
}

.cb-showcase-frame-bar {
  display: flex;
  gap: 7px;
  padding: 2px 6px 14px;
}

.cb-showcase-frame-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
}

.cb-showcase-frame-bar span:nth-child(1) {
  background: #ff5f57;
}

.cb-showcase-frame-bar span:nth-child(2) {
  background: #febc2e;
}

.cb-showcase-frame-bar span:nth-child(3) {
  background: #28c840;
}

.cb-module-slide {
  position: relative;
}

.cb-module-slide::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
  z-index: 1;
}

.cb-module-slide img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0f172a;
}

.cb-module-slide-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  color: #0063a5;
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.mySwiper-modules .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.5;
}

.mySwiper-modules .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ffffff;
}

.cb-showcase-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #0063a5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s ease, color 0.2s ease;
}

.cb-showcase-nav:hover {
  background: #0063a5;
  color: #fff;
}

/* Default (and 992-1199px): sit just inside the frame. At that width the
   tabs column is too narrow to safely let the arrows float outside it —
   the -22px "floating" look is reserved for >=1200px, where there's enough
   gutter between the tabs and the frame for it not to overlap the tabs. */
.cb-showcase-nav.prev {
  left: 10px;
}

.cb-showcase-nav.next {
  right: 10px;
}

@media (min-width: 1200px) {
  .cb-showcase-nav.prev {
    left: -22px;
  }

  .cb-showcase-nav.next {
    right: -22px;
  }
}

@media (max-width: 1199px) {
  .cb-module-slide-tag {
    font-size: 13px;
    padding: 7px 13px;
  }
}

@media (max-width: 767px) {
  .cb-showcase-nav {
    display: none;
  }

  .cb-showcase-tab {
    padding: 0.85rem 0.9rem;
  }
}

@media (max-width: 575px) {
  .cb-showcase-frame {
    border-radius: 16px;
    padding: 10px 10px 0;
  }

  .cb-module-slide-tag {
    top: 12px;
    left: 12px;
    font-size: 12px;
    padding: 6px 11px;
  }

  .cb-showcase-more {
    margin-top: 1.5rem;
  }
}

/* Full-bleed CTA band (home) */
.cb-cta-band {
  background: linear-gradient(120deg, #0063a5 0%, #0092d6 100%);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cb-cta-band::before,
.cb-cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cb-cta-band::before {
  width: 320px;
  height: 320px;
  top: -140px;
  left: -80px;
}

.cb-cta-band::after {
  width: 260px;
  height: 260px;
  bottom: -120px;
  right: -60px;
}

.cb-cta-band .cb-cta-inner {
  position: relative;
  z-index: 1;
}

.cb-cta-band h2 {
  color: #fff;
  margin-bottom: 0.9rem;
}

.cb-cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto;
}

.cb-cta-band .button-banner-one-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.cb-cta-band .rts-btn {
  position: relative;
  z-index: 1;
  background: #fff;
  color: #0063a5;
  border-color: #fff;
}

.cb-cta-band .rts-btn:hover {
  background: transparent;
  color: #fff;
}

@media (max-width: 767px) {
  .cb-cta-band {
    padding: 3rem 0;
  }

  .cb-cta-band h2 {
    font-size: 24px;
  }
}

/* "Lo que hacemos" image-overlay cards (same pattern as cbcorebusiness.com's
   img-card, adapted to the Odensys blue accent instead of their teal). */
.cb-img-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  text-decoration: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.cb-img-card:hover {
  box-shadow: 0 26px 60px rgba(0, 99, 165, 0.25);
  transform: translateY(-6px);
}

.cb-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.cb-img-card:hover img {
  transform: scale(1.06);
}

.cb-img-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 20, 34, 0.92) 0%, rgba(6, 20, 34, 0.35) 55%, rgba(6, 20, 34, 0.05) 100%);
  transition: background 0.3s ease;
}

.cb-img-card:hover .cb-img-card-overlay {
  background: linear-gradient(0deg, rgba(6, 20, 34, 0.95) 0%, rgba(6, 20, 34, 0.55) 60%, rgba(6, 20, 34, 0.1) 100%);
}

.cb-img-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.8rem;
  color: #fff;
  transform: translateY(6px);
  transition: transform 0.3s ease;
}

.cb-img-card:hover .cb-img-card-content {
  transform: translateY(0);
}

.cb-img-card-tag {
  display: inline-block;
  background: rgb(0, 99, 165);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}

.cb-img-card-content h3 {
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.cb-img-card-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 991px) {
  .cb-img-card {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 575px) {
  .cb-img-card-content {
    padding: 1.3rem;
  }

  .cb-img-card-content h3 {
    font-size: 1.15rem;
  }
}

/* Blog teaser section (homepage) — reuses .cb-eyebrow / .cb-img-card so it
   stays visually consistent with the rest of the page instead of adding a
   new card style just for this section. */
.cb-blog-section {
  background: #f7fafc;
}

.cb-blog-viewmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0063a5;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}

.cb-blog-viewmore i {
  transition: transform 0.2s ease;
}

.cb-blog-viewmore:hover {
  color: #004c80;
}

.cb-blog-viewmore:hover i {
  transform: translateX(4px);
}

.cb-blog-card {
  aspect-ratio: 4 / 3;
}

.cb-blog-card-meta {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.35rem;
}

/* Blog post titles run longer than the 2-3 word tags .cb-img-card-content h3
   was designed for elsewhere on this page — clamp to 2 lines so a long one
   doesn't push past the card. */
.cb-blog-card .cb-img-card-content h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.15rem;
}

/* Culture section (adapted from cbcorebusiness.com/latam, teal accent swapped
   for the Odensys blue to stay consistent with the rest of the site). */
.cb-culture-section {
  background: linear-gradient(160deg, #0f172a 0%, #0b1220 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cb-culture-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 30%, rgba(0, 99, 165, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(0, 146, 214, 0.14) 0%, transparent 45%);
  pointer-events: none;
}

.cb-culture-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0092d6, #0063a5, transparent);
}

.cb-culture-section .container {
  position: relative;
  z-index: 1;
}

.cb-eyebrow-dark {
  background: rgba(0, 146, 214, 0.12);
  border-color: rgba(0, 146, 214, 0.28);
  color: #5fc4ec;
}

.cb-culture-section h2 {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cb-culture-section h2 .cb-accent-text {
  color: #33a9e0;
}

.cb-culture-section p.disc {
  color: rgba(255, 255, 255, 0.65);
}

.cb-culture-lead {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.5rem;
}

.cb-culture-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cb-culture-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cb-culture-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(0, 146, 214, 0.12);
  border: 1px solid rgba(0, 146, 214, 0.28);
  color: #5fc4ec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.cb-culture-feature-title {
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 3px;
}

.cb-culture-feature p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

.cb-culture-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  aspect-ratio: 4 / 3;
}

.cb-culture-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cb-culture-gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cb-culture-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.cb-culture-gallery-item:hover img {
  transform: scale(1.05);
}

.cb-culture-gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1rem 0.75rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
}

@media (max-width: 767px) {
  .cb-culture-section {
    padding: 4rem 0;
  }
}
