.pro-page {
  min-height: 100vh;
  min-height: 100dvh;
}

.pro-shell {
  width: min(980px, 100%);
  gap: clamp(14px, 2.2vw, 22px);
}

.pro-hero {
  gap: 8px;
}

.pro-home-link {
  text-decoration: none;
}

.pro-form-panel,
.pro-overview-panel {
  padding: clamp(18px, 3vw, 28px);
}

.pro-form-panel {
  display: grid;
  gap: 18px;
}

.pro-form-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(170deg, rgba(255, 251, 247, 0.988), rgba(246, 241, 255, 0.955));
  border: 1px solid rgba(231, 215, 255, 0.52);
  box-shadow:
    0 30px 58px rgba(21, 8, 34, 0.15),
    0 12px 26px rgba(108, 70, 181, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.pro-overview-panel {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(236, 219, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pro-kicker,
.pro-form-kicker {
  margin: 0;
  font-size: var(--text-2xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a54df;
}

.pro-overview-head {
  display: grid;
  gap: 8px;
}

.pro-form-head {
  display: grid;
  gap: 6px;
}

.pro-title {
  margin: 0;
  max-width: 24ch;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 1.1;
  color: #fff8ff;
}

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

.pro-feature-card {
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.pro-feature-card h3 {
  margin: 0 0 7px;
  font-size: var(--text-md);
  color: #fff8ff;
}

.pro-feature-card p {
  margin: 0;
  color: rgba(255, 244, 255, 0.76);
  font-size: var(--text-sm);
}

.pro-form-title {
  margin: 0;
  font-size: clamp(1.48rem, 2.8vw, 1.98rem);
  line-height: 1.08;
  color: #27163a;
}

.pro-request-form {
  display: grid;
  gap: 16px;
  position: relative;
}

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

.pro-field-wide {
  grid-column: 1 / -1;
}

.pro-field {
  display: grid;
  gap: 7px;
}

.pro-field-label {
  font-size: var(--text-xs);
  font-weight: 800;
  color: #68482b;
  letter-spacing: 0.02em;
}

.pro-input,
.pro-textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(178, 136, 85, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(255, 248, 243, 0.98));
  color: #25160b;
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.pro-input:focus,
.pro-textarea:focus {
  border-color: rgba(140, 77, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(140, 77, 255, 0.11);
}

.pro-input:read-only,
.pro-textarea:read-only {
  cursor: default;
  border-color: rgba(177, 159, 206, 0.3);
  background: linear-gradient(180deg, rgba(251, 249, 255, 0.98), rgba(245, 241, 252, 0.96));
  color: #5d5470;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.pro-textarea {
  min-height: 196px;
  resize: vertical;
  line-height: 1.58;
  caret-color: #7040d9;
}

.pro-input::placeholder,
.pro-textarea::placeholder {
  color: #988fa7;
  font-weight: 500;
  opacity: 1;
}

.pro-textarea::placeholder {
  color: #8e86a0;
  line-height: 1.68;
}

.pro-textarea-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pro-counter {
  font-size: var(--text-2xs);
  font-weight: 800;
  color: #7e5d95;
}

.pro-form-hint {
  margin: -2px 0 0;
  color: #746986;
  font-size: var(--text-xs);
  line-height: 1.55;
  max-width: 68ch;
}

.pro-form-message {
  margin: 0;
  padding: 11px 13px;
  border-radius: 14px;
  font-size: var(--text-sm);
  font-weight: 700;
}

.pro-form-message.is-error {
  border: 1px solid rgba(175, 62, 62, 0.18);
  background: rgba(255, 239, 239, 0.95);
  color: #8c2323;
}

.pro-form-message.is-success {
  border: 1px solid rgba(61, 127, 88, 0.18);
  background: rgba(239, 250, 243, 0.96);
  color: #275d39;
}

.pro-form-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pro-submit-btn,
.pro-secondary-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pro-submit-btn {
  border: 1px solid rgba(112, 76, 209, 0.28);
  background: linear-gradient(180deg, rgba(145, 92, 255, 0.95), rgba(103, 64, 217, 0.95));
  color: #fff;
  box-shadow: 0 16px 28px rgba(74, 33, 145, 0.24);
}

.pro-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(74, 33, 145, 0.28);
}

.pro-submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.78;
  transform: none;
}

.pro-submit-btn.is-complete:disabled {
  opacity: 1;
}

.pro-submit-btn.is-complete {
  border-color: rgba(63, 143, 96, 0.26);
  background: linear-gradient(180deg, rgba(88, 176, 121, 0.96), rgba(56, 138, 90, 0.96));
  box-shadow: 0 14px 24px rgba(33, 109, 63, 0.2);
}

.pro-secondary-btn {
  border: 1px solid rgba(95, 73, 132, 0.2);
  background: rgba(255, 255, 255, 0.84);
  color: #3f2a59;
}

.pro-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  left: -9999px;
}

html[dir="rtl"] .pro-textarea-head,
html[dir="rtl"] .pro-form-actions {
  flex-direction: row-reverse;
}

@media (max-width: 820px) {
  .pro-title {
    max-width: none;
  }

  .pro-feature-grid,
  .pro-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .pro-topbar .hero-actions {
    width: 100%;
  }

  .pro-topbar .lang-switch,
  .pro-topbar .pro-home-link {
    flex: 1 1 auto;
  }

  .pro-form-actions > * {
    width: 100%;
  }

  .pro-submit-btn,
  .pro-secondary-btn {
    width: 100%;
  }
}

@media (hover: none) and (pointer: coarse) {
  .pro-input,
  .pro-textarea {
    font-size: 16px;
  }
}
