/* =========================
   GLOBAL
========================= */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
}

/* =========================
   HERO SECTION
========================= */

.hero {
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
}

.hero-content {
  max-width: 800px;
  width: 100%;
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(145deg, #111827, #1f2937);
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6);
}

/* =========================
   TEXT
========================= */

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 18px;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 30px;
}

.pricing {
  margin-top: 25px;
  font-size: 18px;
  color: #facc15;
  font-weight: bold;
}

/* =========================
   BUTTON
========================= */

.cta-btn {
  display: inline-block;
  padding: 18px 50px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 14px;
  text-decoration: none;
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  color: white;
  transition: 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-4px);
}

/* =========================
   FEATURES
========================= */

.features {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 15px;
  color: #9ca3af;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width:768px){

  .hero-content {
    padding: 40px 25px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .subtitle {
    font-size: 15px;
  }

  .cta-btn {
    font-size: 16px;
    padding: 14px 30px;
  }

  .features {
    flex-direction: column;
    gap: 10px;
  }

}
/* =========================
   HOW IT WORKS
========================= */

.how-it-works {
  padding: 40px 20px;
  text-align: center;
  background: #0f172a;
}

.how-it-works h2 {
  font-size: 32px;
  margin-bottom: 60px;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.step-card {
  background: #1e293b;
  padding: 40px 25px;
  border-radius: 20px;
  width: 300px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.step-card h3 {
  margin-bottom: 15px;
}

.step-card p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.6;
}

/* MOBILE */

@media (max-width:768px){

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    width: 90%;
  }

}
/* =========================
   WHY US SECTION
========================= */

.why-us {
  padding: 40px 20px;
  text-align: center;
  background: #111827;
}

.why-us h2 {
  font-size: 32px;
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.why-card {
  background: #1f2937;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.why-card h3 {
  margin-bottom: 15px;
}

.why-card p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.6;
}

/* MOBILE */

@media (max-width:768px){

  .why-grid {
    grid-template-columns: 1fr;
  }

}
/* =========================
   FAQ SECTION
========================= */

.faq {
  padding: 20px 20px;
  background: #0f172a;
  text-align: center;
}

.faq h2 {
  font-size: 30px;
  margin-bottom: 50px;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 25px auto;
  text-align: left;
  background: #1e293b;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.faq-item h3 {
  margin-bottom: 10px;
}

.faq-item p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.6;
}
/* =========================
   FOOTER
========================= */

.footer {
  background: #111827;
  padding: 10px 20px;
  text-align: center;
}

.footer-content {
  max-width: 900px;
  margin: auto;
}

.footer h3 {
  margin-bottom: 15px;
}

.footer p {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  margin: 25px 0;
}

.footer-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #3b82f6;
  font-weight: bold;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  margin-top: 30px;
  font-size: 13px;
  color: #6b7280;
}
.video-section {
  padding: 60px 20px;
  text-align: center;
  background: #0f172a;
}

.video-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.video-subtitle {
  color: #cbd5e1;
  margin-bottom: 35px;
  font-size: 15px;
}

.video-container {
  max-width: 720px;
  margin: 30px auto;
}

.video-container iframe {
  width: 100%;
  height: 405px;   /* 👈 fixed professional height */
  border-radius: 14px;
}
@media (max-width: 768px) {
  .video-container iframe {
    height: 220px;
  }
}