/* HVAC in LA — section styles */

/* Hero */
.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin: 18px 0 22px; }
.hero h1 .accent { color: var(--orange); }
.hero .lede {
  font-size: 1.15rem;
  color: var(--slate-2);
  max-width: 56ch;
  margin-bottom: 28px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-num { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; color: var(--slate); }
.trust-lbl { font-size: 0.82rem; color: var(--slate-4); font-weight: 500; }

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 30px 60px -30px rgba(11, 18, 32, 0.25);
}
.hero-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.hero-card .sub { font-size: 0.92rem; color: var(--slate-4); margin-bottom: 20px; }
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-row label { font-size: 0.8rem; font-weight: 700; color: var(--slate-2); letter-spacing: 0.02em; }
.form-row input, .form-row select, .form-row textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bone);
  color: var(--slate);
  transition: border .15s, background .15s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--orange); background: var(--white);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .form-grid { grid-template-columns: 1fr; } }
.hero-card .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }
.hero-card .tos { font-size: 0.75rem; color: var(--slate-4); margin-top: 12px; text-align: center; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 40px 0 56px; }
}

/* Trust strip */
.trustbar {
  background: var(--slate);
  color: #CBD5E1;
  padding: 18px 0;
}
.trustbar .container {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.trustbar .item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.trustbar .item svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }
.trustbar strong { color: var(--white); font-weight: 700; }

/* Section base */
section { padding: 88px 0; }
section.tight { padding: 64px 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2 { margin-top: 14px; }
.section-head p { font-size: 1.1rem; color: var(--slate-3); margin-top: 14px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
