.pricing-page {
  overflow-x: hidden;
  background: #fafbfc;
}

/* Hero Section */
.pricing-hero {
  background: linear-gradient(160deg, var(--midnight-blue) 0%, #1e1e6e 50%, #2d2d9a 100%);
  color: white;
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.pricing-hero .container {
  position: relative;
  z-index: 1;
}

.pricing-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-year {
  background: var(--misted-yellow);
  color: var(--midnight-blue);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.pricing-hero h1 {
  color: white;
  font-size: 3rem;
  max-width: 900px;
  margin: 0 auto 24px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.pricing-hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* Main Pricing Section */
.pricing-main {
  padding: 80px 0;
  background: #fafbfc;
}

.pricing-main .section-header {
  margin-bottom: 48px;
}

.pricing-main .section-header h2 {
  font-size: 2.2rem;
  color: var(--midnight-blue);
  margin-bottom: 12px;
  font-weight: 700;
}

.pricing-main .section-subtitle {
  color: #64748b;
  font-size: 1.1rem;
}

/* NTE Guarantee Banner - Centered & Premium */
.nte-guarantee-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--midnight-blue) 0%, #1e1e6e 100%);
  color: white;
  padding: 28px 48px;
  border-radius: 16px;
  margin: 0 auto 56px;
  max-width: 800px;
  box-shadow: 0 8px 32px rgba(26, 26, 94, 0.25), 0 0 0 1px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.nte-guarantee-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.05) 50%, transparent 100%);
  pointer-events: none;
}

.nte-icon {
  font-size: 3rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.nte-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-align: left;
}

.nte-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--misted-yellow);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nte-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  font-weight: 500;
}

/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.pricing-card-header {
  background: linear-gradient(135deg, var(--midnight-blue) 0%, #2a2a8a 100%);
  color: white;
  padding: 28px 24px;
  text-align: center;
  position: relative;
}

.pricing-card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--misted-yellow);
  border-radius: 3px 3px 0 0;
}

.pricing-card-header h3 {
  color: white;
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.sub-client {
  font-size: 0.9rem;
  color: var(--misted-yellow);
  font-style: italic;
  opacity: 0.9;
}

.pricing-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phase-block {
  padding: 22px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s ease;
}

.phase-block:hover {
  border-color: var(--emerald-green);
}

.phase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 12px;
}

.phase-name {
  font-weight: 600;
  color: var(--midnight-blue);
  font-size: 0.95rem;
  flex: 1;
  line-height: 1.3;
}

.phase-type {
  font-size: 0.7rem;
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phase-type.fee-fixed {
  background: linear-gradient(135deg, var(--emerald-green) 0%, #059669 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.phase-type.fee-hourly {
  background: linear-gradient(135deg, var(--misted-yellow) 0%, #fbbf24 100%);
  color: var(--midnight-blue);
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.phase-description {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 16px;
}

.phase-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--midnight-blue);
  letter-spacing: -0.5px;
}

.price-unit {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 500;
}

.pricing-card-footer {
  padding: 20px 28px 28px;
}

.pricing-card-footer .btn {
  width: 100%;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.pricing-card-footer .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 26, 94, 0.3);
}

/* Deliverables Note */
.deliverables-note {
  margin-top: 56px;
  padding: 28px 40px;
  background: white;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.deliverables-note p {
  margin: 0;
  font-size: 1rem;
  color: var(--midnight-blue);
  line-height: 1.6;
}

.deliverables-note p:first-child {
  font-weight: 600;
  color: var(--emerald-green);
  display: flex;
  align-items: center;
  gap: 8px;
}

.deliverables-note p:last-child {
  font-size: 0.9rem;
  color: #64748b;
  font-style: italic;
  padding-left: 32px;
  border-left: 1px solid #e2e8f0;
}

/* Add-Ons Section */
.addons-section {
  padding: 80px 0;
  background: white;
}

.addons-section .section-header {
  margin-bottom: 48px;
}

.addons-section .section-header h2 {
  font-size: 2rem;
  color: var(--midnight-blue);
  margin-bottom: 12px;
  font-weight: 700;
}

.addons-table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.addons-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  overflow: hidden;
}

.addons-table th,
.addons-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid #f1f5f9;
}

.addons-table th {
  background: linear-gradient(135deg, var(--midnight-blue) 0%, #2a2a8a 100%);
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.addons-table tbody tr {
  transition: background-color 0.2s ease;
}

.addons-table tbody tr:hover {
  background: #f8fafc;
}

.service-name {
  font-weight: 600;
  color: var(--midnight-blue);
  font-size: 0.95rem;
}

.service-description {
  color: #64748b;
  font-size: 0.9rem;
  max-width: 420px;
  line-height: 1.5;
}

.service-price {
  font-weight: 700;
  color: var(--emerald-green);
  white-space: nowrap;
  font-size: 0.95rem;
}

/* Billing Cards Section */
.billing-section {
  padding: 80px 0;
  background: #fafbfc;
}

.billing-section .section-header {
  margin-bottom: 48px;
}

.billing-section .section-header h2 {
  font-size: 2rem;
  color: var(--midnight-blue);
  margin-bottom: 12px;
  font-weight: 700;
}

.billing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.billing-card {
  background: white;
  padding: 36px 32px;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.billing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.billing-card.highlight {
  background: linear-gradient(135deg, var(--midnight-blue) 0%, #1e1e6e 100%);
  color: white;
  border: 2px solid var(--misted-yellow);
  box-shadow: 0 8px 32px rgba(26, 26, 94, 0.25);
}

.billing-card.highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 26, 94, 0.35);
}

.billing-card.highlight h3 {
  color: var(--misted-yellow);
}

.billing-card.highlight ul {
  color: rgba(255, 255, 255, 0.9);
}

.billing-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}

.billing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--midnight-blue);
  font-weight: 600;
}

.billing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.billing-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

.billing-card.highlight li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.billing-card li:last-child {
  border-bottom: none;
}

.billing-card li strong {
  color: var(--midnight-blue);
}

.billing-card.highlight li strong {
  color: var(--misted-yellow);
}

/* Pricing CTA */
.pricing-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--midnight-blue) 0%, #1e1e6e 100%);
  position: relative;
  overflow: hidden;
}

.pricing-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.pricing-cta .container {
  position: relative;
  z-index: 1;
}

.pricing-cta h2 {
  color: white;
  margin-bottom: 16px;
  font-size: 2.2rem;
  font-weight: 700;
}

.pricing-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  font-size: 1.15rem;
}

.pricing-cta .btn {
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-cards,
  .billing-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .pricing-hero h1 {
    font-size: 2.4rem;
  }
  
  .nte-guarantee-banner {
    max-width: 100%;
    padding: 24px 28px;
  }
}

@media (max-width: 768px) {
  .pricing-hero {
    padding: 80px 0 60px;
  }

  .pricing-hero h1 {
    font-size: 1.9rem;
  }

  .pricing-hero-subtitle {
    font-size: 1rem;
  }
  
  .nte-guarantee-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 16px;
  }
  
  .nte-content {
    align-items: center;
    text-align: center;
  }
  
  .nte-icon {
    font-size: 2.5rem;
  }
  
  .nte-label {
    font-size: 0.8rem;
  }
  
  .nte-text {
    font-size: 1rem;
  }

  .addons-table th,
  .addons-table td {
    padding: 14px 16px;
  }

  .service-description {
    max-width: 200px;
  }

  .phase-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .deliverables-note {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
  
  .deliverables-note p:last-child {
    padding-left: 0;
    border-left: none;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
  }
  
  .pricing-main,
  .addons-section,
  .billing-section {
    padding: 60px 0;
  }
  
  .pricing-cta {
    padding: 70px 0;
  }
  
  .pricing-cta h2 {
    font-size: 1.8rem;
  }
}
