/* ─────────────────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────────────────── */

.cta-band {
  /* margin:0 48px 72px; */
  background: linear-gradient(130deg, #0d3d28 0%, #1a8a45 50%, #0272b0 100%);
  padding: 56px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/*.cta-band::before {
  content: 'HOME';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 160px;
  font-weight: 900;
  font-style: italic;
  color: rgba(255, 255, 255, .05);
  letter-spacing: -.06em;
  pointer-events: none;
}*/

.cta-band::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  top: -120px;
  right: 180px;
}

.cta-text h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.1;
}

.cta-text h2 em {
  font-style: italic;
}

.cta-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
  max-width: 400px
}

.cta-acts {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1
}

@keyframes ripple-blowout {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 212, 59, 0.6);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 212, 59, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 212, 59, 0);
  }
}

.cbtn-w {
  padding: 12px 24px;
  border-radius: 9px;
  background: #fff;
  color: #0d3d28;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all .16s;
  animation: ripple-blowout 2s infinite;
}

.cbtn-w:hover {
  opacity: .92;
  transform: translateY(-2px);
  animation: none;
}

.cbtn-g {
  padding: 12px 18px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  cursor: pointer;
  transition: all .14s;
  font-family: 'Inter', sans-serif;
}

.cbtn-g:hover {
  background: rgba(255, 255, 255, .17);
  color: #fff
}

.cta-cards {
  display: flex;
  gap: 16px;
  flex: 1;
  justify-content: center;
  z-index: 1;
}

.cta-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  width: 100%;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.cta-card img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.cta-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.cta-card-divider {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  margin: 0 auto 12px auto;
}

.cta-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
}

.cta-card p .highlight {
  color: #c1ff72;
  font-weight: 600;
}

/* ─────────────────────────────────────────────────────────
   CTA RESPONSIVE ADJUSTMENTS
───────────────────────────────────────────────────────── */

/* Tablet (Max-width: 1080px) */
@media(max-width:1080px) {
  .cta-band {
    margin: 0 0 0;
    /* Removes side margins if any */
    padding: 40px 32px;
    /* Reduces padding for smaller width */
  }
}

/* Mobile (Max-width: 640px) */
@media(max-width:640px) {
  .cta-band {
    margin: 0 0 60px;
    /* Adds bottom spacing for mobile flow */
    padding: 32px 20px;
    /* Tightens padding */
    flex-direction: column;
    /* Stacks text and buttons vertically */
    text-align: center;
    /* Centers text for mobile balance (implied) */
  }

  .cta-text p {
    max-width: 100%;
    /* Allows text to fill the width */
  }

.cta-cards {
    flex-direction: row;
    gap: 6px;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
  }

  .cta-card {
    padding: 10px 4px;
    max-width: 33%;
    border-radius: 8px;
  }

  .cta-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
  }

  .cta-card h4 {
    font-size: 9px;
    margin-bottom: 4px;
  }

  .cta-card-divider {
    margin: 4px 0;
    width: 20px;
  }

  .cta-card p {
    font-size: 7.5px;
    line-height: 1.2;
  }

  .cta-acts {
    width: 100%;
    /* Forces action container to full width */
    justify-content: center;
  }
}

  /* ================= CTA ================= */

  .cta-band {
    padding: 50px 30px;
    gap: 30px;
  }

  .cta-img-side {
    flex: 0 0 260px;
  }

  .cta-text h2 {
    font-size: 34px;
  }
  .connect-text {
  color: #fff;
  font-size: 22px;
}

.Levantare-ant {
  width: 168px;
  height: auto;
}
