.business-hero {
  margin-top: calc(-1 * var(--header-offset));
  padding: calc(var(--header-offset) + 6rem) 0 8rem;
  background: var(--color-slate-900);
  background-image: radial-gradient(circle at 50% 100%, rgba(0, 131, 255, 0.15), transparent 60%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.business-hero h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin: 1.25rem auto 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.1;
  max-width: 900px;
}

.business-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 auto 2.5rem;
}

.business-hero .badge {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.business-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-header-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.business-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 32px rgba(0, 12, 42, 0.04);
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.business-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 12, 42, 0.08);
  border-color: rgba(0, 131, 255, 0.3);
}

.business-card h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

.business-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.6;
}

.form-shell {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 3rem;
  max-width: 760px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-shell label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: var(--color-slate-50);
}

.form-shell input:focus,
.form-shell select:focus,
.form-shell textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-soft);
  background: #fff;
}

.form-consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.form-consent input {
  width: auto;
  margin-top: 0.25rem;
}

@media (max-width: 760px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-shell {
    padding: 2rem 1.5rem;
  }
}