* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f5f7fa;
  color: #1a1a1a;
  line-height: 1.6;
}

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

/* NAVBAR */
.navbar {
  background: white;
  padding: 20px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-weight: 700;
  font-size: 1.3rem;
}

.logo span {
  color: #2d8cff;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #2d8cff, #5a5dff);
  color: white;
}

.hero-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  max-width: 320px;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  opacity: 0.8;
}

.hero-badge img {
  width: 68px;
  border-radius: 28px;
}

/* BUTTON */
.btn-primary {
  background: white;
  color: #2d8cff;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

/* FEATURES */
.features {
  padding: 100px 0;
}

.features h2 {
  text-align: center;
  margin-bottom: 60px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
}

.feature-image {
  flex: 1;
  text-align: center;
}

.feature-image img {
  max-width: 300px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* CTA */
.cta {
  background: #2d8cff;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

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

/* FOOTER */
footer {
  background: white;
  padding: 40px 0;
  text-align: center;
}

.footer-links a {
  margin: 0 10px;
  color: #2d8cff;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-flex,
  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    text-align: center;
  }
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #2d8cff, #5a5dff);
  color: white;
  padding: 80px 0;
  text-align: center;
}

/* PAGE CONTENT */
.page-content {
  padding: 80px 0;
}

.card {
  background: white;
  padding: 60px;
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  max-width: 800px;
  margin: auto;
}

.card h2 {
  margin-top: 40px;
  margin-bottom: 15px;
}

footer {
  padding: 40px 10%;
  background: #0f172a;
  color: #94a3b8;
  text-align: center;
}

.footer-logo {
  width: 140px;
  margin-bottom: 15px;
  opacity: 0.8;
}