@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
  margin:0;
  font-family:'Inter', sans-serif;
  background:#f8fafc;
  color:#0f172a;
}

/* NAV */
nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 80px;
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid #e5e7eb;
}

nav a {
  margin-left:25px;
  text-decoration:none;
  color:#475569;
  font-weight:500;
}

nav a:hover {
  color:#0f172a;
}

.btn {
  background:#2563eb;
  color:white;
  padding:10px 22px;
  border-radius:10px;
  font-weight:600;
  transition:0.2s;
}

.btn:hover {
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(37,99,235,0.3);
}

/* HERO */
.hero {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:140px 80px;
  background:linear-gradient(135deg,#1e3a8a,#2563eb);
  color:white;
}

.hero-text {
  max-width:550px;
}

.hero-text h1 {
  font-size:58px;
  line-height:1.1;
}

.hero-text p {
  margin-top:20px;
  font-size:18px;
  opacity:0.9;
}

.hero img {
  width:500px;
  border-radius:16px;
  box-shadow:0 20px 60px rgba(0,0,0,0.4);
}

/* SECTION */
.section {
  padding:120px 20px;
  text-align:center;
}

.section h2 {
  font-size:38px;
}

/* GRID */
.grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  max-width:1100px;
  margin:50px auto;
}

/* CARD */
.card {
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(12px);
  padding:30px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.25s;
}

.card:hover {
  transform:translateY(-8px);
}

/* STATS */
.stats {
  display:flex;
  justify-content:center;
  gap:80px;
  margin-top:40px;
  flex-wrap:wrap;
}

.stat h3 {
  font-size:36px;
  color:#2563eb;
}

/* TESTIMONIAL */
.testimonial {
  font-size:15px;
  line-height:1.6;
  margin-top:10px;
}

/* CTA */
.cta {
  background:#f1f5f9;
  padding:120px 20px;
}

/* FOOTER */
footer {
  background:#0f172a;
  color:#94a3b8;
  padding:80px;
}