:root {
  --orange: #ff8a00;
  --yellow: #ffd447;
  --teal: #1cb5a3;
  --blue: #1570ef;
  --bg: #f6f9ff;
  --text: #1f2a37;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background: var(--bg);
}

.hero {
  min-height: 90vh;
  background:
    linear-gradient(115deg, rgba(21, 112, 239, 0.82), rgba(255, 138, 0, 0.62)),
    url("https://images.unsplash.com/photo-1502082553048-f009c37129b9?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  color: #fff;
  padding: 1rem 5%;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 0.65rem 1rem;
}

.logo {
  text-decoration: none;
  color: #fff;
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.hero-content {
  max-width: 700px;
  padding: 4rem 0 5rem;
}

.eyebrow {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  font-family: "Baloo 2", cursive;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
}

p {
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 10px;
  padding: 0.85rem 1.2rem;
  background: var(--yellow);
  color: #111827;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.btn-secondary {
  background: #fff;
}

.btn-sm {
  background: var(--orange);
  color: #fff;
  padding: 0.5rem 0.85rem;
}

.section {
  padding: 4rem 5%;
}

.section-heading {
  text-align: center;
  margin-bottom: 1.6rem;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  background: #fff;
  padding: 1.25rem 5%;
  text-align: center;
  border-top: 5px solid var(--teal);
  border-bottom: 5px solid var(--orange);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(27, 39, 51, 0.08);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 1rem;
}

.pill {
  display: inline-block;
  margin-top: 0.5rem;
  background: #ecf4ff;
  color: var(--blue);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-weight: 700;
  font-size: 0.85rem;
}

.section-alt {
  background: linear-gradient(180deg, #eaf3ff, #f5fbff);
}

.highlights {
  display: grid;
  gap: 0.8rem;
  max-width: 850px;
  margin: 0 auto;
}

.highlight-item {
  padding: 0.95rem 1rem;
  background: #fff;
  border-left: 8px solid var(--blue);
  border-radius: 10px;
  font-weight: 700;
}

.cta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  align-items: start;
}

.signup-form {
  background: #fff;
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.signup-form label {
  display: block;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.signup-form input,
.signup-form select {
  width: 100%;
  margin-top: 0.25rem;
  border: 1px solid #dadada;
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
  font: inherit;
}

.form-note {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal);
}

.footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1.5rem 5%;
}

@media (max-width: 800px) {
  .cta {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 3rem;
  }
}
