.dyp-contact-page {
  min-height: 70vh;
  padding: clamp(64px, 8vw, 110px) 24px 110px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 20, 147, 0.18), transparent 29%),
    linear-gradient(135deg, #030816, #09152c 58%, #15112b);
}

.dyp-contact-page__hero,
.dyp-contact-page__layout {
  width: min(100%, 1120px);
  margin-inline: auto;
}

.dyp-contact-page__hero {
  max-width: 850px;
  margin-bottom: 54px;
  text-align: center;
}

.dyp-contact-page__eyebrow {
  margin: 0 0 12px;
  color: #ff1493;
  font-size: 0.8125rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dyp-contact-page__hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.dyp-contact-page__hero > p:last-child {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.75;
}

.dyp-contact-page__layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.75fr);
  gap: 28px;
}

.dyp-contact-page__form,
.dyp-contact-page__aside {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255, 20, 147, 0.34);
  border-radius: 26px;
  background: rgba(6, 13, 31, 0.76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.dyp-contact-page__form h2,
.dyp-contact-page__aside h2 {
  margin: 0 0 28px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.dyp-contact-form-component form > p,
.dyp-contact-form-component__grid p {
  margin: 0;
}

.dyp-contact-form-component__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.dyp-contact-form-component form > p + p,
.dyp-contact-form-component form > div + p {
  margin-top: 20px;
}

.dyp-contact-form-component label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.dyp-contact-form-component input:not([type="checkbox"]),
.dyp-contact-form-component select,
.dyp-contact-form-component textarea {
  width: 100%;
  padding: 12px 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(2, 7, 20, 0.8);
}

.dyp-contact-form-component select option {
  color: #101525;
  background: #fff;
}

.dyp-contact-form-component textarea {
  resize: vertical;
}

.dyp-contact-form-component input:focus,
.dyp-contact-form-component select:focus,
.dyp-contact-form-component textarea:focus {
  border-color: #ff1493;
  outline: 3px solid rgba(255, 20, 147, 0.18);
}

.dyp-contact-form-component__privacy label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.dyp-contact-form-component__privacy input {
  margin-top: 5px;
}

.dyp-contact-form-component__privacy a {
  color: #ff72bc;
  font-weight: 700;
  text-underline-offset: 3px;
}

.dyp-contact-form-component__privacy a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.dyp-contact-form-component button {
  margin-top: 24px;
  padding: 14px 22px;
  color: #fff;
  font-weight: 900;
  border: 1px solid #ff1493;
  border-radius: 10px;
  background: #e5007d;
  cursor: pointer;
}

.dyp-contact-form-component button:hover,
.dyp-contact-form-component button:focus-visible {
  box-shadow: 0 0 28px rgba(255, 20, 147, 0.3);
}

.dyp-contact-form-component button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.dyp-contact-form-component__trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.dyp-contact-form-component__notice {
  margin: 0 0 24px;
  padding: 13px 15px;
  border: 1px solid currentcolor;
  border-radius: 10px;
}

.dyp-contact-form-component__notice.is-success {
  color: #68f29a;
}

.dyp-contact-form-component__notice.is-error {
  color: #ff9fcf;
}

.dyp-contact-page__aside {
  display: grid;
  gap: 16px;
}

.dyp-contact-page__channel {
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 20, 147, 0.55);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.dyp-contact-page__channel--whatsapp {
  border-color: rgba(56, 239, 125, 0.7);
}

.dyp-contact-page__channel--agent {
  border-color: rgba(242, 169, 0, 0.75);
}

.dyp-contact-page__channel span,
.dyp-contact-page__privacy-note {
  color: rgba(255, 255, 255, 0.68);
}

.dyp-contact-page__channel:hover,
.dyp-contact-page__channel:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.dyp-contact-page__channel:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.dyp-contact-page__privacy-note {
  margin: 10px 0 0;
  font-size: 0.86rem;
}

@media (max-width: 820px) {
  .dyp-contact-page {
    padding-inline: 16px;
  }

  .dyp-contact-page__layout,
  .dyp-contact-form-component__grid {
    grid-template-columns: 1fr;
  }

  .dyp-contact-page__hero h1 {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }
}
