.hero {
  position: relative;
  padding: 0;
  min-height: calc(100vh - 76px);
  min-height: calc(100dvh - 76px);
  background: linear-gradient(180deg, #edf1f6 0%, #f4f6f9 100%);
}

.hero > .container {
  width: 100%;
  max-width: none;
  padding-inline: 0;
  margin-inline: 0;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.42fr 0.58fr;
  align-items: stretch;
  min-height: calc(100vh - 76px);
  min-height: calc(100dvh - 76px);
  border-radius: 0;
  background: linear-gradient(135deg, #111926 0%, #1e2734 46%, #151c27 100%);
  box-shadow: none;
  gap: 0;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-panel::before {
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.12) 0, transparent 20%),
    radial-gradient(circle at 84% 15%, rgba(255, 211, 123, 0.16) 0, transparent 18%),
    linear-gradient(90deg, rgba(14, 28, 52, 0.92) 0%, rgba(14, 28, 52, 0.76) 46%, rgba(14, 28, 52, 0.24) 100%);
  pointer-events: none;
}

.hero-panel::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.hero-visual img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  display: block;
}

.hero-form {
  position: relative;
  padding: clamp(1.2rem, 2vw, 1.8rem) 0.95rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #111926 0%, #1e2734 46%, #151c27 100%);
  border-left: 2px solid rgba(242, 180, 93, 0.3);
  width: 100%;
  max-width: none;
  margin-left: 0;
}

.form-headline {
  margin: 0 0 1.2rem;
  color: #f5f7fb;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.form-group label {
  color: rgba(241, 244, 249, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.005em;
}

.required {
  color: #f2b45d;
}

.form-group input {
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #f5f7fb;
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.form-group textarea {
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #f5f7fb;
  font-family: inherit;
  font-size: 0.9rem;
  resize: vertical;
  min-height: 82px;
  transition: all 0.25s ease;
}

.form-group input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: #f2b45d;
  box-shadow: 0 0 0 3px rgba(242, 180, 93, 0.15);
}

.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: #f2b45d;
  box-shadow: 0 0 0 3px rgba(242, 180, 93, 0.15);
}

.form-group input::placeholder {
  color: rgba(241, 244, 249, 0.35);
}

.form-group textarea::placeholder {
  color: rgba(241, 244, 249, 0.35);
}

.btn-submit {
  width: 100%;
  margin-top: 0.55rem;
  padding: 0.8rem 1.25rem;
  font-size: 0.95rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 0;
    min-height: calc(100vh - 76px);
    min-height: calc(100dvh - 76px);
  }

  .hero > .container {
    width: 100%;
    max-width: none;
    padding-inline: 0;
    margin-inline: 0;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 76px);
    min-height: calc(100dvh - 76px);
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }

  .hero-visual {
    order: -1;
    min-height: 280px;
    padding: 0;
    background: transparent;
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: none;
    display: block;
  }

  .hero-form {
    padding: clamp(1.15rem, 3.8vw, 1.6rem) 0.9rem;
    border-left: none;
    border-top: 2px solid rgba(242, 180, 93, 0.3);
    max-width: none;
    margin-left: 0;
    width: 100%;
  }

  .form-headline {
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }

  .form-group {
    margin-bottom: 0.8rem;
  }

  .form-group input {
    padding: 0.62rem 0.85rem;
    font-size: 0.88rem;
  }

  .form-group textarea {
    padding: 0.62rem 0.85rem;
    font-size: 0.88rem;
    min-height: 76px;
  }

  .btn-submit {
    margin-top: 0.8rem;
  }
}
