:root {
  --orange: #f36621;
  --green: #04783f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI';
}

body {
  background: #f9fafb;
}

/* NAV */
.header {
  position: fixed;
  width: 100%;
  background: white;
  padding: 15px 40px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu {
  display: flex;
  gap: 20px;
}

.btn-nav {
  background: var(--orange);
  color: white;
  padding: 8px 14px;
  border: none;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  padding: 120px 50px;
}

.hero-text {
  max-width: 500px;
}

.hero h1 {
  color: var(--orange);
  font-size: 2rem;
}

.hero h2 {
  color: var(--green);
  margin: 10px 0;
}

.hero-image img {
  width: 400px;
}

/* SERVICES */
.services {
  padding: 60px 40px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 15px;
  margin-top: 20px;
}

.card {
  background: white;
  padding: 18px;
  border-radius: 10px;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.card button {
  background: var(--orange);
  color: white;
  padding: 6px 10px;
}

/* WHY */
.why {
  display: flex;
  gap: 40px;
  padding: 60px 40px;
  background: #f3ece6;
}

.why img {
  width: 350px;
}

.stats {
  display: flex;
  gap: 15px;
}

/* STEPS */
.steps {
  text-align: center;
  padding: 60px;
}

.step-grid {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* FORM */
.form-section {
  display: flex;
  padding: 60px;
  gap: 30px;
}

form {
  background: white;
  padding: 25px;
  width: 350px;
}

.row {
  display: flex;
  gap: 10px;
}

/* TESTIMONIAL */
.testimonial {
  background: var(--orange);
  color: white;
  padding: 60px;
  text-align: center;
}

/* FOOTER */
.footer {
  background: #f36621;
  color: white;
  padding: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
}
