/* Bluebird AGI — Pricing grid, cards, final CTA */

.pricing-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:52px;
}

@media(max-width:900px) {
  .pricing-grid {
    grid-template-columns:repeat(2,1fr) !important;
  }
}

@media(max-width:600px) {
  .pricing-grid {
    grid-template-columns:1fr !important;
    max-width:400px;
    margin-inline:auto;
  }
}

.pricing-card {
  background:var(--white);
  border:1.5px solid var(--card-border);
  border-radius:16px;
  padding:28px 24px;
  display:flex;
  flex-direction:column;
  position:relative;
  transition:box-shadow .2s,transform .2s;
}

.pricing-card:hover {
  box-shadow:0 12px 40px rgba(13,42,110,0.12);
  transform:translateY(-2px);
}

.pricing-card.featured {
  background:#2f4760;
  border-color:rgba(46,115,76,0.45);
}

.featured-badge {
  position:absolute;
  top:-1px;
  left:50%;
  transform:translateX(-50%);
  background:#F59E0B;
  color:#021a10;
  font-size:.68rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:4px 16px;
  border-radius:0 0 10px 10px;
}

.pricing-tier {
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#2E734C;
  margin-bottom:4px;
}

.pricing-card.featured .pricing-tier {
  color:#8dffd4;
}

.pricing-name {
  font-size:1.1rem;
  font-weight:800;
  color:var(--navy);
  margin-bottom:4px;
}

.pricing-card.featured .pricing-name {
  color:#fff;
}

.pricing-price {
  font-size:2rem;
  font-weight:900;
  color:var(--navy);
  letter-spacing:-0.03em;
  line-height:1;
  margin-bottom:6px;
}

.pricing-card.featured .pricing-price {
  color:#fff;
}

.pricing-price span {
  font-size:.9rem;
  font-weight:500;
  color:var(--text-muted);
}

.pricing-card.featured .pricing-price span {
  color:rgba(212,236,247,.6);
}

.pricing-desc {
  font-size:.82rem;
  color:var(--text-muted);
  line-height:1.55;
  margin-bottom:18px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(13,42,110,0.08);
}

.pricing-card.featured .pricing-desc {
  color:rgba(212,236,247,.7);
  border-color:rgba(255,255,255,.1);
}

.pricing-features {
  list-style:none;
  flex:1;
  display:flex;
  flex-direction:column;
  gap:9px;
  margin-bottom:20px;
}

.pricing-features li {
  display:flex;
  align-items:flex-start;
  gap:8px;
  font-size:.82rem;
  color:var(--text-muted);
  line-height:1.4;
}

.pricing-card.featured .pricing-features li {
  color:rgba(212,236,247,.8);
}

.pricing-features li::before {
  content:'';
  width:16px;
  height:16px;
  border-radius:50%;
  background:rgba(46,115,76,.12);
  border:1px solid rgba(46,115,76,.3);
  flex-shrink:0;
  margin-top:1px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%232E734C' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
}

.pricing-cta {
  display:block;
  text-align:center;
  padding:11px;
  border-radius:8px;
  font-weight:700;
  font-size:.88rem;
  transition:all .15s;
}

.pricing-cta-primary {
  background:#2E734C;
  color:#ffffff;
}

.pricing-cta-primary:hover {
  background:#245c3d;
  transform:translateY(-1px);
}

.pricing-cta-navy {
  background:var(--navy);
  color:#fff;
}

.pricing-cta-navy:hover {
  background:var(--navy-mid);
  transform:translateY(-1px);
}

.pricing-cta-outline {
  border:1.5px solid var(--card-border);
  color:var(--navy);
}

.pricing-cta-outline:hover {
  border-color:var(--navy);
  background:var(--off);
}

.pricing-cta-outline-light {
  border:1.5px solid rgba(255,255,255,.25);
  color:rgba(255,255,255,.9);
}

.pricing-cta-outline-light:hover {
  border-color:rgba(255,255,255,.6);
}

.final-cta-wrap {
  background:var(--navy);
  padding:clamp(96px,12vw,130px) 0;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.final-cta-wrap::before {
  content:'';
  position:absolute;
  top:-60%;
  left:50%;
  transform:translateX(-50%);
  width:800px;
  height:800px;
  background:radial-gradient(circle,rgba(46,115,76,0.18),transparent 60%);
  pointer-events:none;
}

.final-cta-wrap h2 {
  font-size:clamp(2rem,4vw,3.2rem);
  font-weight:900;
  letter-spacing:-0.025em;
  line-height:1.15;
  margin-bottom:18px;
  color:#fff;
}

.final-cta-wrap p {
  font-size:1.05rem;
  color:var(--on-dark-muted);
  max-width:520px;
  margin:0 auto 36px;
  line-height:1.7;
}

.final-actions {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.final-note {
  margin-top:20px;
  font-size:.78rem;
  color:rgba(212,236,247,.4);
}

.pricing-features-danger li::before {
  background:none;
  border:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='3.5'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
}
