/* PYTHON ULTRA — Enterprise Pro Layer v3 */

:root {
  --pro-bg: #030508;
  --pro-surface: rgba(12, 18, 30, 0.72);
  --pro-border: rgba(255, 255, 255, 0.08);
  --pro-border-strong: rgba(0, 212, 255, 0.22);
  --pro-text: #f4f8fc;
  --pro-muted: #94a8bc;
  --pro-accent: #00d4ff;
  --pro-accent-2: #24f0b6;
  --pro-danger: #ff4757;
  --pro-radius: 14px;
  --pro-radius-lg: 20px;
  --pro-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  --pro-font: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --pro-mono: "JetBrains Mono", "Cascadia Mono", monospace;
}

body {
  font-family: var(--pro-font);
  background: var(--pro-bg);
  color: var(--pro-text);
  -webkit-font-smoothing: antialiased;
}

body::before {
  background:
    radial-gradient(ellipse 70% 55% at 10% -5%, rgba(0, 212, 255, 0.11), transparent 60%),
    radial-gradient(ellipse 50% 40% at 95% 0%, rgba(36, 240, 182, 0.07), transparent 55%),
    linear-gradient(180deg, #030508 0%, #060a12 100%);
}

body::after { opacity: 0.22; }

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.text-gradient {
  background: linear-gradient(135deg, #fff 0%, var(--pro-accent) 45%, var(--pro-accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Header */
.header-pro {
  background: rgba(3, 5, 8, 0.82);
  border-bottom: 1px solid var(--pro-border);
  backdrop-filter: blur(20px) saturate(160%);
}

.header-pro .brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.2), rgba(36, 240, 182, 0.12));
  border: 1px solid var(--pro-border-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: var(--pro-accent);
}

.header-pro .brand-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.header-pro .brand-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pro-muted);
}

.nav-pro a.is-active:not(.nav-action) {
  color: var(--pro-text);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.15);
}

.nav-pro .nav-action {
  background: linear-gradient(135deg, var(--pro-accent), #0099cc);
  border: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 28px rgba(0, 212, 255, 0.25);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border: 1px solid var(--pro-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--pro-text);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-pro {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 16px 20px 20px;
    background: rgba(3, 5, 8, 0.96);
    border-bottom: 1px solid var(--pro-border);
    display: none;
  }

  .nav-pro.is-open { display: flex; }

  .header-inner { position: relative; flex-wrap: wrap; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary,
.btn.primary {
  background: linear-gradient(135deg, var(--pro-accent), #0099cc);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 212, 255, 0.28);
}

.btn-primary:hover,
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 212, 255, 0.35);
}

.btn-outline,
.btn.secondary {
  border: 1px solid var(--pro-border-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--pro-text);
}

.btn-outline:hover,
.btn.secondary:hover {
  background: rgba(0, 212, 255, 0.08);
  transform: translateY(-1px);
}

.page-verify .verify-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.page-verify .verify-card {
  max-width: 480px;
  width: 100%;
  padding: 40px;
  text-align: center;
}

.page-verify .verify-card h1 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 12px 0;
}

.page-verify .verify-card .btn {
  margin-top: 24px;
  width: 100%;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: transparent;
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }

.btn-lg { min-height: 54px; padding: 0 32px; }
.btn-sm { min-height: 40px; padding: 0 18px; font-size: 0.875rem; }

.label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Hero Pro */
.hero-pro {
  position: relative;
  padding: 72px 0 48px;
  overflow: hidden;
}

.hero-pro-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 500px at 70% 30%, rgba(0, 212, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-pro-inner {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-pro-inner { grid-template-columns: 1fr 1.05fr; gap: 56px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--pro-border);
  background: var(--pro-surface);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pro-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pro-accent-2);
  box-shadow: 0 0 12px var(--pro-accent-2);
}

.hero-pro-copy h1 {
  max-width: 640px;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0;
}

.hero-pro-lead {
  margin: 20px 0 0;
  max-width: 520px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--pro-muted);
}

.hero-pro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-pro-checklist {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.hero-pro-checklist li {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--pro-muted);
  padding-left: 18px;
  position: relative;
}

.hero-pro-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pro-accent-2);
  opacity: 0.9;
}

/* Dashboard shell */
.hero-pro-visual { position: relative; }

.dashboard-shell {
  border-radius: var(--pro-radius-lg);
  border: 1px solid var(--pro-border-strong);
  background: linear-gradient(180deg, rgba(14, 22, 36, 0.95), rgba(6, 10, 18, 0.98));
  box-shadow: var(--pro-shadow), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--pro-border);
  background: rgba(0, 0, 0, 0.25);
}

.window-dots { display: flex; gap: 6px; }
.window-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
  font-style: normal;
}
.window-dots i:nth-child(2) { background: #febc2e; }
.window-dots i:nth-child(3) { background: #28c840; }

.dashboard-title {
  flex: 1;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pro-muted);
  font-family: var(--pro-mono);
}

.dashboard-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--pro-accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 280px;
}

.dashboard-nav {
  padding: 16px 12px;
  border-right: 1px solid var(--pro-border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dashboard-nav span {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pro-muted);
}

.dashboard-nav .is-on {
  background: rgba(0, 212, 255, 0.12);
  color: var(--pro-text);
  border-left: 2px solid var(--pro-accent);
}

.dashboard-main { padding: 20px; }

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.kpi {
  padding: 14px 12px;
  border-radius: 12px;
  border: 1px solid var(--pro-border);
  background: rgba(0, 0, 0, 0.2);
}

.kpi small {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pro-muted);
  margin-bottom: 6px;
}

.kpi strong {
  font-size: 1.35rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.kpi--cyan strong { color: var(--pro-accent); }
.kpi--amber strong { color: #e7bd68; }
.kpi--red strong { color: var(--pro-danger); }

.dashboard-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  padding: 12px 8px;
  border-radius: 12px;
  border: 1px solid var(--pro-border);
  background: rgba(0, 0, 0, 0.15);
}

.chart-bar {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--pro-accent), rgba(0, 212, 255, 0.15));
  opacity: 0.85;
}

.hero-pro-float {
  position: absolute;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--pro-border);
  background: rgba(6, 12, 22, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.hero-pro-float--a {
  top: 12%;
  right: -8px;
  text-align: center;
}

.hero-pro-float--a small {
  display: block;
  font-size: 0.6875rem;
  color: var(--pro-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-pro-float--a strong {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--pro-accent-2);
}

.hero-pro-float--b {
  bottom: 8%;
  left: -12px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--pro-accent-2);
}

.dot--live {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pro-accent-2);
  box-shadow: 0 0 10px var(--pro-accent-2);
  animation: pro-pulse 2s ease infinite;
  vertical-align: middle;
  margin-right: 6px;
}

@keyframes pro-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Trust bar */
.trust-bar {
  border-top: 1px solid var(--pro-border);
  border-bottom: 1px solid var(--pro-border);
  background: rgba(255, 255, 255, 0.02);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--pro-border);
}

.trust-item {
  padding: 24px 20px;
  background: var(--pro-bg);
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 0.8125rem;
  color: var(--pro-muted);
  font-weight: 500;
}

@media (max-width: 768px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .dashboard-body { grid-template-columns: 1fr; }
  .dashboard-nav { flex-direction: row; flex-wrap: wrap; border-right: none; border-bottom: 1px solid var(--pro-border); }
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
  .hero-pro-float { display: none; }
}

/* Sections */
.section-pro {
  padding: 88px 0;
}

.section-pro--dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  border-top: 1px solid var(--pro-border);
  border-bottom: 1px solid var(--pro-border);
}

.section-pro-head { max-width: 680px; margin-bottom: 48px; }
.section-pro-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-pro-head.center .section-pro-lead { margin-left: auto; margin-right: auto; }

.section-pro-head h2 {
  margin: 12px 0 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.section-pro-lead {
  margin: 16px 0 0;
  color: var(--pro-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 560px;
}

/* Capability grid */
.cap-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cap-grid { grid-template-columns: repeat(3, 1fr); } }

.cap-card {
  padding: 28px;
  border-radius: var(--pro-radius);
  border: 1px solid var(--pro-border);
  background: var(--pro-surface);
  backdrop-filter: blur(12px);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.cap-card:hover {
  border-color: var(--pro-border-strong);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.cap-card--feature {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(6, 10, 18, 0.9));
  border-color: rgba(0, 212, 255, 0.2);
}

@media (min-width: 1024px) {
  .cap-card--feature { grid-column: span 2; }
}

.cap-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid var(--pro-border);
  background: rgba(0, 212, 255, 0.08) center/22px no-repeat;
}

.cap-icon--shield { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300d4ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z'/%3E%3C/svg%3E"); }
.cap-icon--key { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2324f0b6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M15 7a2 2 0 012 2m4 0a6 6 0 01-7.743 5.743L11 17H9v2H7v2H4a1 1 0 01-1-1v-2.586a1 1 0 01.293-.707l5.964-5.964A6 6 0 1121 9z'/%3E%3C/svg%3E"); }
.cap-icon--pulse { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300d4ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M13 10V3L4 14h7v7l9-11h-7z'/%3E%3C/svg%3E"); }
.cap-icon--console { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23e7bd68'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M9.75 17L9 20l-1 1h8l-1-1-.75-3M3 13h18M5 17h14a2 2 0 002-2V5a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z'/%3E%3C/svg%3E"); }
.cap-icon--db { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a8bc'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M4 7v10c0 2.21 3.582 4 8 4s8-1.79 8-4V7M4 7c0 2.21 3.582 4 8 4s8-1.79 8-4M4 7c0-2.21 3.582-4 8-4s8 1.79 8 4'/%3E%3C/svg%3E"); }
.cap-icon--audit { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ff4757'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M9 17v-2m3 2v-4m3 4v-6m2 10H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z'/%3E%3C/svg%3E"); }

.cap-card h3 {
  margin: 0 0 10px;
  font-size: 1.125rem;
  font-weight: 800;
}

.cap-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--pro-muted);
}

/* Architecture */
.arch-layout {
  display: grid;
  gap: 48px;
  align-items: center;
}

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

.arch-steps {
  margin: 24px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.arch-steps li {
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--pro-border);
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.9375rem;
  color: var(--pro-muted);
  line-height: 1.5;
}

.arch-steps strong { color: var(--pro-text); }

.arch-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 32px;
  border-radius: var(--pro-radius-lg);
  border: 1px solid var(--pro-border-strong);
  background: rgba(0, 0, 0, 0.25);
}

.arch-node {
  width: 100%;
  max-width: 280px;
  padding: 20px;
  text-align: center;
  border-radius: 14px;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  border: 1px solid var(--pro-border);
}

.arch-node--client { background: rgba(0, 212, 255, 0.1); color: var(--pro-accent); border-color: rgba(0, 212, 255, 0.25); }
.arch-node--game { background: rgba(36, 240, 182, 0.08); color: var(--pro-accent-2); border-color: rgba(36, 240, 182, 0.22); }
.arch-node--vps { background: rgba(255, 71, 87, 0.08); color: #ff8a96; border-color: rgba(255, 71, 87, 0.22); }

.arch-line {
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, var(--pro-accent), var(--pro-accent-2));
  opacity: 0.5;
}

/* Process */
.process-pro {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .process-pro { grid-template-columns: repeat(4, 1fr); }
}

.process-pro-step {
  padding: 28px 24px;
  border-radius: var(--pro-radius);
  border: 1px solid var(--pro-border);
  background: var(--pro-surface);
  position: relative;
}

.process-pro-step span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pro-accent), var(--pro-accent-2));
  color: #030508;
  font-weight: 800;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.process-pro-step h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
}

.process-pro-step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--pro-muted);
  line-height: 1.6;
}

/* FAQ */
.faq-layout {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .faq-layout { grid-template-columns: 280px 1fr; align-items: start; }
}

.faq-item {
  border: 1px solid var(--pro-border);
  border-radius: 14px;
  background: var(--pro-surface);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 22px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--pro-muted);
  line-height: 1.65;
  font-size: 0.9375rem;
}

/* CTA */
.cta-pro { padding: 0 0 96px; }

.cta-pro-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 56px 48px;
  border-radius: var(--pro-radius-lg);
  border: 1px solid var(--pro-border-strong);
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(36, 240, 182, 0.05)),
    rgba(8, 14, 24, 0.95);
  box-shadow: var(--pro-shadow);
}

.cta-pro-inner h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
}

.cta-pro-inner p {
  margin: 0;
  max-width: 480px;
  color: var(--pro-muted);
  line-height: 1.65;
}

.cta-pro-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.label-light {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

/* Footer Pro */
.footer-pro {
  padding: 0;
  background: #020408;
  border-top: 1px solid var(--pro-border);
}

.footer-grid {
  display: grid;
  gap: 40px;
  padding: 56px 0 40px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
}

.footer-brand-block .brand--footer { margin-bottom: 16px; }

.brand-mark--sm {
  width: 36px !important;
  height: 36px !important;
  font-size: 0.75rem;
}

.footer-tagline {
  margin: 0;
  max-width: 320px;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--pro-muted);
}

.footer-col h4 {
  margin: 0 0 16px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pro-muted);
}

.footer-col a,
.footer-meta {
  display: block;
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: var(--pro-muted);
  font-weight: 500;
}

.footer-col a:hover { color: var(--pro-accent); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0 28px;
  border-top: 1px solid var(--pro-border);
  font-size: 0.8125rem;
  color: var(--pro-muted);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--pro-accent-2);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  font-size: 0.8125rem;
  font-weight: 600;
}

/* Subpages + forms polish */
.subpage .section-pro-head,
.subpage .section-title { margin-bottom: 40px; }

.subpage h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.form-card {
  border-radius: var(--pro-radius-lg);
  border: 1px solid var(--pro-border-strong);
  background: var(--pro-surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--pro-shadow);
}

.register-form input,
.register-form select,
.register-form textarea {
  border-radius: 10px;
  border: 1px solid var(--pro-border);
  background: rgba(0, 0, 0, 0.25);
  color: var(--pro-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.register-form input:focus,
.register-form select:focus,
.register-form textarea:focus {
  outline: none;
  border-color: var(--pro-accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.submit-btn {
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--pro-accent), #0099cc) !important;
  box-shadow: 0 12px 32px rgba(0, 212, 255, 0.28);
}

.feature-card {
  border-radius: var(--pro-radius);
  border: 1px solid var(--pro-border);
  background: var(--pro-surface);
}

.feature-card:hover {
  border-color: var(--pro-border-strong);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.alert {
  border-radius: 12px;
  font-weight: 600;
}

.alert.success {
  border: 1px solid rgba(36, 240, 182, 0.35);
  background: rgba(36, 240, 182, 0.08);
  color: var(--pro-accent-2);
}

.alert.error {
  border: 1px solid rgba(255, 71, 87, 0.35);
  background: rgba(255, 71, 87, 0.08);
  color: #ff8a96;
}

.timeline div {
  border-radius: 12px;
  border: 1px solid var(--pro-border);
  background: rgba(0, 0, 0, 0.2);
}

.assurance-box {
  border-radius: var(--pro-radius);
  border: 1px solid var(--pro-border-strong);
}

@media (max-width: 680px) {
  .cta-pro-inner { padding: 36px 24px; }
  .section-pro { padding: 64px 0; }
}
