* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: #061a2b;
  background: #ffffff;
}

.coming-soon {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 50% 50%;
}

.hero-image {
  min-height: 100vh;
  background-image: url("assets/cards-hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.content-panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vh, 36px) clamp(28px, 4.25vw, 58px);
  background: #ffffff;
}

.content-inner {
  width: 100%;
  max-width: 660px;
  text-align: center;
}

.compact-layout {
  max-width: 620px;
}

.brand-logo {
  display: block;
  width: min(195px, 42vw);
  height: auto;
  margin: 0 auto clamp(14px, 2.2vh, 24px);
}

h1 {
  margin: 0 0 clamp(12px, 1.8vh, 18px);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(2.2rem, 3.8vw, 3.65rem);
  line-height: 1;
  font-weight: 800;
  color: #061a2b;
}

.intro {
  margin: 0 auto 16px;
  max-width: 600px;
  font-size: clamp(0.88rem, 1vw, 1rem);
  line-height: 1.45;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #101820;
}

.button-link,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  text-align: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  background: #890a10;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.button-link:hover,
button:hover {
  background: #0b2a45;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 16px auto 16px;
}

.trust-row span {
  border: 1px solid #d8dde2;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #23394d;
  background: #fafafa;
}

.contact-card {
  width: 100%;
  margin: 0 auto;
  padding: clamp(15px, 2.1vh, 20px);
  border: 1px solid #e0e4e8;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(6, 26, 43, 0.09);
  text-align: left;
}

.contact-card h2 {
  margin: 0 0 6px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.92rem;
  color: #061a2b;
}

.contact-card p {
  margin: 0 auto 12px;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #34495c;
}

.contact-form {
  display: grid;
  gap: 10px;
}

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

label {
  display: grid;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #23394d;
}

.label-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.required-note {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin-left: 0;
  padding: 2px 6px;
  border: 1px solid #d7dde3;
  border-radius: 999px;
  font-size: 0.55rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #687684;
  background: #f7f8fa;
  white-space: nowrap;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfd6dd;
  border-radius: 12px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.9rem;
  color: #061a2b;
  background: #ffffff;
}

textarea {
  min-height: 78px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid #c9852b;
  outline-offset: 2px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 9px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #34495c;
}

.checkbox-label input {
  width: auto;
  min-width: 16px;
  height: 16px;
  margin: 0;
}

.contact-form button {
  justify-self: center;
}

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

@media (max-height: 820px) and (min-width: 901px) {
  .brand-logo {
    width: 170px;
    margin-bottom: 16px;
  }

  h1 {
    font-size: clamp(2rem, 3.55vw, 3.25rem);
    margin-bottom: 12px;
  }

  .intro {
    margin-bottom: 14px;
    line-height: 1.35;
  }

  .trust-row {
    margin-block: 14px;
  }

  .contact-card {
    padding: 16px;
  }

  .contact-card p {
    margin-bottom: 10px;
  }

  .contact-form {
    gap: 9px;
  }

  input,
  textarea {
    padding: 9px 11px;
  }

  textarea {
    min-height: 70px;
  }
}

@media (max-width: 1050px) {
  .coming-soon {
    grid-template-columns: 46% 54%;
  }

  .content-panel {
    padding-inline: 28px;
  }
}

@media (max-width: 900px) {
  .coming-soon {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 38vh;
    background-position: center center;
  }

  .content-panel {
    min-height: 62vh;
    padding: 34px 22px 50px;
  }

  .brand-logo {
    width: min(230px, 70vw);
  }

  h1 {
    letter-spacing: 0.13em;
  }
}

@media (max-width: 620px) {
  .hero-image {
    min-height: 34vh;
  }

  .content-panel {
    padding-inline: 18px;
  }

  .intro {
    font-size: 0.9rem;
    letter-spacing: 0.02em;
  }

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

  .contact-form button {
    width: 100%;
  }

  .contact-card {
    padding: 16px;
  }
}
