/* Commercial page — Urban Solar */

/* ===== HERO (full-bleed dark photo) ===== */
.commercial-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: var(--us-white);
  text-align: center;
  background-color: #0a0e14;
  background-image:
    linear-gradient(180deg, rgba(0,0,15,.55) 0%, rgba(0,0,15,.62) 65%, rgba(0,0,37,.92) 100%),
    url('../public/images/2025/02/DJI_0442.webp');
  background-size: cover;
  background-position: center;
  padding: 160px 0 120px;
}
.commercial-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}
.commercial-hero h1 {
  font-size: var(--us-fs-hero);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .005em;
  font-weight: 600;
  margin: 0 0 28px;
}
.commercial-hero h1 .accent { color: var(--us-orange); }
.commercial-hero-cta {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== SPLIT SECTION (white bg, image left + copy right) ===== */
.split-cta {
  background: var(--us-white);
  padding: 90px 0;
}
.split-cta .inner {
  max-width: var(--us-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.split-cta .img {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--us-shadow-card);
}
.split-cta .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-cta .copy .eyebrow-text {
  color: var(--us-orange);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 12px;
  display: block;
}
.split-cta .copy h2 {
  font-size: 34px;
  color: var(--us-navy);
  font-weight: 600;
  margin: 0 0 22px;
  line-height: 1.2;
}
.split-cta .copy p {
  color: var(--us-text);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.split-cta .copy .btn-row {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* ===== "EMPOWERING…" DARK SECTION (copy left, 4 dark cards 2x2 right) ===== */
.empowering {
  background: var(--us-black);
  color: var(--us-white);
  padding: 90px 0;
}
.empowering .inner {
  max-width: var(--us-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.empowering .copy .eyebrow {
  color: var(--us-orange);
  margin-bottom: 14px;
}
.empowering .copy h2 {
  color: var(--us-white);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 22px;
}
.empowering .copy p {
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 18px;
}
.empowering .btn-row {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.empowering .stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.empowering .stat-card {
  background: #111118;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 170px;
}
.empowering .stat-card .ic {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(238,62,40,.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--us-orange);
}
.empowering .stat-card .ic svg {
  width: 28px;
  height: 28px;
}
.empowering .stat-card h3 {
  color: var(--us-white);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

/* ===== EXCEPTIONAL SOLUTIONS (white bg, single column centered) ===== */
.exceptional {
  background: var(--us-white);
  padding: 90px 0;
  text-align: center;
}
.exceptional .container {
  max-width: 980px;
}
.exceptional .eyebrow { justify-content: center; }
.exceptional h2 {
  font-size: 36px;
  color: var(--us-navy);
  font-weight: 600;
  margin: 0 0 26px;
  line-height: 1.2;
}
.exceptional p {
  color: var(--us-text);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 auto 18px;
  max-width: 880px;
}
.exceptional .btn {
  margin-top: 24px;
}

/* ===== SMARTER ENERGY (centered intro on dark / light bg) ===== */
.smarter {
  background: var(--us-bg-light);
  padding: 80px 0;
  text-align: center;
}
.smarter .container { max-width: 820px; }
.smarter .eyebrow { justify-content: center; }
.smarter h2 {
  font-size: 32px;
  color: var(--us-navy);
  font-weight: 600;
  margin: 0 0 18px;
  line-height: 1.25;
}
.smarter p {
  color: var(--us-text);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto 26px;
  max-width: 720px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .commercial-hero { min-height: 540px; padding: 130px 0 90px; }
  .split-cta .inner,
  .empowering .inner { grid-template-columns: 1fr; gap: 40px; }
  .split-cta .img { aspect-ratio: 16/10; max-width: 560px; margin: 0 auto; }
  .empowering .copy h2 { font-size: 32px; }
  .exceptional h2 { font-size: 30px; }
}
@media (max-width: 700px) {
  .commercial-hero { padding: 120px 0 70px; min-height: 460px; }
  .commercial-hero h1 { font-size: 32px; }
  .split-cta { padding: 64px 0; }
  .split-cta .copy h2 { font-size: 26px; }
  .empowering { padding: 64px 0; }
  .empowering .copy h2 { font-size: 26px; }
  .empowering .stat-grid { grid-template-columns: 1fr; }
  .exceptional { padding: 64px 0; }
  .exceptional h2 { font-size: 26px; }
  .smarter { padding: 56px 0; }
  .smarter h2 { font-size: 24px; }
}
