/* Extracted from landing/index inline CSS */

/* Hero Section */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 0 80px; background: radial-gradient(ellipse at center, rgba(239, 233, 220, 0.03) 0%, transparent 50%); }
.hero-content h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; margin-bottom: 1.5rem; line-height: 1.1; background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-content p { font-size: clamp(1.1rem, 2.5vw, 1.3rem); margin-bottom: 3rem; opacity: 0.9; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary, .btn-secondary { padding: 1rem 2rem; border-radius: 12px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; display: inline-block; font-size: 1.1rem; border: none; cursor: pointer; }
.btn-primary { background: var(--accent); color: var(--bg-primary); box-shadow: 0 8px 32px rgba(239, 233, 220, 0.3); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(239, 233, 220, 0.4); }
.btn-secondary { background: transparent; color: var(--text-primary); border: 2px solid var(--accent); }
.btn-secondary:hover { background: var(--accent); color: var(--bg-primary); transform: translateY(-3px); }

/* Section Styles */
section { padding: 80px 0; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; text-align: center; margin-bottom: 1rem; color: var(--text-primary); }
.section-subtitle { text-align: center; font-size: 1.2rem; opacity: 0.8; margin-bottom: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; }

/* How It Works Section */
.how-it-works { background: linear-gradient(180deg, transparent 0%, rgba(239, 233, 220, 0.02) 100%); }
.revenue-explanation { background: var(--card-bg); padding: 2.5rem; border-radius: 16px; margin: 3rem 0; border: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); }
.revenue-explanation p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.5rem; }
.highlight { color: var(--accent); font-weight: 600; }
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.tier-card { background: var(--card-bg); padding: 2rem; border-radius: 12px; border: 1px solid var(--border); text-align: center; transition: all 0.3s ease; }
.tier-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.tier-icon { font-size: 2rem; margin-bottom: 1rem; }
.tier-title { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--accent); }

/* Services Section */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.service-card { background: var(--card-bg); padding: 2rem; border-radius: 12px; border: 1px solid var(--border); transition: all 0.3s ease; }
.service-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.service-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 1rem; color: var(--text-primary); }

/* Why Choose Section */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.benefit-card { background: var(--card-bg); padding: 2rem; border-radius: 12px; border: 1px solid var(--border); text-align: center; }
.benefit-title { font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem; color: var(--accent); }

/* Results Section */
.results { background: linear-gradient(180deg, rgba(239, 233, 220, 0.02) 0%, transparent 100%); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.stat-card { background: var(--card-bg); padding: 2rem; border-radius: 12px; border: 1px solid var(--border); text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--accent); margin-bottom: 0.5rem; }
.stat-description { font-size: 1rem; opacity: 0.9; }
.testimonial { background: var(--card-bg); padding: 2rem; border-radius: 12px; border: 1px solid var(--border); margin-top: 2rem; text-align: center; }
.testimonial-quote { font-size: 1.2rem; font-style: italic; margin-bottom: 1rem; color: var(--accent); }
.testimonial-author { font-weight: 600; }

/* Book Call Section */
.book-call-section { background: linear-gradient(180deg, rgba(239, 233, 220, 0.02) 0%, transparent 100%); text-align: center; }

/* CTA Section */
.final-cta { background: radial-gradient(ellipse at center, rgba(239, 233, 220, 0.05) 0%, transparent 70%); text-align: center; }
.urgency-text { background: var(--card-bg); display: inline-block; padding: 0.5rem 1.5rem; border-radius: 50px; border: 1px solid var(--accent); margin-bottom: 2rem; font-size: 0.9rem; color: var(--accent); }

/* Footer */
footer { background: var(--card-bg); padding: 3rem 0 2rem; border-top: 1px solid var(--border); }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-section h3 { color: var(--accent); margin-bottom: 1rem; }
.footer-section a { color: var(--text-primary); text-decoration: none; display: block; margin-bottom: 0.5rem; transition: color 0.3s ease; }
.footer-section a:hover { color: var(--accent); }
.social-links { display: flex; gap: 1rem; }
.social-links a { display: inline-block; width: 40px; height: 40px; background: var(--accent); color: var(--bg-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.social-links a:hover { background: var(--accent-hover); transform: translateY(-2px); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--border); opacity: 0.7; }

/* Mobile Responsive */
@media (max-width: 768px) {
  nav { padding: 1rem; }
  .hero { padding: 100px 0 60px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 300px; }
  section { padding: 60px 0; }
  .revenue-explanation { padding: 1.5rem; }
  .tiers { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Loading animation */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { animation: fadeInUp 0.6s ease-out; }

/* Hero bullets and trust row */
.hero-bullets { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; opacity: 0.9; list-style: none; padding: 0; }
.hero-bullets li { background: rgba(var(--accent-rgb), 0.08); border: 1px solid var(--border); padding: 0.35rem 0.75rem; border-radius: 999px; }
.hero-trust { display: flex; gap: 1rem; justify-content: center; margin-top: 0.5rem; opacity: 0.85; }
.hero-trust > div { background: rgba(var(--accent-rgb), 0.08); border: 1px solid var(--border); padding: 0.3rem 0.75rem; border-radius: 8px; }

