.contact-page {
  color: #07508c;
  background: #fff;
}

.contact-hero {
  min-height: clamp(430px, 46vw, 650px);
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
}

.contact-hero-inner {
  width: min(1120px, 90%);
  color: #fff;
}

.contact-kicker,
.contact-label {
  display: inline-block;
  margin: 0 0 14px;
  color: #f99a1c;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-hero h1 {
  max-width: 680px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(52px, 7vw, 96px);
  line-height: .95;
  letter-spacing: -.04em;
}

.contact-hero p {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.55;
}

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

.contact-btn,
.contact-submit {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 0;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.contact-btn-orange {
  background: #f99a1c;
  color: #fff;
}

.contact-btn-outline {
  border: 2px solid rgba(255,255,255,.9);
  color: #fff;
  background: rgba(255,255,255,.08);
}

.contact-options {
  padding: clamp(56px, 6vw, 92px) 0;
  background: #eef9fd;
}

.contact-options-grid {
  width: min(1120px, 90%);
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.contact-call-card,
.contact-form-card {
  background: #fff;
  box-shadow: 0 18px 45px rgba(4,65,111,.12);
}

.contact-call-card {
  padding: clamp(30px, 4vw, 48px);
}

.contact-form-card {
  padding: clamp(30px, 4vw, 54px);
}

.contact-call-card h2,
.contact-form-card h2 {
  margin: 0 0 16px;
  color: #07508c;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.08;
}

.contact-call-card p,
.contact-form-card p {
  color: #244f72;
  font-size: 17px;
  line-height: 1.65;
}

.contact-phone {
  margin: 18px 0 22px;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #07508c;
  color: #fff;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 900;
  letter-spacing: .02em;
  text-decoration: none;
}

.contact-address {
  margin-bottom: 0;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-field label {
  color: #07508c;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.contact-field label span {
  color: #f99a1c;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid #bed9e8;
  border-radius: 2px;
  background: #f8fcfe;
  color: #123c5d;
  font: inherit;
}

.contact-field textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: 3px solid rgba(249,154,28,.22);
  border-color: #07508c;
  background: #fff;
}

.contact-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: #244f72;
  font-size: 13px;
  line-height: 1.55;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #07508c;
}

.contact-consent a {
  color: #07508c;
  font-weight: 800;
}

.contact-consent strong {
  display: block;
  margin-top: 8px;
  color: #07508c;
  font-weight: 900;
}

.contact-submit {
  width: 100%;
  background: #07508c;
  color: #fff;
}

.contact-form-note {
  min-height: 24px;
  margin: 0;
  color: #07508c;
  font-weight: 800;
}

@media (max-width: 760px) {
  .contact-hero {
    min-height: 420px;
    text-align: center;
  }

  .contact-hero-inner {
    margin: 0 auto;
  }

  .contact-hero h1,
  .contact-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-hero-actions {
    justify-content: center;
  }

  .contact-btn {
    width: 100%;
  }

  .contact-options-grid {
    grid-template-columns: 1fr;
  }

  .contact-field.two-col {
    grid-template-columns: 1fr;
  }
}
