/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; overflow-x: hidden; }

/* Header */
header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 1rem 0; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.1); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); transition: all 0.3s ease; }
header.scrolled { background: rgba(102, 126, 234, 0.95); padding: 0.5rem 0; }
nav { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 2rem; }
.logo { font-size: 2rem; font-weight: bold; background: linear-gradient(45deg, #fff, #f0f0f0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-decoration: none; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { color: white; text-decoration: none; font-weight: 500; transition: all 0.3s ease; padding: 0.5rem 1rem; border-radius: 25px; }
.nav-links a:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.mobile-menu { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 120px 0 80px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 200%; background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent); transform: rotate(15deg); animation: float 20s infinite linear; }
@keyframes float { 0% { transform: translateY(0px) rotate(15deg); } 50% { transform: translateY(-20px) rotate(15deg); } 100% { transform: translateY(0px) rotate(15deg); } }
.hero-content { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }
.hero h1 { font-size: 3rem; margin-bottom: 1rem; font-weight: 700; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; opacity: 0.95; }
.cta-button { background: linear-gradient(135deg, #ff6b6b, #ee5a24); color: white; padding: 18px 40px; border: none; border-radius: 50px; font-size: 1.2rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; cursor: pointer; box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3); }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(238, 90, 36, 0.4); }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 1rem; color: #2c3e50; font-weight: 700; }
.section-subtitle { text-align: center; font-size: 1.2rem; color: #666; margin-bottom: 3rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Benefits */
.benefits { padding: 100px 0; background: #f8f9fa; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.benefit-card { background: white; padding: 3rem 2rem; border-radius: 20px; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.1); transition: all 0.3s ease; border-top: 5px solid #667eea; }
.benefit-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.benefit-icon { font-size: 3rem; color: #667eea; margin-bottom: 1.5rem; display: inline-block; padding: 1rem; background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1)); border-radius: 50%; }
.benefit-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #2c3e50; }
.benefit-card p { color: #666; line-height: 1.6; }

/* How it works */
.how-it-works { padding: 100px 0; background: white; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-top: 3rem; }
.step { text-align: center; position: relative; }
.step-number { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, #667eea, #764ba2); color: white; font-size: 2rem; font-weight: bold; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3); }
.step h3 { font-size: 1.4rem; margin-bottom: 1rem; color: #2c3e50; }
.step p { color: #666; line-height: 1.6; }

/* Requirements */
.requirements { padding: 100px 0; background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); }
.requirements-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.requirement-item { background: white; padding: 2rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: flex; align-items: flex-start; gap: 1.5rem; }
.requirement-icon { font-size: 2rem; color: #667eea; background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1)); padding: 1rem; border-radius: 50%; flex-shrink: 0; }
.requirement-content h4 { font-size: 1.2rem; margin-bottom: 0.5rem; color: #2c3e50; }
.requirement-content p { color: #666; line-height: 1.6; }

/* Registration */
.registration { padding: 100px 0; background: white; }
.form-container { max-width: 800px; margin: 0 auto; background: #f8f9fa; padding: 3rem; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.form-group { margin-bottom: 2rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #2c3e50; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 15px; border: 2px solid #e1e8ed; border-radius: 10px; font-size: 1rem; transition: all 0.3s ease; background: white; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #667eea; box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group.full-width { grid-column: 1 / -1; }
.checkbox-group { display: flex; align-items: flex-start; gap: 1rem; margin-top: 2rem; }
.checkbox-group input[type="checkbox"] { width: auto; margin: 0; transform: scale(1.2); }
.checkbox-group label { margin: 0; font-weight: normal; color: #666; line-height: 1.6; }
.terms-link { color: #667eea; }
.submit-btn { background: linear-gradient(135deg, #667eea, #764ba2); color: white; padding: 18px 40px; border: none; border-radius: 50px; font-size: 1.2rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; width: 100%; margin-top: 2rem; }
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3); }

/* Success Stories */
.success-stories { padding: 100px 0; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; }
.success-stories .section-title, .success-stories .section-subtitle { color: white; }
.stories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.story-card { background: rgba(255,255,255,0.1); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); padding: 2rem; border-radius: 20px; text-align: center; }
.story-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, #ff6b6b, #ee5a24); display: flex; align-items: center; justify-content: center; color: white; font-size: 2rem; font-weight: bold; margin: 0 auto 1.5rem; }
.story-card h4 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.story-card p.profession { font-size: 1rem; opacity: 0.8; margin-bottom: 1.5rem; }
.story-card p.quote { font-style: italic; line-height: 1.6; opacity: 0.9; }
.earning { background: rgba(255,255,255,0.2); padding: 1rem; border-radius: 10px; margin-top: 1rem; }
.earning strong { color: #f39c12; font-size: 1.2rem; }

/* FAQ */
.faq { padding: 100px 0; background: #f8f9fa; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: white; margin-bottom: 1rem; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); overflow: hidden; }
.faq-question { background: none; border: none; width: 100%; padding: 1.5rem 2rem; text-align: left; font-size: 1.1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: #2c3e50; transition: all 0.3s ease; }
.faq-question:hover { background: rgba(102, 126, 234, 0.05); }
.faq-answer { padding: 0 2rem 1.5rem; color: #666; line-height: 1.6; display: none; }
.faq-item.active .faq-answer { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.faq-icon { transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(180deg); }

/* Contact CTA */
.contact-cta { padding: 80px 0; background: linear-gradient(135deg, #2c3e50, #3498db); color: white; text-align: center; }
.contact-cta h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-cta p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; }
.contact-info { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-top: 2rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-item i { font-size: 1.5rem; color: #3498db; }

/* Footer */
footer { background: #2c3e50; color: white; padding: 50px 0 30px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-section h3 { margin-bottom: 1rem; color: #3498db; }
.footer-section p, .footer-section a { color: #bdc3c7; text-decoration: none; line-height: 1.8; transition: all 0.3s ease; }
.footer-section a:hover { color: #3498db; }
.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.social-links a { background: #3498db; color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.social-links a:hover { transform: translateY(-3px); background: #2980b9; }
.footer-bottom { border-top: 1px solid #34495e; padding-top: 2rem; text-align: center; color: #7f8c8d; }

/* Animations */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 768px) {
  .mobile-menu { display: block; }
  .nav-links { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1.1rem; }
  .benefits-grid, .requirements-grid, .stories-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 2rem; }
  .steps { grid-template-columns: 1fr; }
  .contact-info { flex-direction: column; gap: 1.5rem; }
  .form-container { padding: 2rem; margin: 0 1rem; }
}
