.nimbus-feature-switcher{
  padding: 48px 0 72px; /* tighter overall */
}
.nimbus-feature-switcher{
  padding-bottom: 90px; /* increase slightly */
}
.nfs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.nfs-header {
  max-width: 720px;
   margin-bottom: 10px;
  text-align: left;
}

.nfs-heading {
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 16px;
}

.nfs-intro {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(17,24,39,.75);
}

/* CTA */
.nfs-cta-wrap {
  margin-top: 28px;
}
/* Badge */
.nimbus-feature-switcher .nfs-stage{
  position: relative;
}

.nimbus-feature-switcher .nfs-section-badge{
  position: absolute;
  left: 40px;
  top: 40px;
  z-index: 5;
  pointer-events: none;
}

.nimbus-feature-switcher .nfs-section-badge img{
  width: 110px;
  height: auto;
  display: block;
}

  }
@media (max-width: 720px){
  .nimbus-feature-switcher .nfs-section-badge{
    position: static;
    margin: 0 0 16px;
  }
}
.nfs-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
    background: linear-gradient(135deg, #101541 0%, #b81427 100%);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 16px rgba(10, 21, 61, 0.35);
}

.nfs-cta:hover,
.nfs-cta:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(16, 21, 61, 0.25);
}

.nfs-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(10, 27, 65, 0.4);
}a.nfs-cta {
  color: #ffffff !important;
}
}
/* Force white text always */
.nfs-cta,
.nfs-cta:visited,
.nfs-cta:hover,
.nfs-cta:focus,
.nfs-cta:active{
  color: #fff !important;
  text-decoration: none;
}
/* Active press */
.nfs-cta:active{
  transform: translateY(0);
  box-shadow:
    0 6px 16px rgba(0,0,0,.2),
    inset 0 2px 4px rgba(0,0,0,.15);
}
.nimbus-feature-switcher{
  --card-bg: #F3F5F7;
  --card-bg-active: #f3f5f7;
  --text: #111827;
  --muted: rgba(17, 24, 39, 0.70);
  --radius: 18px;
  --gap: clamp(16px, 2.2vw, 28px);

  width: 100%;
}

.nimbus-feature-switcher .nfs-grid{
  display: grid;
    margin-top: 0;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(16px, 2.2vw, 28px);
  align-items: start; /* was center */
}

@media (max-width: 720px){
  .nimbus-feature-switcher .nfs-grid{
    grid-template-columns: 1fr;
  }
}

.nimbus-feature-switcher .nfs-visual{
  margin-top: 0px; /* tweak 6–18px */
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
}

.nimbus-feature-switcher .nfs-image{
  width: 100%;
  height: auto;
  display: block;
  transform: translateZ(0);
  opacity: 1;
  transition: opacity 160ms ease;
}

.nimbus-feature-switcher .nfs-image.is-fading{
  opacity: 0;
}

.nimbus-feature-switcher .nfs-image-fallback{
  padding: 28px;
  font-size: 14px;
  color: rgba(17, 24, 39, 0.65);
}

.nimbus-feature-switcher .nfs-list{
  display: grid;
  gap: 14px;
  align-content: center;
}

/* Base item */
.nimbus-feature-switcher .nfs-item{
  appearance: none;
  border: 0px solid rgba(17,24,39,.06);
  background: transparent;
  border-radius: 18px;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

/* Hover */
.nimbus-feature-switcher .nfs-item:hover{
  border-color: rgba(17,24,39,.12);
}

/* Active only gets fill */
.nimbus-feature-switcher .nfs-item.is-active{
  background: #F3F5F7;
  border-color: rgba(17,24,39,.12);
}

.nimbus-feature-switcher .nfs-item:hover{
  transform: translateY(-1px);
}

.nimbus-feature-switcher .nfs-item.is-active{
  background: var(--card-bg-active);
}

.nimbus-feature-switcher .nfs-title{
  display: block;
  font-weight: 650;
  font-size: 16px;
  line-height: 1.15;
  margin-bottom: 6px;
}

.nimbus-feature-switcher .nfs-desc{
  display: block;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}
.nimbus-feature-switcher .nfs-item-inner{
  display:flex;
  gap:14px;
  align-items:center;
}

.nimbus-feature-switcher .nfs-badge{
  width:56px;
  height:56px;
  flex:0 0 56px;
  display:grid;
  place-items:center;
}

.nimbus-feature-switcher .nfs-badge svg,
.nimbus-feature-switcher .nfs-badge img{
  width:96%;
  height:100%;
  filter: drop-shadow(0 12px 24px rgba(122,30,77,.25));
  display:block;
}


.nfs-section-badge img{
  width: 96px;
  height: auto;
  display: block;
    margin-bottom: 16px;
}
/* Make text column a vertical stack */
.nfs-copy {
  display: flex;
  flex-direction: column;
}

/* Push CTA to bottom */
@media (min-width: 981px){
  .nfs-cta-wrap{
    margin-top: auto;
    padding-top: 8px;
  }
}