.module-page .module-hero {
  padding-top: 74px;
  padding-bottom: 42px;
}

.module-page .module-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 44px;
  align-items: center;
}

.module-page .module-kicker {
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.module-page h1 {
  max-width: 760px;
  margin-bottom: 18px;
}

.module-page .module-lead {
  color: #7ee8ff;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.55;
}

.module-page .module-desc {
  max-width: 760px;
  color: var(--text-sub);
  font-size: 17px;
  line-height: 1.9;
}

.module-page .module-orbit {
  position: relative;
  height: 330px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 12px;
  background: radial-gradient(circle at 50% 42%, rgba(24, 200, 255, 0.22), transparent 6rem), linear-gradient(145deg, rgba(10, 25, 50, 0.82), rgba(3, 9, 22, 0.88));
  box-shadow: inset 0 0 34px rgba(24, 200, 255, 0.08);
  overflow: hidden;
}

.module-page .module-orbit::before {
  display: none;
}

.module-page .module-orbit .module-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 96px;
  height: 96px;
  transform: translate(-50%, -50%);
}

.module-page .module-orbit .module-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.module-section {
  padding: 42px 0;
}

.module-card-panel {
  padding: 32px;
  background: radial-gradient(circle at 92% 14%, rgba(24, 200, 255, 0.09), transparent 22rem), rgba(10, 25, 50, 0.78);
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 12px;
  box-shadow: inset 0 0 30px rgba(24, 200, 255, 0.05);
}

.module-section-title {
  position: relative;
  margin-bottom: 24px;
  padding-left: 20px;
  font-size: clamp(25px, 3vw, 34px);
}

.module-section-title::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 5px;
  content: "";
  background: linear-gradient(180deg, var(--primary), var(--purple));
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(24, 200, 255, 0.7);
}

.module-copy {
  color: var(--text-sub);
  line-height: 1.95;
}

.module-copy p:last-child {
  margin-bottom: 0;
}

.module-highlight-grid,
.module-content-grid,
.module-related-grid {
  display: grid;
  gap: 20px;
}

.module-highlight-grid {
  grid-template-columns: repeat(4, 1fr);
}

.module-highlight-card,
.module-content-card,
.module-info-card,
.module-faq-card,
.module-related-card {
  background: rgba(5, 16, 36, 0.72);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 8px;
  box-shadow: inset 0 0 24px rgba(24, 200, 255, 0.04);
}

.module-highlight-card {
  min-height: 156px;
  padding: 24px;
}

.module-highlight-card h2,
.module-content-card h3,
.module-info-card h2,
.module-faq-card h3,
.module-related-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.module-highlight-card p,
.module-content-card li,
.module-info-card li,
.module-faq-card p,
.module-related-card p {
  color: var(--text-sub);
  line-height: 1.7;
}

.module-content-grid {
  grid-template-columns: repeat(2, 1fr);
}

.module-content-card,
.module-info-card,
.module-faq-card {
  padding: 26px;
}

.module-content-card h3 a,
.module-content-card li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.module-content-card h3 a:hover,
.module-content-card h3 a:focus {
  color: #18c8ff;
  text-shadow: 0 0 10px rgba(24, 200, 255, 0.5);
}

.module-content-card li a:hover,
.module-content-card li a:focus {
  color: #18c8ff;
  padding-left: 5px;
  text-shadow: 0 0 8px rgba(24, 200, 255, 0.4);
}

.module-content-card ul,
.module-info-card ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0;
}

.module-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.module-relation {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.module-relation p {
  margin-bottom: 0;
}

.module-faq-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.module-related-grid {
  grid-template-columns: repeat(4, 1fr);
}

.module-related-card {
  display: block;
  min-height: 132px;
  padding: 22px;
}

.module-related-card:hover,
.module-highlight-card:hover,
.module-info-card:hover,
.module-faq-card:hover {
  border-color: rgba(34, 211, 238, 0.65);
  box-shadow: 0 18px 45px rgba(0, 180, 255, 0.16);
  transform: translateY(-5px);
}

.module-contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.module-contact-form label {
  display: grid;
  gap: 8px;
  color: #dcecff;
  font-weight: 700;
}

.module-contact-form input,
.module-contact-form textarea,
.module-contact-form select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(5, 16, 36, 0.82);
  border: 1px solid rgba(34, 211, 238, 0.26);
  border-radius: 8px;
  font: inherit;
}

.module-contact-form textarea,
.module-contact-form .wide {
  grid-column: 1 / -1;
}

.module-contact-form button {
  min-height: 46px;
  color: #fff;
  background: linear-gradient(90deg, #18c8ff, #8b5cf6, #ec4899);
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .module-page .module-hero-grid,
  .module-relation {
    grid-template-columns: 1fr;
  }

  .module-highlight-grid,
  .module-info-grid,
  .module-related-grid,
  .module-faq-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .module-page .module-hero {
    padding-top: 42px;
  }

  .module-page .module-orbit {
    display: none;
  }

  .module-card-panel {
    padding: 22px;
  }

  .module-highlight-grid,
  .module-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .module-content-grid,
  .module-info-grid,
  .module-faq-list,
  .module-contact-form {
    grid-template-columns: 1fr;
  }

  .module-contact-form textarea,
  .module-contact-form .wide {
    grid-column: auto;
  }
}
