:root {
  --primary: #2176FF;
  --dark: #1A1F2E;
  --text: #1A1A2E;
  --muted: #64748B;
  --light: #F8FAFC;
  --container: 1280px;
  --radius: 12px;
  --pill: 999px;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

.header {
  background: var(--dark);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 24px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-icon {
  font-size: 40px;
  color: white;
}

.logo-wrap h3 {
  color: white;
  font-size: 20px;
}

.logo-wrap p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--pill);
  background: var(--primary);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: .3s ease;
}

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

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.eyebrow {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: .5px;
}

.hero-content h1 {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.1;
}

.hero-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-image img {
  border-radius: var(--radius);
  height: 100%;
  object-fit: cover;
}

.stats {
  background: var(--dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
  text-align: center;
}

.stat-card h2 {
  color: var(--primary);
  font-size: 56px;
  margin-bottom: 16px;
}

.stat-card p {
  color: white;
  font-size: 18px;
}

.testimonials {
  background: var(--light);
}

.section-heading {
  text-align: center;
  margin-bottom: 56px;
}

.section-heading h2 {
  font-size: 42px;
  margin-top: 16px;
}

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

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-user img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user span {
  color: var(--muted);
  font-size: 14px;
}

.testimonial-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
}

.footer {
  background: var(--dark);
  padding: 48px 0;
  text-align: center;
}

.footer h3 {
  color: white;
  margin-bottom: 16px;
}

.footer p {
  color: rgba(255,255,255,.7);
}

@media (max-width: 1024px) {

  .hero-grid,
  .stats-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrapper {
    flex-direction: column;
  }

}

@media (max-width: 767px) {

  .hero-content {
    text-align: center;
    align-items: center;
  }

  .section-padding {
    padding: 56px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

}