.section {
  padding: 32px 0 40px;
}

.panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 30px;
  padding: 26px;
  overflow: hidden;
  color-scheme: light;
  border: 1px solid rgba(136, 164, 203, 0.22);
  border-radius: 36px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.96), transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(96, 165, 250, 0.1), transparent 20%),
    linear-gradient(180deg, rgba(245, 249, 255, 0.99), rgba(236, 243, 251, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 20px 48px rgba(16, 35, 63, 0.08);
}

.panel::before {
  content: "";
  position: absolute;
  inset: auto auto 12% 38%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 68%);
  filter: blur(6px);
  pointer-events: none;
}

.left {
  position: relative;
  display: grid;
  gap: 32px;
  align-content: start;
  min-width: 0;
  padding: 12px 6px 8px;
}

.left::after {
  content: "";
  position: absolute;
  top: 102px;
  right: 6px;
  width: min(42%, 280px);
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px dashed rgba(104, 149, 219, 0.28);
  opacity: 0.75;
  pointer-events: none;
}

.intro {
  display: grid;
  gap: 16px;
  max-width: 39rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 0;
  color: #4d78bf;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: #3772ff;
}

.intro h1 {
  margin: 0;
  max-width: 11ch;
  color: #132a48;
  font-size: clamp(2.9rem, 5vw, 4.5rem);
  font-weight: 750;
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.intro p {
  margin: 0;
  max-width: 32rem;
  color: #607896;
  font-size: 1.04rem;
  line-height: 1.62;
}

.block {
  display: grid;
  gap: 16px;
}

.blockTitle {
  margin: 0;
  color: #132a48;
  font-size: 1.34rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.optionList {
  display: grid;
  gap: 12px;
}

.optionCard {
  position: relative;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(136, 164, 203, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.94)),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 26px rgba(16, 35, 63, 0.05);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.optionCard:hover {
  transform: translateY(-1px);
  border-color: rgba(66, 119, 236, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 16px 28px rgba(16, 35, 63, 0.08);
}

.optionCardActive {
  border-color: rgba(55, 114, 255, 0.54);
  box-shadow:
    inset 0 0 0 1px rgba(55, 114, 255, 0.14),
    0 16px 30px rgba(28, 73, 145, 0.11);
}

.optionInput {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.optionRadio {
  position: relative;
  display: inline-flex;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(80, 99, 128, 0.72);
  border-radius: 999px;
  background: #ffffff;
}

.optionCardActive .optionRadio {
  border-color: #3772ff;
}

.optionCardActive .optionRadio::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  background: #3772ff;
}

.optionIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(236, 244, 255, 0.98), rgba(226, 238, 255, 0.94));
  color: #2563eb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.optionCopy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.optionCopy strong {
  color: #132a48;
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.optionCopy span {
  color: #607896;
  font-size: 0.98rem;
  line-height: 1.54;
}

.optionTag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(55, 114, 255, 0.1);
  color: #3772ff;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.network {
  position: absolute;
  top: 112px;
  right: 14px;
  width: min(38%, 250px);
  min-width: 180px;
  aspect-ratio: 0.9;
  pointer-events: none;
}

.networkPath {
  position: absolute;
  inset: 0;
  opacity: 0.9;
}

.networkPath::before,
.networkPath::after,
.networkPath span::before,
.networkPath span::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(88, 132, 215, 0.34);
  border-radius: 999px;
}

.networkPath::before {
  top: 8%;
  right: 24%;
  width: 34px;
  height: 68px;
  border-left: 0;
  border-bottom: 0;
}

.networkPath::after {
  top: 26%;
  left: 18%;
  width: 132px;
  height: 94px;
  border-right: 0;
  border-bottom: 0;
}

.networkPath span {
  position: absolute;
  inset: 0;
}

.networkPath span::before {
  right: 12%;
  bottom: 20%;
  width: 116px;
  height: 112px;
  border-top: 0;
  border-left: 0;
}

.networkPath span::after {
  left: 26%;
  bottom: 10%;
  width: 62px;
  height: 80px;
  border-top: 0;
  border-right: 0;
}

.node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(84, 125, 201, 0.24);
  background: rgba(255, 255, 255, 0.92);
  color: #4a7de9;
  box-shadow: 0 8px 18px rgba(16, 35, 63, 0.08);
}

.nodeLarge {
  width: 64px;
  height: 64px;
  border-color: rgba(84, 125, 201, 0.2);
  color: #3772ff;
}

.nodeOne {
  top: 0;
  right: 20%;
}

.nodeTwo {
  top: 44%;
  left: 10%;
}

.nodeThree {
  right: 0;
  bottom: 20%;
}

.nodeLargeCenter {
  left: 36%;
  bottom: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stepCard {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 0;
  padding: 0 18px 0 0;
  border-right: 1px solid rgba(136, 164, 203, 0.18);
}

.stepCard:last-child {
  border-right: 0;
  padding-right: 0;
}

.stepIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(239, 245, 255, 0.98), rgba(229, 238, 255, 0.94));
  color: #2563eb;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 10px 22px rgba(16, 35, 63, 0.06);
}

.stepCard strong {
  color: #132a48;
  font-size: 1rem;
  line-height: 1.32;
  letter-spacing: -0.03em;
}

.stepCard p {
  margin: 0;
  color: #607896;
  font-size: 0.92rem;
  line-height: 1.55;
}

.bottomRail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(136, 164, 203, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.bottomItem {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-right: 1px solid rgba(136, 164, 203, 0.14);
}

.bottomItem:last-child {
  border-right: 0;
}

.bottomIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(234, 242, 255, 0.96);
  color: #2563eb;
}

.bottomItem span {
  color: #29496f;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.45;
}

.right {
  display: flex;
  align-items: stretch;
}

.formCard {
  width: 100%;
  display: grid;
  gap: 24px;
  padding: 32px 34px 28px;
  border: 1px solid rgba(136, 164, 203, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 249, 255, 0.94)),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 18px 36px rgba(16, 35, 63, 0.08);
}

.formHeader {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.formHeaderIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(239, 245, 255, 0.98), rgba(229, 238, 255, 0.94));
  color: #2563eb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.formHeaderCopy {
  display: grid;
  gap: 10px;
}

.formHeaderCopy h2 {
  margin: 0;
  color: #132a48;
  font-size: clamp(2.2rem, 3.1vw, 3.3rem);
  font-weight: 750;
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.formHeaderCopy p {
  margin: 0;
  color: #607896;
  font-size: 0.98rem;
  line-height: 1.58;
}

.form {
  display: grid;
  gap: 16px;
}

.formGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field,
.textarea {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(136, 164, 203, 0.22);
  border-radius: 18px;
  background: rgba(248, 251, 255, 0.96);
  color: #132a48;
  font-size: 0.98rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.field::placeholder,
.textarea::placeholder {
  color: #8497ae;
}

.field:focus,
.textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: rgba(55, 114, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(55, 114, 255, 0.1);
}

.fieldFull {
  grid-column: 1 / -1;
}

.textarea {
  min-height: 158px;
  padding: 16px 18px;
  resize: vertical;
}

.noticeRow {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid rgba(136, 164, 203, 0.16);
  border-radius: 18px;
  background: rgba(245, 249, 255, 0.94);
}

.noticeRow p {
  margin: 0;
  color: #607896;
  font-size: 0.9rem;
  line-height: 1.5;
}

.noticeRow a {
  color: #2563eb;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 58px;
  border-radius: 18px;
  font-size: 1rem;
  box-shadow: 0 14px 30px rgba(18, 54, 117, 0.18);
}

.policy {
  margin: 0;
  color: #607896;
  font-size: 0.9rem;
  line-height: 1.56;
  text-align: center;
}

.policy strong {
  color: #2563eb;
}

.status {
  min-height: 1.5rem;
  margin: 0;
  color: #607896;
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
}

.statusError {
  color: #c2410c;
}

.statusSuccess {
  color: #0f7a4f;
}

@media (max-width: 1180px) {
  .panel {
    grid-template-columns: 1fr;
  }

  .left::after,
  .network {
    display: none;
  }
}

@media (max-width: 900px) {
  .steps,
  .bottomRail,
  .formGrid {
    grid-template-columns: 1fr;
  }

  .stepCard,
  .bottomItem {
    border-right: 0;
    padding-right: 0;
  }

  .bottomItem {
    border-bottom: 1px solid rgba(136, 164, 203, 0.14);
  }

  .bottomItem:last-child {
    border-bottom: 0;
  }

  .optionCard {
    grid-template-columns: auto auto minmax(0, 1fr);
  }

  .optionTag {
    grid-column: 3;
    justify-self: start;
    margin-top: -4px;
  }

  .noticeRow {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .noticeRow a {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 18px 0 28px;
  }

  .panel {
    padding: 18px;
    gap: 20px;
    border-radius: 28px;
  }

  .left,
  .formCard {
    padding: 0;
  }

  .intro h1 {
    max-width: none;
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .blockTitle {
    font-size: 1.14rem;
  }

  .optionCard {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 16px;
  }

  .optionRadio {
    grid-row: 1 / span 2;
    align-self: center;
  }

  .optionIcon {
    width: 52px;
    height: 52px;
  }

  .optionCopy {
    grid-column: 2;
  }

  .optionTag {
    grid-column: 2;
  }

  .formHeader {
    grid-template-columns: 1fr;
  }

  .formHeaderCopy h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .submit {
    min-height: 54px;
  }
}
