* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary: #ee4d2d;
  --secondary: #ff7337;
  --dark: #111827;
  --light: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

body {
  background: var(--light);
  color: #222;
  overflow-x: hidden;
}

/* HEADER */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar {
  background: white;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 7%;

  box-shadow: var(--shadow);
}

.logo {
  font-size: 32px;
  font-weight: 800;

  color: var(--primary);

  text-decoration: none;
}

.back-btn {
  text-decoration: none;

  background: var(--primary);
  color: white;

  padding: 12px 20px;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.3s;
}

.back-btn:hover {
  transform: translateY(-3px);
}

/* HERO */
.hero {
  min-height: 100vh;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 60px;

  padding: 180px 7% 100px;

  background: linear-gradient(120deg, #fff7f5, #ffffff);
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 65px;
  line-height: 1.1;

  margin-bottom: 20px;
}

.hero-content p {
  color: #666;

  line-height: 1.8;

  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.primary-btn,
.secondary-btn {
  border: none;

  padding: 15px 30px;

  border-radius: 50px;

  cursor: pointer;

  font-weight: 600;

  transition: 0.3s;
}

.primary-btn {
  background: var(--primary);
  color: white;
}

.secondary-btn {
  background: white;

  border: 2px solid #ddd;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-5px);
}

/* HERO IMAGE */
.hero-image img {
  width: 520px;

  border-radius: 30px;

  box-shadow: var(--shadow);
}

/* FEATURES */
.features {
  padding: 100px 7%;
}

.section-title {
  text-align: center;

  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 45px;
}

.features-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;
}

.feature-card {
  background: white;

  padding: 40px 25px;

  border-radius: 25px;

  text-align: center;

  box-shadow: var(--shadow);

  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 55px;

  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
}

/* STATS */
.stats {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;

  padding: 0 7% 100px;
}

.stat-card {
  background: var(--primary);
  color: white;

  padding: 50px 30px;

  border-radius: 25px;

  text-align: center;

  box-shadow: var(--shadow);
}

.stat-card h2 {
  font-size: 50px;

  margin-bottom: 10px;
}

/* CTA */
.cta {
  background: var(--dark);
  color: white;

  text-align: center;

  padding: 100px 20px;
}

.cta h2 {
  font-size: 50px;

  margin-bottom: 20px;
}

.cta p {
  color: #ccc;

  margin-bottom: 30px;
}

.cta-btn {
  border: none;

  background: var(--primary);
  color: white;

  padding: 18px 35px;

  border-radius: 50px;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-5px);
}

/* FOOTER */
footer {
  background: #0b1220;
  color: white;

  text-align: center;

  padding: 60px 20px;
}

footer h2 {
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 45px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta h2 {
    font-size: 38px;
  }
}
