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

body {
  background: #f8fafc;
  color: #1e293b;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: white;
}

.navbar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
}

.logo {
  font-weight: 700;
  font-size: 20px;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, #5b8cff, #a855f7);
  color: white;
}

.hero-content {
  max-width: 500px;
}

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

.hero p {
  margin-bottom: 25px;
  font-size: 18px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image img {
  width: 300px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* BUTTONS */
.btn-primary {
  background: #2563eb;
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary.small {
  padding: 8px 16px;
}

.btn-secondary {
  background: white;
  color: #2563eb;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
}

/* FEATURES */
.features {
  padding: 80px 40px;
  text-align: center;
}

.features h2 {
  margin-bottom: 40px;
  font-size: 32px;
}

.feature-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  width: 250px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.feature-card .icon {
  font-size: 30px;
  margin-bottom: 15px;
}

/* SPLIT */
.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 40px;
}

.split img {
  width: 300px;
  border-radius: 20px;
}

.split-content {
  max-width: 400px;
}

.split-content h2 {
  margin-bottom: 20px;
}

.split-content ul {
  list-style: none;
}

.split-content li {
  margin-bottom: 10px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #e0e7ff, #f5f3ff);
}

.cta h2 {
  margin-bottom: 10px;
}
