/* ============================================
   Engage Page — Tier Cards
   ============================================ */

.engage-section {
  padding: 100px 0;
}

.engage-section .product-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* --- Tier Card --- */
.engage-tier {
  position: relative;
  background: var(--white, #fbfbfd);
  border: 1px solid var(--gray-100, #e8e8ed);
  border-radius: 20px;
  padding: 48px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.engage-tier:hover {
  transform: translateY(-2px);
  border-color: var(--gray-200, #d2d2d7);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Featured badge */
.engage-tier--featured {
  border-color: var(--accent-orange, #f7931e);
  border-width: 2px;
}

.engage-tier__badge {
  position: absolute;
  top: -14px;
  left: 48px;
  display: inline-block;
  font-family: var(--font-heading, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--accent-orange, #f7931e);
  padding: 6px 20px;
  border-radius: 100px;
}

/* --- Header --- */
.engage-tier__header {
  margin-bottom: 24px;
}

.engage-tier__price {
  font-family: var(--font-heading, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: var(--accent-orange, #f7931e);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.engage-tier__price span {
  font-size: 0.45em;
  font-weight: 500;
  color: var(--gray-400, #86868b);
  letter-spacing: 0;
}

.engage-tier__name {
  font-family: var(--font-heading, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--black, #1d1d1f);
  margin-bottom: 8px;
}

.engage-tier__tagline {
  font-size: 17px;
  font-weight: 500;
  color: var(--gray-600, #6e6e73);
  margin-bottom: 4px;
}

.engage-tier__timeline {
  font-size: 14px;
  color: var(--gray-400, #86868b);
  letter-spacing: 0.02em;
}

/* --- Description --- */
.engage-tier__desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-600, #6e6e73);
  max-width: 720px;
  margin-bottom: 32px;
}

/* --- Includes --- */
.engage-tier__includes {
  margin-bottom: 32px;
}

.engage-tier__includes-title {
  font-family: var(--font-heading, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--black, #1d1d1f);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.engage-tier__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}

.engage-tier__list li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray-600, #6e6e73);
  padding-left: 24px;
  position: relative;
}

.engage-tier__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent-orange, #f7931e);
  font-weight: 700;
  font-size: 14px;
}

/* --- Best For --- */
.engage-tier__best-for {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-600, #6e6e73);
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100, #e8e8ed);
}

.engage-tier__best-for strong {
  color: var(--black, #1d1d1f);
}

/* --- CTA Button --- */
.engage-tier__cta {
  display: inline-block;
  font-family: var(--font-heading, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 100px;
  background: var(--accent-orange, #f7931e);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(247, 147, 30, 0.25);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.engage-tier__cta:hover {
  background: var(--accent-orange-hover, #e5830f);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(247, 147, 30, 0.35);
}

/* --- Step number override for price badges --- */
.product-step__num {
  font-size: 12px;
  width: 48px;
  height: 48px;
}

/* ============================================
   Mobile
   ============================================ */
@media (max-width: 768px) {
  .engage-tier {
    padding: 32px 24px;
  }

  .engage-tier__badge {
    left: 24px;
  }

  .engage-tier__list {
    grid-template-columns: 1fr;
  }

  .engage-tier__price {
    font-size: clamp(36px, 8vw, 48px);
  }
}
