/* ============================================================
   Demo Request — public page (aligned with landing / NA)
   ============================================================ */

.dr-page {
  background: var(--color-4);
  min-height: 100vh;
}

/* ---------- Hero ---------- */
.dr-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--color-3);
  background-image: radial-gradient(120% 120% at 85% 0%, #0a2e57 0%, var(--color-3) 48%, #00132a 100%);
  padding: 150px 0 80px;
  border-radius: 0 0 48px 48px;
}

.dr-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.dr-hero__aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
}

.dr-hero__aurora--1 {
  width: 520px;
  height: 520px;
  top: -140px;
  left: -100px;
  background: radial-gradient(circle, rgba(255, 195, 0, 0.5), transparent 65%);
  animation: drFloat1 16s ease-in-out infinite;
}

.dr-hero__aurora--2 {
  width: 460px;
  height: 460px;
  bottom: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(0, 119, 204, 0.45), transparent 65%);
  animation: drFloat2 20s ease-in-out infinite;
}

.dr-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.5;
}

@keyframes drFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 40px) scale(1.06); }
}

@keyframes drFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, -30px) scale(1.08); }
}

.dr-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.dr-hero__content h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
}

.dr-hero__content h1 span {
  background: linear-gradient(120deg, var(--color-2), var(--color-accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dr-hero__content p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
}

.dr-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-2);
  background: rgba(255, 195, 0, 0.12);
  border: 1px solid rgba(255, 195, 0, 0.28);
  margin-bottom: 14px;
}

.dr-hero__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dr-hero__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.dr-hero__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-2);
  flex-shrink: 0;
}

.dr-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.dr-hero__card {
  width: 100%;
  max-width: 420px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.dr-hero__card-title {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.dr-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dr-hero__stat {
  text-align: center;
  padding: 16px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dr-hero__stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-2);
  margin-bottom: 4px;
}

.dr-hero__stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

/* ---------- Content layout ---------- */
.dr-content {
  padding: 0 0 90px;
  margin-top: -36px;
  position: relative;
  z-index: 3;
}

.dr-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}

/* ---------- Form card ---------- */
.dr-form-card {
  padding: 40px 36px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0, 53, 102, 0.08);
  box-shadow: 0 24px 60px rgba(0, 53, 102, 0.12);
}

.dr-form-card__head {
  margin-bottom: 28px;
}

.dr-form-card__head h2 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-1);
}

.dr-form-card__head p {
  margin: 0;
  font-size: 14px;
  color: #5b6b7c;
  line-height: 1.7;
}

.dr-alert {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 24px;
  font-size: 13px;
  line-height: 1.6;
}

.dr-alert--error {
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.2);
  color: #842029;
}

.dr-alert--error ul {
  margin: 8px 0 0;
  padding-right: 18px;
}

.dr-alert--success {
  background: rgba(40, 167, 69, 0.08);
  border: 1px solid rgba(40, 167, 69, 0.2);
  color: #0f5132;
}

.dr-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.dr-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dr-field--full {
  grid-column: 1 / -1;
}

.dr-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-1);
}

.dr-field label span {
  color: var(--color-error);
}

.dr-field input,
.dr-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0, 53, 102, 0.15);
  border-radius: 14px;
  font-size: 14px;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  font-family: inherit;
}

.dr-field input:focus,
.dr-field select:focus {
  outline: none;
  border-color: var(--color-1);
  box-shadow: 0 0 0 3px rgba(0, 53, 102, 0.08);
}

.dr-field--error input,
.dr-field--error select {
  border-color: var(--color-error);
}

.dr-field__error {
  font-size: 12px;
  color: var(--color-error);
}

.dr-terms {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  cursor: pointer;
}

.dr-terms input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-1);
  flex-shrink: 0;
}

.dr-terms label {
  font-size: 13px;
  color: #5b6b7c;
  line-height: 1.6;
  cursor: pointer;
}

.dr-terms label span {
  color: var(--color-error);
}

.dr-submit {
  grid-column: 1 / -1;
  all: unset;
  box-sizing: border-box;
  width: 100%;
  height: 56px;
  margin-top: 8px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-1) 0%, var(--color-3) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 300ms ease;
  box-shadow: 0 8px 24px rgba(0, 53, 102, 0.25);
}

.dr-submit:hover {
  background: linear-gradient(135deg, var(--color-2) 0%, var(--color-accent-light) 100%);
  color: var(--color-3);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 195, 0, 0.35);
}

.dr-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* ---------- Perks sidebar ---------- */
.dr-perks {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dr-perk-card {
  padding: 24px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 53, 102, 0.08);
  box-shadow: 0 12px 32px rgba(0, 53, 102, 0.08);
}

.dr-perk-card h3 {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 800;
  color: var(--color-1);
}

.dr-perk-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dr-perk-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #5b6b7c;
  line-height: 1.6;
}

.dr-perk-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-2);
}

.dr-perk-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-1);
  background: rgba(0, 53, 102, 0.04);
  border: 1px solid rgba(0, 53, 102, 0.1);
  text-decoration: none;
  transition: all 250ms ease;
}

.dr-perk-link:hover {
  background: rgba(255, 195, 0, 0.1);
  border-color: rgba(255, 195, 0, 0.35);
  color: var(--color-1);
}

/* ---------- Responsive ---------- */
@media screen and (max-width: 1100px) {
  .dr-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dr-hero__content p {
    margin-left: auto;
    margin-right: auto;
  }

  .dr-hero__list {
    justify-content: center;
  }

  .dr-layout {
    grid-template-columns: 1fr;
  }

  .dr-perks {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .dr-hero {
    padding: 130px 0 60px;
    border-radius: 0 0 32px 32px;
  }

  .dr-fields {
    grid-template-columns: 1fr;
  }

  .dr-form-card {
    padding: 28px 20px;
  }

  .dr-perks {
    grid-template-columns: 1fr;
  }

  .dr-hero__stats {
    grid-template-columns: 1fr;
  }
}
