
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  background: #f8fafc;
  line-height: 1.6;
  color: #334155;
}

header {
  text-align: center;
  margin: 40px 0;
  padding: 40px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

header h1 {
  margin: 0 0 10px 0;
  font-size: 2.5em;
  font-weight: 700;
}

header p {
  margin: 0;
  font-size: 1.1em;
  opacity: 0.9;
}

main {
  margin: 40px 0;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.hero h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #1e293b;
}

.features {
  margin: 40px 0;
}

.features h3 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
  color: #1e293b;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-card h4 {
  color: #667eea;
  margin-bottom: 15px;
  font-size: 1.3em;
}

.pricing-preview {
  text-align: center;
  padding: 50px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 40px 0;
}

.pricing-preview h3 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #1e293b;
}

.getting-started {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border-radius: 12px;
  margin: 40px 0;
}

.getting-started h3 {
  font-size: 2em;
  margin-bottom: 20px;
}

.checkout-section {
  margin-top: 30px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: #667eea;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
  margin: 10px;
}

.cta-button:hover {
  background: #5a67d8;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.cta-button.primary {
  background: #48bb78;
  font-size: 1.1em;
  padding: 18px 35px;
}

.cta-button.primary:hover {
  background: #38a169;
}

/* Pricing Page Styles */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  transition: transform 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  border: 3px solid #667eea;
  transform: scale(1.05);
}

.popular-badge {
  background: #667eea;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 600;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-card h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #1e293b;
}

.price {
  margin-bottom: 30px;
}

.price .amount {
  font-size: 3em;
  font-weight: 700;
  color: #667eea;
}

.price .period {
  font-size: 1.1em;
  color: #64748b;
}

.features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.features li {
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}

.features li:last-child {
  border-bottom: none;
}

.plan-button {
  display: block;
  width: 100%;
  padding: 15px;
  background: #667eea;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 20px;
  transition: background 0.2s ease;
}

.plan-button:hover {
  background: #5a67d8;
}

.pricing-faq {
  margin: 60px 0;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-faq h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
  color: #1e293b;
}

.faq-item {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  color: #667eea;
  margin-bottom: 10px;
}

/* Checkout Page Styles */
.checkout-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.order-summary, .checkout-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.order-summary h3, .checkout-form h3 {
  color: #1e293b;
  margin-bottom: 30px;
  font-size: 1.5em;
}

.checkout-placeholder {
  text-align: center;
  padding: 40px;
  border: 2px dashed #cbd5e0;
  border-radius: 12px;
  background: #f8fafc;
}

.paddle-checkout-btn {
  background: #667eea;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.paddle-checkout-btn:hover {
  background: #5a67d8;
}

.trust-indicators {
  margin: 60px 0;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.trust-item {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Legal Content Styles */
.legal-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 40px 0;
}

.legal-content section {
  margin-bottom: 40px;
}

.legal-content h2 {
  color: #667eea;
  margin-bottom: 20px;
  font-size: 1.5em;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 10px;
}

.legal-content ul {
  margin: 15px 0;
  padding-left: 30px;
}

.legal-content li {
  margin-bottom: 8px;
}

footer {
  text-align: center;
  margin: 60px 0 20px 0;
  padding: 30px 0;
  border-top: 1px solid #e2e8f0;
}

footer a {
  margin: 0 15px;
  text-decoration: none;
  color: #667eea;
  font-weight: 500;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #5a67d8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .checkout-container {
    grid-template-columns: 1fr;
  }
  
  .feature-grid, .pricing-container {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  header h1 {
    font-size: 2em;
  }
  
  .hero h2 {
    font-size: 1.8em;
  }
}
