* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  color: #1f2933;
  background-color: #ffffff;
  line-height: 1.6;
}

/* Utilities */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Buttons */
.btn-primary {
  background: #6366f1;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-secondary {
  margin-left: 10px;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid #6366f1;
  color: #6366f1;
}

.btn-outline {
  padding: 8px 18px;
  border: 1px solid #6366f1;
  border-radius: 6px;
  color: #6366f1;
  font-weight: 500;
}

/* Navbar */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  color: #6366f1;
}

nav a {
  margin-left: 20px;
  font-weight: 500;
}

/* Hero */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #eef2ff, #ffffff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 30px;
  color: #4b5563;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
}

/* Features */
.features {
  padding: 70px 0;
  background: #f9fafb;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.feature-card h4 {
  margin-bottom: 10px;
}

/* CTA */
.cta {
  padding: 70px 0;
}

.cta-box {
  background: #6366f1;
  color: #ffffff;
  text-align: center;
  padding: 50px 20px;
  border-radius: 16px;
}

.cta-box p {
  margin: 15px 0 25px;
}

/* Footer */
.footer {
  padding: 25px 0;
  border-top: 1px solid #e5e7eb;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links a {
  margin-left: 15px;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .feature-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .btn-secondary {
    margin-left: 0;
    margin-top: 10px;
    display: inline-block;
  }
}
