/* ==========================================
   TIER PAGE STYLES
   Matches approved Select page design exactly
   ========================================== */

/* Page Header */
.tier-header {
  padding: calc(var(--header-height) + 40px) 0 40px;
  text-align: center;
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--tier-dim);
  border: 2px solid var(--tier-color);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--tier-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.tier-badge svg {
  width: 20px;
  height: 20px;
}

.tier-header h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.tier-header .subtitle {
  font-size: 1.125rem;
  color: var(--white-70);
}

/* Container */
.tier-container {
  max-width: 900px;
}

/* ==========================================
   MONTHLY PROMOS SECTION
   ========================================== */
.promos-section {
  background: linear-gradient(135deg, var(--tier-dim), rgba(107, 201, 205, 0.08));
  border: 2px solid var(--tier-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 48px;
}

.promos-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--white-10);
}

.promos-header svg {
  width: 28px;
  height: 28px;
  color: var(--tier-color);
}

.promos-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.month-badge {
  margin-left: auto;
  padding: 6px 14px;
  background: var(--tier-color);
  color: var(--navy);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Promo List */
.promo-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promo-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white-05);
  border-radius: var(--radius-md);
}

.promo-icon {
  width: 48px;
  height: 48px;
  background: var(--tier-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.promo-icon svg {
  width: 24px;
  height: 24px;
  color: var(--navy);
}

.promo-content {
  flex: 1;
}

.promo-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.promo-content p {
  font-size: 0.95rem;
  color: var(--white-70);
  margin: 0;
}

.promo-discount {
  margin-left: auto;
  padding: 8px 16px;
  background: var(--navy);
  border: 1px solid var(--tier-color);
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--tier-color);
  white-space: nowrap;
}

/* ==========================================
   BENEFITS TABLE
   ========================================== */
.benefits-section {
  margin-bottom: 48px;
}

.benefits-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.benefits-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white-05);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.benefits-table th,
.benefits-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--white-10);
}

.benefits-table th {
  background: var(--tier-dim);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--tier-color);
}

.benefits-table tr:last-child td {
  border-bottom: none;
}

.benefits-table td:first-child {
  font-weight: 600;
}

.benefits-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--tier-color);
}

.benefit-highlight {
  background: var(--tier-dim);
}

.benefit-highlight td {
  border-color: rgba(255,255,255,0.05);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.tier-cta {
  text-align: center;
  padding: 40px 0 80px;
}

.tier-cta .btn {
  padding: 18px 36px;
}

.tier-cta .btn svg {
  width: 20px;
  height: 20px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 600px) {
  .promos-header {
    flex-wrap: wrap;
  }
  
  .month-badge {
    margin-left: 0;
    margin-top: 12px;
  }
  
  .promo-item {
    flex-direction: column;
  }
  
  .promo-discount {
    margin-left: 0;
    margin-top: 12px;
  }
  
  .benefits-table th,
  .benefits-table td {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}
