* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f6f3ee;
  color: #1f2933;
  line-height: 1.6;
}

.hero {
  min-height: 90vh;
  background:
    linear-gradient(rgba(10, 18, 30, 0.78), rgba(10, 18, 30, 0.72)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 24px;
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 1.2rem;
}

.nav-button,
.primary,
.secondary {
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
}

.nav-button,
.primary {
  background: #f59e0b;
  color: #111827;
}

.secondary {
  color: white;
  border: 2px solid white;
}

.hero-content {
  max-width: 900px;
  margin: 18vh auto 0;
}

.tag {
  color: #fbbf24;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1;
  margin: 10px 0 20px;
}

.subtext {
  max-width: 680px;
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 24px;
}

h2 {
  font-size: 2rem;
  margin-top: 0;
}

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

.card,
.price-box,
.contact {
  background: white;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.card h3 {
  margin-top: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.checks {
  background: #111827;
  color: white;
  border-radius: 22px;
  padding: 28px 34px;
}

.checks li {
  margin: 10px 0;
}

.price-box strong {
  color: #b45309;
}

.contact-grid {
  display: grid;
  gap: 12px;
  margin: 25px 0;
}

.contact-grid a {
  display: block;
  background: #f3f4f6;
  color: #111827;
  padding: 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
}

.small {
  color: #5b6470;
  font-size: 0.95rem;
}

footer {
  text-align: center;
  padding: 30px;
  background: #111827;
  color: white;
}

@media (max-width: 760px) {
  .cards,
  .split {
    grid-template-columns: 1fr;
  }

  nav {
    gap: 14px;
  }

  .hero-content {
    margin-top: 12vh;
  }
}

.schedule-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 25px;
}

.schedule-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.schedule-form input,
.schedule-form select,
.schedule-form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 13px;
  font: inherit;
}

.schedule-form .full {
  grid-column: 1 / -1;
}

.schedule-form button {
  grid-column: 1 / -1;
  border: none;
  border-radius: 999px;
  padding: 15px 22px;
  background: #f59e0b;
  color: #111827;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
}

@media (max-width: 760px) {
  .schedule-form {
    grid-template-columns: 1fr;
  }
}
