:root {
  --text: #ffffff;
  --muted: #d7dfdc;
  --card: #ffffff;
  --line: #dde5e0;
  --heading: #1f352b;
  --btn: #1f5f3f;
  --btn-hover: #2f7b55;
}

* {
  box-sizing: border-box;
}

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

.hero {
  min-height: 100vh;
  background:
    linear-gradient(to right, rgba(9, 20, 28, 0.72) 0%, rgba(9, 20, 28, 0.55) 42%, rgba(9, 20, 28, 0.3) 62%, rgba(9, 20, 28, 0.65) 100%),
    url("skoda-Kodiaq-bg.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: center;
}

.hero-left h1 {
  margin: 0;
  line-height: 1.04;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
}

.hero-left h1 span {
  color: #d4e8db;
}

.subtitle {
  margin: 16px 0 20px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 520px;
}

.benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.benefits li {
  position: relative;
  padding-left: 22px;
  font-weight: 600;
  color: #f1f6f3;
}

.benefits li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #f0cf00;
  position: absolute;
  left: 0;
  top: 7px;
}

.enquiry-card {
  background: var(--card);
  color: #33423a;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.enquiry-card h2 {
  margin: 0;
  text-align: center;
  font-size: 1.75rem;
  color: var(--heading);
}

.enquiry-card > p {
  margin: 6px 0 14px;
  text-align: center;
  font-size: 0.78rem;
  color: #71837a;
}

form {
  display: grid;
  gap: 10px;
}

input[type="text"],
input[type="email"],
select,
input[type="tel"] {
  width: 100%;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  font: inherit;
}

select {
  appearance: none;
  background: #fff;
  color: #33423a;
}

input:focus-visible {
  outline: 2px solid #a6c8b3;
  outline-offset: 1px;
}

.consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.72rem;
  color: #6c7d74;
}

button {
  border: 0;
  border-radius: 999px;
  height: 42px;
  background: var(--btn);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

button:hover {
  background: var(--btn-hover);
}

.form-note {
  margin: 2px 0 0;
  text-align: center;
  font-size: 0.66rem;
  color: #7b8a82;
}

.form-status {
  margin: 0;
  min-height: 16px;
  text-align: center;
  font-size: 0.75rem;
}

.form-status.ok {
  color: #1f5f3f;
}

.form-status.err {
  color: #ad2c2c;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 44px 0;
  }

  .container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .subtitle {
    max-width: none;
  }
}
