/* RESET & BASE */
* {
  margin: 0; padding: 0; box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body { color: #222; background: #fff; line-height: 1.6; }

/* ===== NAVBAR ===== */
.navbar {
  background: #fff;
  position: sticky; top: 0; z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 15px 6%;
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.navbar .logo {
  font-size: 22px;
  font-weight: bold;
  color: #0ABAB5;
}

.logo span {
  color: #8A2BE2;
}
.nav-links { display: flex; gap: 20px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: #333; font-weight: 500; }
.nav-links a:hover { color: #4f46e5; }

.btn-small {
  background: #4f46e5; color: #fff;
  padding: 8px 14px; border-radius: 6px;
  font-size: 0.9rem;
}
.btn-small:hover { background: #3c3ac9; }

.menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.menu-toggle span {
  width: 25px; height: 3px; background: #333; border-radius: 3px;
}

/* ===== HERO ===== */
.hero {
  display: flex; align-items: center; justify-content: center;
  padding: 100px 6%; background: #f8f9ff;
}
.hero-flex { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; }
.hero-text { flex: 1 1 400px; }
.hero-text h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 15px; color: #111; }
.hero-text span { color: #4f46e5; }
.hero-text p { font-size: 1.1rem; margin-bottom: 25px; color: #555; }

.hero-image img {
  width: 100%; max-width: 450px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* BUTTONS */
.btn-primary, .btn-outline {
  display: inline-block; padding: 12px 24px; border-radius: 8px;
  text-decoration: none; font-weight: 600; margin-right: 10px;
  transition: all 0.3s ease;
}
.btn-primary { background: #4f46e5; color: #fff; }
.btn-primary:hover { background: #3c3ac9; }
.btn-outline { border: 2px solid #4f46e5; color: #4f46e5; }
.btn-outline:hover { background: #4f46e5; color: #fff; }

/* ===== FEATURES ===== */
.features { padding: 80px 6%; text-align: center; }
.features h2 { font-size: 2rem; margin-bottom: 10px; }
.subtitle { color: #666; margin-bottom: 40px; }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.feature-card {
  background: #fff; border: 1px solid #eee; border-radius: 12px;
  padding: 25px; box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.feature-card:hover { transform: translateY(-5px); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: #f8f9ff; padding: 80px 6%; text-align: center; }
.testimonial-card {
  max-width: 600px; margin: 20px auto;
  background: #fff; border-radius: 10px; padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* ===== PRICING ===== */
.pricing { padding: 80px 6%; text-align: center; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.price-card {
  background: #fff; border: 1px solid #eee; border-radius: 12px;
  padding: 25px; box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.price-card.featured { border: 2px solid #4f46e5; transform: scale(1.03); }
.price-card h3 { color: #111; }
.price-card p { font-size: 1.4rem; font-weight: bold; color: #4f46e5; margin-bottom: 15px; }
.price-card ul { list-style: none; margin-bottom: 20px; }
.price-card li { margin: 5px 0; color: #555; }

/* ===== FAQ ===== */
.faq { background: #f9f9f9; padding: 80px 6%; }
details { margin-bottom: 15px; background: #fff; border-radius: 10px; padding: 15px; cursor: pointer; }
summary { font-weight: 600; color: #111; }

/* ===== FOOTER ===== */
.footer { background: #111; color: #fff; text-align: center; padding: 25px 6%; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 60px; right: 0; width: 100%;
    background: #fff; flex-direction: column; gap: 15px;
    display: none; text-align: center; padding: 15px 0;
  }
  .nav-links.show { display: flex; }
  .hero { padding: 80px 5%; }
  .hero-text h1 { font-size: 2rem; }
  .hero-image img { max-width: 100%; }
}
