@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --primary-navy: #0A1128; /* Deep rich navy */
  --secondary-navy: #1C2B54;
  --accent-gold: #D4AF37; /* Luxury Gold */
  --accent-gold-hover: #B5952F;
  --text-main: #334155;
  --text-light: #F8FAFC;
  --bg-light: #F8FAFC;
  --white: #FFFFFF;
  --transition: all 0.3s ease;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-navy);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Utilities */
.text-gold { color: var(--accent-gold); }
.bg-navy { background-color: var(--primary-navy); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.text-center { text-align: center; }
.section-padding { padding: 80px 0; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--primary-navy);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

/* --- SECTIONS --- */

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 30px;
  color: #E2E8F0;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(212, 175, 55, 0.3);
  transition: transform 0.5s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* Pain Points Section */
.pain-points {
  background-color: var(--white);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-gold);
}

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

.card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-top: 4px solid var(--accent-gold);
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  font-size: 3rem;
  color: var(--primary-navy);
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Curriculum Section */
.curriculum {
  background-color: var(--bg-light);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 2px; height: 100%;
  background: var(--accent-gold);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  width: 50%;
  padding: 0 40px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 0;
  width: 20px; height: 20px;
  background: var(--primary-navy);
  border: 4px solid var(--accent-gold);
  border-radius: 50%;
  z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot { right: -10px; }
.timeline-item:nth-child(even) .timeline-dot { left: -10px; }

.timeline-content {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
  color: var(--accent-gold);
  margin-bottom: 10px;
}

/* Social Proof */
.social-proof {
  background-color: var(--primary-navy);
  color: var(--white);
}

.proof-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.proof-image {
  flex: 1;
}

.proof-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.proof-content {
  flex: 1;
}

.testimonial {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-gold);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial h5 {
  color: var(--accent-gold);
}

/* Offer Section */
.offer {
  background-color: var(--white);
}

.pricing-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--accent-gold);
  border-radius: 20px;
  padding: 50px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--primary-navy);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: bold;
  letter-spacing: 1px;
}

.price-old {
  text-decoration: line-through;
  color: #94A3B8;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.price-new {
  font-size: 3.5rem;
  color: var(--primary-navy);
  font-weight: 700;
  margin-bottom: 30px;
}

.bonus-list {
  text-align: left;
  margin-bottom: 40px;
  list-style: none;
}

.bonus-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.bonus-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Payment Modal */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000; opacity: 0; pointer-events: none; transition: var(--transition);
}
.modal-overlay.active {
  opacity: 1; pointer-events: auto;
}
.modal-content {
  background: #fff; width: 90%; max-width: 400px;
  border-radius: 15px; padding: 15px 20px; position: relative;
  transform: translateY(20px); transition: var(--transition);
  box-shadow: var(--shadow-lg);
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close {
  position: absolute; top: 15px; right: 15px;
  background: #F1F5F9; border: none; width: 30px; height: 30px;
  border-radius: 50%; cursor: pointer; color: #64748B;
  display: flex; align-items: center; justify-content: center;
}
.modal-header { text-align: center; margin-bottom: 20px; font-weight: 600; color: var(--primary-navy); }
.modal-price-badge { background: #EFF6FF; color: #3B82F6; padding: 5px; border-radius: 30px; text-align: center; margin-bottom: 10px; font-weight: bold; }
.modal-price-old { text-decoration: line-through; color: #94A3B8; font-size: 0.9rem; margin-right: 10px; font-weight: normal; }
.modal-price-new { font-size: 1.2rem; }
.qr-container { text-align: center; margin-bottom: 10px; padding: 5px; border: 1px solid #E2E8F0; border-radius: 15px; }
.qr-container img { width: 100%; max-width: 200px; border-radius: 10px; }
.bank-info { background: #F8FAFC; padding: 10px 15px; border-radius: 10px; font-size: 0.85rem; margin-bottom: 10px; border: 1px solid #E2E8F0; }
.bank-row { display: flex; justify-content: space-between; margin-bottom: 8px; }
.bank-row:last-child { margin-bottom: 0; }
.bank-label { color: #64748B; }
.bank-val { font-weight: 600; color: var(--primary-navy); }
.modal-footer-text { font-size: 0.8rem; color: #64748B; text-align: center; margin-bottom: 10px; }
.btn-paid { background: #0099FF; color: #fff; width: 100%; border: none; padding: 12px; border-radius: 30px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.btn-paid:hover { background: #0088EE; }

/* Footer */
footer {
  background-color: var(--secondary-navy);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .hero .container { flex-direction: column; text-align: center; }
  .hero-title { font-size: 2.2rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item { width: 100%; padding-left: 50px; padding-right: 0; text-align: left !important; left: 0 !important; }
  .timeline-dot { left: 10px !important; }
  .proof-container { flex-direction: column; }
  .pricing-box { padding: 30px 20px; }
}
