/* Commercial landing — chrome from style-getafree.css */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

.commercial {
  color: var(--color-text-main);
}

.commercial .container {
  padding: 0 1rem;
  margin: 0 auto;
}

.commercial p {
  margin-bottom: 0;
}

.commercial-hero {
  text-align: center;
  padding: 4rem 0 3rem;
}

.commercial p.commercial-kicker {
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.commercial-hero h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-text-main);
}

.commercial p.commercial-lead {
  max-width: 640px;
  margin: 0 auto 1.75rem;
  color: #555;
  font-size: 1rem;
}

.commercial-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.commercial-call,
.commercial-jump {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.commercial-call {
  background: var(--bg-dark);
  color: #fff;
}

.commercial-call:hover {
  background: var(--color-gold);
  color: #111;
}

.commercial-jump {
  background: transparent;
  color: var(--color-text-main);
  border: 1px solid rgba(17, 17, 17, 0.16);
}

.commercial-jump:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.commercial-who {
  background: var(--bg-warm);
  padding: 3rem 0;
}

.commercial-who h2,
.commercial-process h2,
.commercial-form-copy h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  color: var(--color-text-main);
}

.commercial-types {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

.commercial-types li {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.35rem 1.15rem;
  text-align: left;
}

.commercial-types h3,
.commercial-steps h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.commercial-types p,
.commercial-steps p {
  font-size: 0.95rem;
  color: #555;
}

.commercial-process {
  padding: 3rem 0;
}

.commercial-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}

.commercial-steps li {
  background: var(--bg-warm);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.25rem;
}

.commercial-step-num {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.commercial-form-wrap {
  background: var(--bg-warm);
  padding: 3rem 0 4rem;
}

.commercial-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.commercial-form-copy {
  text-align: left;
}

.commercial-form-copy h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.commercial-form-copy p {
  color: #555;
  margin-bottom: 1rem;
}

.commercial-form-copy a {
  color: var(--color-text-main);
  border-bottom: 1px solid var(--color-gold);
  text-decoration: none;
}

.commercial-form-copy a:hover {
  color: var(--color-gold);
}

.commercial .hero-form {
  flex: none;
  width: 100%;
}

.commercial .hero-form select {
  flex: 1;
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
}

@media (max-width: 768px) {
  .commercial-hero {
    padding: 2.5rem 0 2rem;
  }

  .commercial-hero h1 {
    font-size: 1.65rem;
  }

  .commercial-types,
  .commercial-steps,
  .commercial-form-grid {
    grid-template-columns: 1fr;
  }
}
