
.cta-wrap{font-family:Montserrat,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif; color:#4D4D4D; width:100%;}
.cta-top{ text-align:center; font-weight:600; font-size: 18px; margin: 10px 0 14px;}

.cta-grid{
  display:grid;
  width:100%;
  max-width:1140px;
  margin:0 auto;
  /* Symmetric layout so the center stays truly centered even with long texts */
  /* 3 columns of the same size; center content is constrained by .cta-circle max-width */
  grid-template-columns: 1fr 1.50fr 1fr;
  column-gap: 40px;
  row-gap: 24px;
  justify-items: center;
  align-items: center;
}

@media (max-width: 980px){
  .cta-grid{
  display:grid;
  /* Symmetric layout so the center stays truly centered even with long texts */
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 40px;
  row-gap: 24px;
  justify-items: center;
  align-items: center;
}
  .cta-col{ justify-self:center; }
}

.cta-col{ display:flex; flex-direction:column; gap:34px; }
.cta-col-right{ align-items:flex-start; }
.cta-col-left{ align-items:stretch; }

.cta-item{
  border:0 !important;
  background:transparent !important;
  padding:0 !important;
  display:inline-flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
  box-shadow:none !important;
  outline:none !important;
  -webkit-tap-highlight-color: transparent;
}

.cta-item:hover,.cta-item:focus,.cta-item:active{
  background:transparent !important; box-shadow:none !important; outline:none !important;
}

/* LEFT: text then number (near the circle) */
.cta-item[data-side="left"]{
  width:100%;
  flex-direction: row-reverse;
  justify-content: flex-start; /* push content toward the circle side */
}
.cta-item[data-side="left"] .cta-text{
  flex: 1 1 auto;
  text-align:right;
  font-style: italic;
}

.cta-badge{
  width:54px; height:54px; border-radius:999px;
  display:inline-flex; align-items:center; justify-content:center;
  background:#0071BC; color:#fff; font-weight:800; font-size:22px;
  flex: 0 0 auto;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
  transition: transform .18s ease, background .18s ease;
}

.cta-text{
  font-size:22px;
  font-weight:700;
  color:#4D4D4D;
  transition: transform .18s ease, color .18s ease;
  white-space: normal !important;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.15;
}

.cta-item.is-active .cta-badge{ background:#EC1E79; transform: scale(1.18); }
.cta-item.is-active .cta-text{ color:#EC1E79; font-style:italic; font-weight:800; transform: scale(1.03); }

.cta-stage{ width:100%; display:flex; justify-content:center; }
.cta-circle{
  width:100%;
  max-width: 420px;
  position:relative;
  overflow:hidden;            /* clip image inside the circle */
  border-radius:50%;
  background: radial-gradient(circle at 35% 30%, #9DBF1A 0%, #009D4F 70%);
  transition: transform .22s ease;
}
.cta-wrap.has-active .cta-circle{ transform: scale(1.03); }
.cta-circle::before{ content:""; display:block; padding-top:100%; }
.cta-imgwrap{ position:absolute; inset:0; }
.cta-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100% !important;
  object-fit: contain; /* keep entire layer inside the circle */
  padding: 5%;
  display:block;
  filter: drop-shadow(0 14px 16px rgba(0,0,0,.18));
  transition: opacity .18s ease;
}
.cta-img.is-fading{ opacity:.25; }

.cta-bottom{ margin-top:14px; text-align:center; display:block; }
.cta-pill{
  display:inline-block;
  background:#EC1E79;
  color:#fff;
  font-weight:900;
  border-radius:999px;
  padding:10px 24px;
  min-width:360px;
  max-width:90%;
}
.cta-pill-text{ font-size:20px; }
.cta-desc{ display:none;  margin-top:10px; font-style:italic; font-size:16px; color:#4D4D4D; }

.cta-back{
  margin-top:14px;
  padding:10px 16px;
  border-radius:6px;
  border:1px solid #EC1E79;
  color:#EC1E79;
  background:transparent;
  font-weight:700;
  cursor:pointer;
}

.cta-wrap.has-active .cta-desc{ display:block; }

.cta-item[data-side="right"] .cta-text{ width: auto !important;
  max-width: 260px; white-space:normal; line-height:1.15; }

.cta-item[data-side="right"] .cta-text{ text-align:left; }

.cta-item[data-side="left"] .cta-text{ width: auto !important;
  max-width: 260px; }



/* Tablet: circle on top, lists below in 2 columns */
@media (max-width: 1024px){
  .cta-wrap .cta-grid{
    grid-template-columns: 1fr 1fr !important;
    grid-template-areas:
      "stage stage"
      "left  right";
    column-gap: 26px !important;
    row-gap: 22px !important;
  }
  .cta-wrap .cta-stage{ grid-area: stage; }
  .cta-wrap .cta-col-left{ grid-area: left; align-items:flex-end; }
  .cta-wrap .cta-col-right{ grid-area: right; align-items:flex-start; }
  .cta-wrap .cta-circle{ max-width: 420px; }
}

/* Mobile: stack everything */
@media (max-width: 680px){
  .cta-wrap .cta-top{ font-size: 13px !important; margin: 6px 0 10px !important; }
  .cta-wrap .cta-grid{
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "stage"
      "left"
      "right";
    row-gap: 18px !important;
  }
  .cta-wrap .cta-stage{ grid-area: stage; }
  .cta-wrap .cta-col-right{ grid-area: right;
        align-items: start;
        width: 82%; }
  .cta-wrap .cta-col-left{ grid-area: left; align-items:center; }
  .cta-wrap .cta-circle{ max-width: 320px; }
  .cta-wrap .cta-badge{
    width: 30px !important;
    height: 30px !important;
    font-size: 18px !important;
  }
  .cta-wrap .cta-item[data-side="left"],
  .cta-wrap .cta-item[data-side="right"]{
    max-width: 100% !important;
    justify-content: center !important;
  }
  .cta-wrap .cta-item[data-side="left"] .cta-text,
  .cta-wrap .cta-item[data-side="right"] .cta-text{
    max-width: none;
    font-size: 15px !important;
  }
  .cta-wrap .cta-bottom .cta-pill{
    width: 92% !important;
  }

.cta-item[data-side="left"] {
    flex-direction: row;
}

.cta-item[data-side="left"] .cta-text {
    text-align: left;
}

.cta-col {
    gap: 14px;
}

}