* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #ffffff;
  color: #0f172a;
  line-height: 1.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 70px 0;
}

.hero {
  background: linear-gradient(135deg, #0b1120 0%, #1a2332 100%);
  color: white;
  text-align: center;
  padding: 90px 0 70px;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-badge {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 60px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  display: inline-block;
  letter-spacing: 0.3px;
}

.hero-title {
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 1.2;
  max-width: 900px;
}

.hero-highlight {
  color: #fbbf24;
  background: linear-gradient(145deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #cbd5e1;
  max-width: 700px;
}

.btn-primary {
  display: inline-block;
  background: #fbbf24;
  color: #0f172a;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 18px 56px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 15px 25px -8px rgba(251, 191, 36, 0.4);
  transition: 0.2s;
  border: 2px solid #d97706;
  letter-spacing: 0.5px;
  margin: 16px 0 20px;
}

.btn-primary:hover {
  background: #f59e0b;
  transform: scale(1.02);
  box-shadow: 0 20px 30px -5px #fbbf24;
}

.btn-group {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 8px 0;
}

.btn-secondary {
  display: inline-block;
  background: #334155;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.2s;
  border: 1px solid #475569;
}

.btn-secondary:hover {
  background: #1e293b;
}

.hero-stats {
  font-size: 1rem;
  color: #94a3b8;
  margin-top: 12px;
}

.intro-text {
  padding: 40px 0 20px;
  background: #f8fafc;
}

.intro-paragraph {
  font-size: 1.3rem;
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
  color: #1e293b;
  font-weight: 400;
  border-left: 5px solid #fbbf24;
  padding-left: 28px;
  background: white;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.feature-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.reverse {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
}

.feature-image {
  flex: 1;
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 25px 40px -12px rgba(0,0,0,0.25);
  display: block;
  border: 1px solid #e9eef2;
}

.feature-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #0f172a;
}

.feature-desc {
  font-size: 1.1rem;
  color: #334155;
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  margin-bottom: 15px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f1f5f9;
  padding: 14px 22px;
  border-radius: 60px;
}

.step-number {
  background: #fbbf24;
  color: #0f172a;
  font-weight: 800;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
}

.step-text {
  font-size: 1.05rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  color: #0f172a;
}

.activities {
  background: #f8fafc;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.activity-card {
  background: white;
  padding: 32px 24px;
  border-radius: 24px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.02);
  transition: 0.15s;
  border: 1px solid #eef2f6;
}

.activity-card:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.04);
}

.activity-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
}

.activity-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.activity-card p {
  color: #475569;
}

.alt-bg {
  background: #f1f5f9;
}

.alt-bg-2 {
  background: #ffffff;
}

.usp-compact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.usp-bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1.05rem;
  background: white;
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.usp-icon {
  background: #fbbf24;
  color: #0f172a;
  font-weight: 800;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.testimonials-grid {
  background: #1e293b;
  color: white;
}

.testimonials-grid .section-title {
  color: white;
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #2d3a4f;
  padding: 32px 24px;
  border-radius: 24px;
  border-left: 6px solid #fbbf24;
}

.testimonial-card p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-style: italic;
  color: #e2e8f0;
}

.testimonial-author {
  font-weight: 600;
  color: #fbbf24;
}

.blog-mini {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.blog-mini-item h4 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: #0f172a;
}

.blog-mini-item p {
  color: #475569;
  margin-bottom: 8px;
}

.fake-link {
  color: #fbbf24;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.fake-link:hover {
  text-decoration: underline;
}

.faq-modern {
  background: #f1f5f9;
}

.faq-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-modern-item {
  background: white;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 10px 20px -8px rgba(0,0,0,0.05);
}

.faq-modern-item h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: #0f172a;
}

.faq-modern-item p {
  color: #475569;
}

.final-cta-modern {
  background: linear-gradient(145deg, #020617, #0f172a);
  color: white;
  text-align: center;
}

.final-cta-modern h2 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.final-cta-modern p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: #cbd5e1;
}

.final-cta-modern .btn-primary {
  background: #fbbf24;
  color: #020617;
}

.final-cta-modern .btn-secondary {
  background: #334155;
  border-color: #4b5565;
}

footer {
  background: #0b1017;
  color: #94a3b8;
  padding: 32px 0;
  text-align: center;
}

.footer-inner a {
  color: #fbbf24;
  text-decoration: none;
}

.footer-disclaimer {
  font-size: 0.85rem;
  margin-top: 12px;
  opacity: 0.7;
}

@media (max-width: 1000px) {
  .feature-container {
    flex-direction: column;
  }
  .reverse {
    flex-direction: column;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .btn-group {
    flex-direction: column;
    width: 90%;
  }
  .btn-secondary {
    width: 100%;
  }
  .btn-primary {
    font-size: 1.3rem;
    padding: 14px 30px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .step {
    flex-wrap: wrap;
  }
}