.pro-page {
  min-height: 100vh;
  background: var(--brand-soft);
}

.pro-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(360px, 1.05fr);
  min-height: 100vh;
}

.pro-aside {
  position: relative;
  padding: 48px 56px;
  background: linear-gradient(165deg, #0f172a 0%, #1e293b 48%, #0f172a 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.pro-aside::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pro-aside-top {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.pro-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pro-back:hover {
  color: #ffffff;
}

.pro-back svg {
  width: 18px;
  height: 18px;
}

.pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pro-aside h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 14ch;
}

.pro-aside-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 38ch;
}

.pro-aside-list {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.pro-aside-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}

.pro-aside-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.92;
}

.pro-aside-foot {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
}

.pro-aside-foot svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pro-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.pro-card {
  width: min(480px, 100%);
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
}

.pro-mobile-brand {
  display: none;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.pro-mobile-brand h2 {
  font-size: 1.125rem;
  font-weight: 700;
}

.pro-mobile-brand p {
  font-size: 0.875rem;
  color: var(--muted);
}

.pro-card-head {
  margin-bottom: 24px;
}

.pro-card-head h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pro-card-head p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9375rem;
}

.pro-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 4px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--brand-soft);
}

.pro-tab {
  border: none;
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.pro-tab.is-active {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.pro-form-note {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.5;
  text-align: center;
}

.pro-field--business[hidden] {
  display: none;
}

.pro-form-meta[hidden] {
  display: none !important;
}

.pro-terms[hidden] {
  display: none;
}

@media (max-width: 960px) {
  .pro-layout {
    grid-template-columns: 1fr;
  }

  .pro-aside {
    display: none;
  }

  .pro-mobile-brand {
    display: flex;
  }

  .pro-main {
    padding: 24px 16px 40px;
  }

  .pro-card {
    padding: 28px 22px;
  }
}
