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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #f5f5f7;
  color: #111;
}

.hero {
  min-height: 100vh;
  padding: 32px 7%;
  color: white;
  background:
    linear-gradient(90deg, rgba(37,60,179,0.95), rgba(248,57,31,0.65), rgba(249,148,35,0.25)),
    linear-gradient(135deg, #050505, #171717);
}

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

.logo-img {
  height: 54px;
  width: auto;
}

.nav-button,
.main-button {
  display: inline-block;
  background: #F99423;
  color: #111;
  padding: 15px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.hero-content {
  max-width: 760px;
  margin-top: 150px;
}

.eyebrow {
  color: #F99423;
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 700;
}

h1 {
  font-size: clamp(52px, 8vw, 105px);
  line-height: 0.95;
  letter-spacing: -4px;
  margin-bottom: 30px;
}

.hero-text {
  max-width: 620px;
  font-size: 22px;
  line-height: 1.5;
  color: #f1f1f1;
  margin-bottom: 36px;
}

.intro {
  padding: 90px 7% 40px;
}

.intro div {
  max-width: 680px;
}

.line {
  width: 48px;
  height: 3px;
  background: #F8391F;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.intro p,
.form-box p,
.split-dark p {
  font-size: 20px;
  line-height: 1.5;
  color: #444;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 30px 7% 90px;
}

.card {
  background: white;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-top: 5px solid #F99423;
}

.card h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.card p {
  font-size: 18px;
  line-height: 1.5;
  color: #555;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  background: white;
}

.split-dark {
  background: #253CB3;
  color: white;
  padding: 90px 7%;
}

.split-dark p {
  color: #f1f1f1;
}

.form-box {
  padding: 70px 7%;
}

form {
  margin-top: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 14px;
  font-size: 16px;
  margin-bottom: 14px;
  font-family: inherit;
}

textarea {
  resize: vertical;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: #333;
  margin: 6px 0 18px;
}

.checkbox input {
  width: auto;
  margin-top: 3px;
}

button {
  width: 100%;
  padding: 18px 24px;
  border: none;
  border-radius: 999px;
  background: #F8391F;
  color: white;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 28px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 850px) {
  .hero {
    padding: 24px;
  }

  .navbar {
    align-items: flex-start;
    gap: 20px;
  }

  .logo-img {
    height: 44px;
  }

  .hero-content {
    margin-top: 120px;
  }

  .cards {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .intro {
    padding: 70px 24px 24px;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split-dark,
  .form-box {
    padding: 60px 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    letter-spacing: -2px;
  }
}