/* ===== Packages / Pricing Section ===== */
.section-packages{
  background:
    radial-gradient(90% 70% at 18% 14%, rgba(37, 112, 147, 0.18), transparent 62%),
    radial-gradient(80% 70% at 84% 86%, rgba(29, 96, 132, 0.16), transparent 66%),
    linear-gradient(180deg, #061a22 0%, #04141b 100%);
  color: #ffffff;
  overflow: hidden;
}

.packages-head{
  text-align: center;
  margin-bottom: clamp(24px, 3.2vw, 42px);
}

.packages-kicker{
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #cfa75f;
  margin-bottom: 10px;
}

.packages-head h2{
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.05;
}

/* ── Pricing Bar ── */
.pricing-bar{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.pricing-cell{
  padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 32px);
  text-align: center;
  position: relative;
}

.pricing-cell + .pricing-cell::before{
  content: "";
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.pricing-cell-featured{
  background: rgba(207, 167, 95, 0.07);
}

.pricing-cell-label{
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px;
}

.pricing-cell-featured .pricing-cell-label{
  color: rgba(207, 167, 95, 0.65);
}

.pricing-cell-amount{
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.85);
}

.pricing-cell-featured .pricing-cell-amount{
  color: #cfa75f;
}

.pricing-eur{
  font-size: 1rem;
  vertical-align: super;
  opacity: 0.65;
  margin-right: 2px;
}

.pricing-cell-per{
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 8px;
}

.pricing-cell-tip{
  font-size: 0.72rem;
  color: rgba(207, 167, 95, 0.6);
  margin-top: 5px;
}

/* ── Footer / CTA ── */
.pricing-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(18px, 2.5vw, 24px) clamp(20px, 3vw, 30px);
  background: rgba(207, 167, 95, 0.06);
  border: 1px solid rgba(207, 167, 95, 0.2);
  border-radius: 14px;
  flex-wrap: wrap;
}

.pricing-footer-info{
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-footer-icon{
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(207, 167, 95, 0.12);
  border: 1px solid rgba(207, 167, 95, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cfa75f;
}

.pricing-footer-text{
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.pricing-footer-text strong{
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  display: block;
}

.pricing-cta-btn{
  display: inline-block;
  padding: 14px 32px;
  background: #cfa75f;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
  transform: skewX(-10deg);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(207, 167, 95, 0.28);
  transition: filter 180ms ease, box-shadow 180ms ease;
}

.pricing-cta-btn:hover{
  filter: brightness(1.08);
  box-shadow: 0 12px 30px rgba(207, 167, 95, 0.4);
}

.pricing-cta-btn-disabled{
  opacity: 0.6;
  pointer-events: none;
  cursor: default;
}

@media (max-width: 700px){
  .pricing-bar{
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .pricing-cell + .pricing-cell::before{
    top: 0; bottom: auto;
    left: 15%; right: 15%;
    width: auto; height: 1px;
  }

  .pricing-footer{
    flex-direction: column;
    text-align: center;
  }

  .pricing-footer-info{
    flex-direction: column;
    text-align: center;
  }
}
