.quote-page {
  padding: 28px 0 90px;
}

.quote-hero {
  position: relative;
  padding: 40px 0 30px;
}

.quote-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 26%, rgba(177, 79, 255, 0.12), transparent 22%),
    radial-gradient(circle at 82% 22%, rgba(255, 79, 216, 0.08), transparent 18%),
    radial-gradient(circle at 52% 78%, rgba(134, 22, 228, 0.10), transparent 24%);
  pointer-events: none;
}

.quote-hero-inner {
  position: relative;
  z-index: 1;
  width: min(92%, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: start;
}

.quote-hero-content {
  padding-top: 22px;
}

.quote-hero-content h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -1.6px;
  color: #fff;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.18),
    0 0 24px rgba(184, 108, 255, 0.16);
}

.quote-lead {
  max-width: 58ch;
  margin: 0 0 28px;
  color: var(--text-secondary);
  font-size: 1.03rem;
  line-height: 1.8;
}

.quote-highlights {
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.quote-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(28, 16, 45, 0.84),
    rgba(10, 6, 18, 0.94)
  );
  border: 1px solid rgba(184, 108, 255, 0.14);
  box-shadow:
    0 0 14px rgba(134, 22, 228, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.quote-highlight i {
  width: 20px;
  height: 20px;
  color: #f5ebff;
  margin-top: 2px;
  flex-shrink: 0;
}

.quote-highlight strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 600;
}

.quote-highlight span {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}

.quote-card {
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(28, 16, 45, 0.94),
    rgba(10, 6, 18, 0.98)
  );
  border: 1px solid rgba(184, 108, 255, 0.16);
  box-shadow:
    0 0 18px rgba(134, 22, 228, 0.10),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.quote-card-header h2 {
  margin: 0 0 10px;
  font-size: 1.9rem;
  line-height: 1.1;
  color: #fff;
}

.quote-card-header p {
  margin: 0 0 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.quote-status {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.quote-status.success {
  background: rgba(0, 247, 165, 0.08);
  border: 1px solid rgba(0, 247, 165, 0.18);
  color: #bcffe7;
}

.quote-status.error {
  background: rgba(255, 95, 122, 0.08);
  border: 1px solid rgba(255, 95, 122, 0.18);
  color: #ffd1d8;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  color: #fff;
  font-size: 0.93rem;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(184, 108, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.5;
  outline: none;
  box-sizing: border-box;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9d88ba;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(184, 108, 255, 0.40);
  box-shadow: 0 0 0 4px rgba(134, 22, 228, 0.10);
  background: rgba(255, 255, 255, 0.04);
}

.form-field textarea {
  resize: vertical;
  min-height: 150px;
}

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

.service-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(184, 108, 255, 0.12);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.service-option:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 108, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.service-option input {
  width: 16px;
  height: 16px;
  accent-color: #b14fff;
  flex-shrink: 0;
}

.service-option span {
  color: #e8dcf7;
  font-size: 0.94rem;
  line-height: 1.45;
}

.quote-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 22px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8d2cff 0%, #ff4fd8 100%);
  box-shadow:
    0 0 14px rgba(177, 79, 255, 0.35),
    0 0 30px rgba(255, 79, 216, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.quote-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 18px rgba(177, 79, 255, 0.48),
    0 0 38px rgba(255, 79, 216, 0.24);
}

.quote-note {
  margin: -4px 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .quote-hero-inner {
    grid-template-columns: 1fr;
  }

  .quote-hero-content {
    padding-top: 0;
  }

  .quote-highlights {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .quote-page {
    padding: 14px 0 72px;
  }

  .quote-hero {
    padding: 28px 0 20px;
  }

  .quote-card {
    padding: 20px;
    border-radius: 22px;
  }

  .quote-grid,
  .service-options {
    grid-template-columns: 1fr;
  }

  .quote-hero-content h1 {
    font-size: clamp(2rem, 8vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -1px;
  }
}