/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1a56db;
  --primary-dark: #1341b0;
  --accent: #f59e0b;
  --dark: #111827;
  --gray: #6b7280;
  --light: #f9fafb;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== UTILITY ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-title { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 12px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray); text-align: center; margin-bottom: 48px; }
.badge { display: inline-block; background: #eff6ff; color: var(--primary); font-size: 0.8rem; font-weight: 600; padding: 4px 14px; border-radius: 999px; margin-bottom: 16px; letter-spacing: 0.04em; text-transform: uppercase; }

.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: var(--dark); }
.btn-accent:hover { background: #d97706; }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; padding: 0 24px; max-width: 1100px; margin: 0 auto;
}
.nav-logo { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--dark); transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { padding: 10px 24px; font-size: 0.95rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #1a56db 100%);
  display: flex; align-items: center;
  padding: 100px 24px 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; max-width: 1100px; margin: 0 auto; position: relative; z-index: 1;
}
.hero-badge { display: inline-block; background: rgba(245,158,11,0.2); color: #fbbf24; font-size: 0.82rem; font-weight: 600; padding: 5px 16px; border-radius: 999px; margin-bottom: 20px; border: 1px solid rgba(245,158,11,0.3); }
.hero h1 { font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 20px; }
.hero h1 span { color: #fbbf24; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.82); margin-bottom: 36px; line-height: 1.8; }
.hero-earnings { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); padding: 16px 24px; margin-bottom: 32px; backdrop-filter: blur(8px); }
.hero-earnings p { margin: 0; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.hero-earnings strong { color: #fbbf24; font-size: 1.4rem; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 40px 32px;
  backdrop-filter: blur(12px);
}
.hero-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 24px; }
.checklist { list-style: none; }
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,0.85); font-size: 0.95rem;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: '✓'; color: #34d399; font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ===== STATS ===== */
.stats { background: var(--primary); padding: 56px 24px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.stat-item { text-align: center; }
.stat-item .number { font-size: 2.8rem; font-weight: 800; color: var(--white); }
.stat-item .label { font-size: 0.95rem; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ===== ABOUT ===== */
.about { padding: 100px 24px; background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1100px; margin: 0 auto; }
.about-text .section-title { text-align: left; }
.about-text .section-subtitle { text-align: left; }
.about-points { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.about-point { display: flex; align-items: flex-start; gap: 16px; }
.about-point-icon { width: 44px; height: 44px; background: #eff6ff; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.about-point-text h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.about-point-text p { font-size: 0.9rem; color: var(--gray); }
.about-image { background: linear-gradient(135deg, #eff6ff, #dbeafe); border-radius: 20px; padding: 48px 40px; text-align: center; }
.about-image .big-icon { font-size: 5rem; margin-bottom: 20px; }
.about-image h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.about-image p { color: var(--gray); }

/* ===== FEATURES ===== */
.features { padding: 100px 24px; background: var(--light); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
.feature-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.feature-icon { font-size: 2rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 0.92rem; color: var(--gray); line-height: 1.7; }

/* ===== ROLES ===== */
.roles { padding: 100px 24px; background: var(--white); }
.roles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1100px; margin: 0 auto; }
.role-card {
  border: 2px solid #e5e7eb; border-radius: 20px; padding: 40px 36px;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.role-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.role-card.featured { border-color: var(--primary); }
.role-tag {
  display: inline-block; background: var(--primary); color: var(--white);
  font-size: 0.75rem; font-weight: 700; padding: 4px 14px; border-radius: 999px;
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.05em;
}
.role-tag.tag-accent { background: var(--accent); color: var(--dark); }
.role-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.role-earnings { font-size: 1.6rem; font-weight: 800; color: var(--primary); margin: 16px 0; }
.role-earnings span { font-size: 0.9rem; font-weight: 400; color: var(--gray); }
.role-features { list-style: none; margin: 20px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.role-features li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--gray); }
.role-features li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.role-notice { font-size: 0.82rem; color: var(--gray); margin-top: 16px; font-style: italic; }

/* ===== APPLY FORM ===== */
.apply { padding: 100px 24px; background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%); }
.apply-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.apply .section-title { color: var(--white); }
.apply .section-subtitle { color: rgba(255,255,255,0.72); }
.apply-form { background: var(--white); border-radius: 20px; padding: 48px 40px; margin-top: 40px; text-align: left; box-shadow: 0 24px 64px rgba(0,0,0,0.3); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid #e5e7eb; border-radius: 8px;
  font-size: 0.95rem; color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; font-family: inherit; background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,86,219,0.1); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 16px; font-size: 1.05rem; font-weight: 700; border-radius: 8px; }
.form-disclaimer { font-size: 0.78rem; color: var(--gray); text-align: center; margin-top: 14px; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 24px; background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow); }
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: #374151; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #60a5fa); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 0.95rem; }
.author-role { font-size: 0.82rem; color: var(--gray); }

/* ===== CONTACT ===== */
.contact { padding: 100px 24px; background: var(--white); }
.contact-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.contact-info { display: flex; justify-content: center; gap: 48px; margin-top: 40px; flex-wrap: wrap; }
.contact-item { display: flex; align-items: center; gap: 12px; }
.contact-item-icon { font-size: 1.3rem; }
.contact-item p { font-size: 0.92rem; color: var(--gray); }
.contact-item strong { color: var(--dark); }

/* ===== FOOTER ===== */
footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 48px 24px 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { margin-top: 12px; font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer-logo { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.95rem; font-weight: 600; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.84rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--white); }

/* ===== SUCCESS MESSAGE ===== */
.success-msg { display: none; background: #d1fae5; border: 1px solid #6ee7b7; border-radius: 10px; padding: 20px 24px; text-align: center; color: #065f46; font-weight: 600; margin-top: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .section-title { font-size: 1.6rem; }
  .hero h1 { font-size: 1.9rem; }
  .features-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .apply-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-cta { display: none; }
}
