.custom-orders-page .site-header {
  background: rgba(2, 7, 18, .72);
}

.custom-order-hero {
  position: relative;
  padding: 100px 0 72px;
  border-bottom: 1px solid rgba(160, 130, 255, .14);
  overflow: hidden;
}

.custom-order-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 40%, rgba(124, 60, 255, .28), transparent 34%),
    linear-gradient(90deg, rgba(2, 7, 18, .94) 0%, rgba(2, 7, 18, .72) 42%, rgba(2, 7, 18, .18) 100%);
  pointer-events: none;
}

.custom-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr);
  gap: 58px;
  align-items: center;
}

.custom-kicker {
  color: var(--purple-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.custom-hero-copy h1 {
  margin: 24px 0 22px;
  font-size: clamp(44px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.custom-hero-copy h1 span {
  display: block;
  color: var(--purple-2);
}

.custom-hero-copy p {
  max-width: 480px;
  margin: 0 0 30px;
  color: rgba(247, 248, 255, .78);
  font-size: 17px;
  line-height: 1.8;
}

.custom-hero-visual {
  position: relative;
  min-height: 350px;
}

.desk-glow {
  position: absolute;
  inset: auto 0 16px;
  height: 130px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124, 60, 255, .35), transparent 66%);
  filter: blur(16px);
}

.code-monitor {
  position: absolute;
  top: 10px;
  right: 28px;
  width: min(640px, 92%);
  height: 250px;
  padding: 18px;
  border-radius: 18px;
  transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
  background:
    linear-gradient(135deg, rgba(124, 60, 255, .18), transparent),
    rgba(4, 11, 26, .86);
  border: 1px solid rgba(181, 76, 255, .38);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .42), 0 0 55px rgba(124, 60, 255, .28);
}

.monitor-top {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.monitor-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(181, 76, 255, .7);
}

.monitor-layout {
  display: grid;
  grid-template-columns: 80px 1fr 118px;
  gap: 16px;
  height: calc(100% - 24px);
}

.monitor-sidebar,
.monitor-code,
.monitor-panel {
  padding: 12px;
  border-radius: 12px;
  background: rgba(2, 8, 20, .62);
  border: 1px solid rgba(255, 255, 255, .06);
}

.monitor-sidebar,
.monitor-panel {
  display: grid;
  align-content: start;
  gap: 10px;
}

.monitor-sidebar span,
.monitor-panel span,
.monitor-code span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(155, 168, 199, .22);
}

.monitor-code {
  display: grid;
  align-content: start;
  gap: 9px;
}

.monitor-code span {
  width: var(--w);
  background: linear-gradient(90deg, rgba(0, 213, 255, .75), rgba(181, 76, 255, .65));
}

.monitor-code span:nth-child(3n + 2) {
  margin-left: 14px;
}

.monitor-code span:nth-child(3n) {
  margin-left: 28px;
}

.floating-code-icon {
  position: absolute;
  top: 76px;
  right: 0;
  width: 96px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #bda7ff;
  background: rgba(124, 60, 255, .2);
  border: 2px solid rgba(181, 76, 255, .62);
  box-shadow: 0 0 44px rgba(124, 60, 255, .45);
}

.floating-code-icon svg {
  width: 52px;
  height: 52px;
}

.keyboard-art,
.mouse-art {
  position: absolute;
  bottom: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(124, 60, 255, .3), rgba(2, 8, 20, .9));
  border: 1px solid rgba(181, 76, 255, .28);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .38);
}

.keyboard-art {
  right: 250px;
  width: 250px;
  height: 62px;
  transform: skewX(-16deg);
}

.mouse-art {
  right: 80px;
  width: 118px;
  height: 76px;
  border-radius: 50% 48% 45% 54%;
}

.custom-section {
  padding: 56px 0 18px;
}

.custom-section-tight {
  padding-top: 34px;
}

.custom-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 88px;
  margin-top: 28px;
}

.custom-process-grid::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  top: 84px;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(155, 168, 199, .42) 0 5px, transparent 5px 12px);
}

.custom-process-card,
.custom-benefit-card,
.include-card,
.response-card,
.custom-faq-item {
  position: relative;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), transparent),
    rgba(7, 15, 32, .74);
  border: 1px solid rgba(160, 130, 255, .15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.custom-process-card {
  min-height: 170px;
  padding: 34px 22px 24px;
  text-align: center;
}

.process-badge {
  position: absolute;
  top: -15px;
  left: -2px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, #9d63ff, #5c20e3);
  box-shadow: 0 0 24px rgba(124, 60, 255, .48);
}

.custom-card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--purple-2);
  filter: drop-shadow(0 0 16px rgba(124, 60, 255, .48));
}

.custom-card-icon svg {
  width: 48px;
  height: 48px;
}

.custom-process-card h3,
.custom-benefit-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.custom-process-card p,
.custom-benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.custom-benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.custom-benefit-card {
  min-height: 170px;
  padding: 26px 18px;
  text-align: center;
}

.custom-form-section {
  padding: 42px 0 24px;
}

.custom-order-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 54px;
  padding: 30px 28px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 0% 0%, rgba(124, 60, 255, .24), transparent 32%),
    rgba(5, 13, 29, .82);
  border: 1px solid rgba(181, 76, 255, .34);
  box-shadow: 0 0 42px rgba(124, 60, 255, .12);
}

.custom-request-form h2 {
  margin: 12px 0 24px;
  font-size: 30px;
  letter-spacing: -.035em;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.custom-request-form label,
.full-field {
  display: grid;
  gap: 9px;
}

.custom-request-form label span {
  color: rgba(247, 248, 255, .88);
  font-size: 12px;
  font-weight: 850;
}

.custom-request-form input,
.custom-request-form select,
.custom-request-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 7px;
  color: #fff;
  background: rgba(3, 10, 24, .72);
  border: 1px solid rgba(255, 255, 255, .1);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.custom-request-form textarea {
  min-height: 112px;
  padding-top: 13px;
  resize: vertical;
}

.custom-request-form input:focus,
.custom-request-form select:focus,
.custom-request-form textarea:focus {
  border-color: rgba(181, 76, 255, .52);
  box-shadow: 0 0 0 3px rgba(124, 60, 255, .14);
  background: rgba(5, 13, 29, .9);
}

.full-field {
  margin: 18px 0;
}

.custom-form-status {
  margin: 0 0 18px;
  padding: 13px 15px;
  border-radius: 8px;
  color: rgba(247, 248, 255, .9);
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(4, 11, 26, .7);
}

.custom-form-status.success {
  border-color: rgba(52, 211, 153, .34);
  background: rgba(16, 185, 129, .12);
}

.custom-form-status.error {
  border-color: rgba(248, 113, 113, .34);
  background: rgba(239, 68, 68, .12);
}

.custom-form-aside {
  display: grid;
  gap: 18px;
}

.include-card,
.response-card {
  padding: 24px;
}

.include-card h3 {
  margin: 0 0 18px;
  font-size: 18px;
}

.include-card p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 13px;
  color: rgba(247, 248, 255, .78);
  font-size: 13px;
}

.include-card svg {
  width: 17px;
  height: 17px;
  color: var(--purple-2);
}

.response-card > div:first-child {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--purple-2);
}

.response-card p {
  margin: 10px 0 20px;
  color: rgba(247, 248, 255, .8);
  line-height: 1.7;
}

.response-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.response-actions .btn {
  padding: 0 14px;
}

.custom-faq-section {
  padding-bottom: 64px;
}

.custom-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
}

.custom-faq-item {
  overflow: hidden;
}

.custom-faq-item summary {
  min-height: 52px;
  display: grid;
  grid-template-columns: 22px 1fr 18px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  color: #fff;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

.custom-faq-item summary::-webkit-details-marker {
  display: none;
}

.custom-faq-item summary svg:first-child {
  color: var(--purple-2);
}

.custom-faq-item summary svg:last-child {
  color: var(--muted);
  transition: transform .2s ease;
}

.custom-faq-item[open] summary svg:last-child {
  transform: rotate(180deg);
}

.custom-faq-item p {
  margin: 0;
  padding: 0 18px 18px 52px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .custom-hero-grid,
  .custom-order-panel {
    grid-template-columns: 1fr;
  }

  .custom-process-grid,
  .custom-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .custom-process-grid::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .custom-order-hero {
    padding-top: 74px;
  }

  .custom-hero-grid,
  .custom-process-grid,
  .custom-benefit-grid,
  .custom-faq-grid,
  .form-grid,
  .response-actions {
    grid-template-columns: 1fr;
  }

  .custom-hero-visual {
    min-height: 290px;
  }

  .code-monitor {
    right: 0;
    width: 100%;
  }

  .monitor-layout {
    grid-template-columns: 56px 1fr;
  }

  .monitor-panel {
    display: none;
  }

  .floating-code-icon {
    width: 72px;
    height: 64px;
  }

  .keyboard-art {
    right: 96px;
    width: 180px;
  }

  .custom-order-panel {
    padding: 22px 16px;
  }
}
