.gcsc .gcser {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 30px;
  align-items: start;
  margin-top: 2px;
  padding: 28px;
  border: 1px solid #d9e1ea;
  border-radius: 18px;
  background: #ffffff;
  color: #111827;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  box-sizing: border-box;
}

.gcsc .gcser *,
.gcsc .gcser *::before,
.gcsc .gcser *::after {
  box-sizing: border-box;
}

.gcsc .gcser__heading {
  margin: 0;
}

.gcsc .gcser__kicker {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
  color: #ff6237;
}

.gcsc .gcser__title {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #111827;
}

.gcsc .gcser__intro {
  margin: 10px 0 0;
  max-width: 48ch;
  font-size: 15px;
  line-height: 1.55;
  color: #526075;
}

.gcsc .gcser__form {
  min-width: 0;
}

.gcsc .gcser__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.gcsc .gcser__email-label {
  display: grid;
  gap: 7px;
  min-width: 0;
  font-size: 14px;
  font-weight: 750;
  color: #111827;
}

.gcsc .gcser__email {
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #b8c4d1;
  border-radius: 11px;
  background: #ffffff;
  color: #111827;
  font: inherit;
  font-size: 16px;
  line-height: 1.3;
  outline: none;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.gcsc .gcser__email::placeholder {
  color: #6b7280;
  opacity: 1;
}

.gcsc .gcser__email:hover {
  border-color: #8d9aaa;
}

.gcsc .gcser__email:focus {
  border-color: #ff6237;
  box-shadow: 0 0 0 3px rgba(255, 98, 55, 0.18);
}

.gcsc .gcser__submit {
  min-height: 52px;
  margin: 0;
  padding: 12px 20px;
  border: 1px solid #ff6237;
  border-radius: 11px;
  background: #ff6237;
  color: #ffffff;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(255, 98, 55, 0.2);
  transition: transform 120ms ease, filter 120ms ease;
}

.gcsc .gcser__submit:hover {
  filter: brightness(0.97);
  transform: translateY(-1px);
}

.gcsc .gcser__submit:focus-visible {
  outline: 3px solid rgba(255, 98, 55, 0.3);
  outline-offset: 2px;
}

.gcsc .gcser__submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.gcsc .gcser__consent {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 15px;
  font-size: 13px;
  line-height: 1.5;
  color: #334155;
  cursor: pointer;
}

.gcsc .gcser__consent input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: #ff6237;
}

.gcsc .gcser__legal {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: #667085;
}

.gcsc .gcser__legal a {
  color: #334155;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gcsc .gcser__message {
  min-height: 0;
  margin: 12px 0 0;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.gcsc .gcser__message:empty {
  display: none;
}

.gcsc .gcser__message--success {
  color: #15803d;
}

.gcsc .gcser__message--error {
  color: #b91c1c;
}

.gcsc .gcser__hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 900px) {
  .gcsc .gcser {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 700px) {
  .gcsc .gcser {
    width: 100%;
    margin-top: 0;
    padding: 20px 16px;
    border-radius: 15px;
  }

  .gcsc .gcser__title {
    font-size: 23px;
  }

  .gcsc .gcser__intro {
    font-size: 14px;
  }

  .gcsc .gcser__row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gcsc .gcser__email,
  .gcsc .gcser__submit {
    width: 100%;
    min-height: 52px;
  }

  .gcsc .gcser__submit {
    white-space: normal;
  }

  .gcsc .gcser__consent {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 11px;
    font-size: 13px;
  }

  .gcsc .gcser__consent input {
    width: 22px;
    height: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gcsc .gcser__submit {
    transition: none;
  }
}
