* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.contact-section {
  position: relative;
  min-height: 100vh;
  padding: 80px 24px;
  background: #FF005C;
  overflow: hidden;
}

.content-wrap {
  width: min(1400px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 696px;
  gap: 96px;
  align-items: center;
}

.sales-copy {
  max-width: 660px;
  padding-left: 10px;
}

.eyebrow {
  margin: 0 0 28px;
  color: #FF005C;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  margin: 0;
  max-width: 520px;
  font-size: 52px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: 0;
}

.intro {
  margin: 24px 0 36px;
  max-width: 650px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
}

.benefits {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  font-size: 22px;
  line-height: 1.4;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.check {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #FF005C;
  background: #ffffff;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
}

.form-card {
  width: 100%;
  padding: 32px;
  color: #111111;
  background: #ffffff;
  border-radius: 10px;
}

.account-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 28px;
}

.account-tab {
  height: 64px;
  border: 1px solid #242424;
  border-radius: 5px;
  background: #ffffff;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.account-tab.active {
  border-color: #A42466;
  background: #FF005C;
  color: #ffffff;
  font-weight: 700;
}

.icon {
  position: relative;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0E0108;
}

.bag-body {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  background: #ffffff;
}

.bag-handle {
  position: absolute;
  top: 10px;
  width: 12px;
  height: 8px;
  border: 3px solid #ffffff;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.business-icon::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 4px;
  border-radius: 1px;
  background: #A42466;
}

.head {
  position: absolute;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
}

.shoulders {
  position: absolute;
  bottom: 7px;
  width: 26px;
  height: 13px;
  border-radius: 18px 18px 6px 6px;
  background: #ffffff;
}

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

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  height: 58px;
  padding: 0 20px;
  border: 1px solid #000000;
  border-radius: 4px;
  color: #111111;
  background: #ffffff;
  font: inherit;
  font-size: 20px;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #717780;
  opacity: 1;
}

select {
  appearance: auto;
  font-size: 18px;
}

textarea {
  padding-top: 16px;
  resize: vertical;
  min-height: 58px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #2174f3;
  box-shadow: 0 0 0 3px rgba(33, 116, 243, 0.18);
}

#businessFields,
#candidateFields {
  display: grid;
  gap: 30px;
}

.submit-btn {
  height: 49px;
  border: 0;
  border-radius: 4px;
  color: #ffffff;
  background: #FF005C;
  box-shadow: 0 3px 0 #ff61ad;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  background: #176ce2;
}

.privacy-text {
  margin: 32px 0 0;
  color: #000000;
  font-size: 20px;
  line-height: 1.4;
}

.privacy-text a {
  color: #006dff;
  text-decoration: none;
}

.privacy-text a:hover {
  text-decoration: underline;
}

 
.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;
}

.trap-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  min-height: 22px;
  margin: -12px 0 0;
  color: #0b7a3b;
  font-size: 16px;
  line-height: 1.35;
}

.form-message.error {
  color: #c02b2b;
}

@media (max-width: 1200px) {
  .content-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sales-copy,
  .form-card {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .contact-section {
    padding: 44px 16px 90px;
  }

  .sales-copy {
    padding-left: 0;
  }

  .eyebrow {
    font-size: 20px;
    margin-bottom: 20px;
  }

  h1 {
    font-size: 38px;
  }

  .intro,
  .benefits {
    font-size: 18px;
  }

  .form-card {
    padding: 20px;
  }

  .account-tabs,
  .field-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  form,
  #businessFields,
  #candidateFields {
    gap: 18px;
  }

  input,
  select,
  textarea {
    font-size: 17px;
  }
}

.demo-footer {
  padding: 14px 28px 20px;
  background: #ffffff;
}

.demo-footer-btn {
  width: min(560px, 100%);
  height: 50px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  color: #ffffff;
  background: #237ff2;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.demo-footer-btn:hover,
.demo-footer-btn:focus-visible {
  background: #176ee0;
}


