:root {
  --consultor-accent: rgba(79, 134, 255, 0.2);
  --consultor-glow: rgba(69, 215, 255, 0.22);
}

.consultor-hero {
  position: relative;
  padding: 56px 0 64px;
  overflow: hidden;
}

.consultor-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(680px 360px at 20% 20%, rgba(69, 215, 255, 0.22), transparent 60%),
    radial-gradient(520px 320px at 85% 10%, rgba(140, 107, 255, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.55), rgba(5, 7, 13, 0.9)),
    url("/static/landing/bg-hero.png");
  background-size: cover;
  background-position: center;
  opacity: 0.96;
  z-index: 0;
  animation: slow-pan 22s ease-in-out infinite;
}

.consultor-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 36px;
  align-items: center;
}

.consultor-hero__copy {
  display: grid;
  gap: 18px;
}

.consultor-hero__copy h1 {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 12px;
}

.consultor-hero__copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 22px;
}

.consultor-hero__card {
  background: var(--card-strong);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(90, 120, 200, 0.3);
  box-shadow: var(--shadow);
  padding: 26px;
  display: grid;
  gap: 14px;
}

.consultor-hero__card h3 {
  margin: 0;
  font-family: var(--font-title);
}

.consultor-hero__card p {
  margin: 0;
  color: var(--muted);
}

.mini-cta {
  margin-top: 4px;
}

.step-grid,
.benefit-grid,
.deliver-grid,
.cred-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-card,
.benefit-card,
.deliver-card,
.cred-card {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(90, 120, 200, 0.2);
  background: rgba(10, 16, 28, 0.7);
  box-shadow: 0 18px 40px rgba(4, 8, 18, 0.35);
  display: grid;
  gap: 8px;
}

.step-pill {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 134, 255, 0.2);
  border: 1px solid rgba(79, 134, 255, 0.4);
  color: #d9e9ff;
  font-weight: 700;
}

.commission-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.commission-card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(90, 120, 200, 0.2);
  background: rgba(10, 16, 28, 0.78);
  display: grid;
  gap: 12px;
}

.commission-card.highlight {
  background: linear-gradient(135deg, rgba(69, 215, 255, 0.16), rgba(140, 107, 255, 0.14));
  border-color: rgba(90, 215, 255, 0.35);
  box-shadow: 0 20px 45px rgba(10, 18, 30, 0.45);
}

.commission-example {
  display: grid;
  gap: 10px;
}

.commission-example > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(120, 160, 220, 0.2);
  background: rgba(8, 13, 23, 0.75);
}

.commission-example .example-total {
  border-color: rgba(78, 243, 207, 0.4);
  background: rgba(78, 243, 207, 0.08);
}

.text-muted {
  color: var(--muted);
  font-size: 0.85rem;
}

.compare-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.compare-card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(90, 120, 200, 0.2);
  background: rgba(10, 16, 28, 0.78);
}

.compare-card.muted {
  background: rgba(8, 13, 23, 0.68);
  border-color: rgba(120, 160, 220, 0.14);
  color: var(--muted);
}

.consultor-form .hp-field {
  display: none;
}

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

.form-feedback {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-feedback.is-error {
  color: #ff9b9b;
}

.form-feedback.is-success {
  color: #6fffd1;
}

@media (max-width: 980px) {
  .consultor-hero__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .consultor-hero {
    padding-top: 100px;
  }
}
