.business-plan-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.metric-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 24px;
  transition: transform 0.2s, border-color 0.2s;
}

.metric-card:hover {
  transform: translateY(-4px);
  border-color: #91e1ff;
}

.metric-label {
  color: #999;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-value {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, #91e1ff, #ff9ee4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-description {
  color: #aaa;
  font-size: 13px;
  margin-top: 8px;
}

.info-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 24px;
  margin: 20px 0;
}

.info-card h3 {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 20px;
}

.info-card p, .info-card ul {
  color: #ccc;
  line-height: 1.8;
}

.info-card ul {
  list-style: none;
  padding-left: 0;
}

.info-card ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.info-card ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #91e1ff;
  font-weight: bold;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.pricing-tier {
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.pricing-tier:hover {
  border-color: #91e1ff;
  transform: translateY(-8px);
}

.pricing-tier.featured {
  border-color: #ff9ee4;
  background: linear-gradient(135deg, rgba(145, 225, 255, 0.05), rgba(255, 158, 228, 0.05));
}

.tier-name {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.tier-price {
  font-size: 40px;
  font-weight: 800;
  color: #91e1ff;
  margin: 16px 0;
}

.tier-price small {
  font-size: 16px;
  color: #999;
  font-weight: 400;
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}

.tier-features li {
  color: #ccc;
  padding: 10px 0;
  border-bottom: 1px solid #333;
}

.tier-features li:last-child {
  border-bottom: none;
}

.timeline {
  position: relative;
  margin: 40px 0;
  padding-left: 40px;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #91e1ff, #ff9ee4);
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
  padding-left: 24px;
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: -46px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #91e1ff;
  border: 3px solid #000;
}

.timeline-item h4 {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-item p {
  color: #aaa;
  font-size: 14px;
}

.financial-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
}

.financial-table th {
  background: #000;
  color: #91e1ff;
  padding: 16px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #333;
}

.financial-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #333;
  color: #ccc;
}

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

.financial-table tr:hover {
  background: rgba(145, 225, 255, 0.05);
}

.financial-table .total-row {
  font-weight: 700;
  background: rgba(145, 225, 255, 0.1);
}

.financial-table .total-row td {
  color: #fff;
  border-top: 2px solid #91e1ff;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(145, 225, 255, 0.1), rgba(255, 158, 228, 0.1));
  border-left: 4px solid #91e1ff;
  padding: 20px;
  margin: 24px 0;
  border-radius: 4px;
}

.highlight-box h4 {
  color: #91e1ff;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 12px;
  font-size: 18px;
}

.highlight-box p {
  color: #ddd;
  margin: 0;
}

.print-button {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: linear-gradient(135deg, #91e1ff, #ff9ee4);
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(145, 225, 255, 0.3);
  transition: all 0.3s;
  z-index: 999;
}

.print-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(145, 225, 255, 0.5);
}

.confidential-notice {
  background: rgba(255, 158, 228, 0.1);
  border: 1px solid #ff9ee4;
  border-radius: 8px;
  padding: 16px;
  margin: 20px 0;
  text-align: center;
}

.confidential-notice strong {
  color: #ff9ee4;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.confidential-notice p {
  color: #ddd;
  font-size: 13px;
  margin: 8px 0 0 0;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #333;
  border-top: 4px solid #91e1ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-text {
  color: #91e1ff;
  margin-top: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
}

.error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  border-radius: 8px;
  padding: 24px;
  margin: 40px auto;
  max-width: 600px;
  text-align: center;
}

.error-message h3 {
  color: #ef4444;
  margin-bottom: 12px;
}

.error-message p {
  color: #ddd;
  margin-bottom: 20px;
}

.error-message a {
  color: #0ea5e9;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid #0ea5e9;
  border-radius: 4px;
  display: inline-block;
}

.error-message a:hover {
  background: #0ea5e9;
  color: #fff;
}

