/* ── Commercial Hero ── */
.hero--commercial {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding: calc(var(--navbar-height) + var(--space-3xl)) 0 var(--space-2xl);
}
.hero--commercial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(var(--color-primary-rgb), 0.78) 0%, rgba(var(--color-primary-dark-rgb), 0.65) 50%, rgba(var(--color-primary-rgb), 0.52) 100%);
  z-index: 1;
}
.hero--commercial::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}
.hero--commercial .container {
  position: relative;
  z-index: 2;
  max-width: 840px;
  text-align: center;
}
.hero--commercial h1 {
  color: #fff;
  font-size: var(--fs-h1);
  margin-bottom: var(--space-md);
  text-wrap: balance;
}
.hero--commercial .hero-answer {
  color: rgba(255, 255, 255, 0.88);
  max-width: 58ch;
  margin: 0 auto var(--space-xl);
  font-size: var(--font-size-lg);
  line-height: 1.7;
}
.hero--commercial .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
  background: rgba(var(--color-accent-rgb), 0.14);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
}
.hero--commercial .breadcrumb {
  margin-bottom: var(--space-md);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.55);
}
.hero--commercial .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero--commercial .breadcrumb a:hover { color: var(--color-accent); }
.hero--commercial .breadcrumb-sep { margin: 0 var(--space-sm); }
.hero--commercial .hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.hero--commercial .trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero--commercial .trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
.hero--commercial .trust-badge i,
.hero--commercial .trust-badge svg { width: 18px; height: 18px; color: var(--color-accent); }

/* ── SVG Dividers ── */
.divider-comm-1 svg { fill: var(--color-bg); }
.divider-comm-2 svg { fill: var(--color-bg-alt); }
.divider-comm-3 svg { fill: var(--color-bg); }
.divider-comm-4 svg { fill: var(--color-bg-alt); }

/* ── Systems Overview ── */
.comm-systems {
  background: var(--color-bg);
  padding: var(--section-pad);
}
.comm-systems h2 {
  font-size: var(--fs-h2);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-md);
  text-wrap: balance;
}
.comm-systems .answer-block {
  color: var(--color-text-light);
  font-size: var(--font-size-lg);
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto var(--space-2xl);
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-accent);
}
.comm-sys-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}
.comm-sys-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base, 0.3s ease), box-shadow var(--transition-base, 0.3s ease);
}
.comm-sys-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.comm-sys-card .sys-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(var(--color-accent-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--color-accent);
}
.comm-sys-card .sys-icon i,
.comm-sys-card .sys-icon svg { width: 24px; height: 24px; }
.comm-sys-card h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}
.comm-sys-card .sys-range {
  font-family: var(--font-accent);
  font-size: var(--font-size-lg);
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--space-sm);
}
.comm-sys-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.55;
}

/* ── Disruption Section (Split) ── */
.comm-disruption {
  background: var(--color-bg-alt);
  padding: var(--section-pad);
}
.comm-disruption .grid-asym {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-3xl);
  align-items: center;
}
.comm-disruption h2 {
  font-size: var(--fs-h2);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  text-wrap: balance;
}
.comm-disruption .answer-block {
  color: var(--color-text-light);
  font-size: var(--font-size-lg);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-accent);
}
.comm-disruption .prose { line-height: 1.7; color: var(--color-text); max-width: var(--content-width); }
.comm-property-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}
.comm-prop {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  font-size: var(--font-size-sm);
  color: var(--color-text);
  font-weight: 600;
}
.comm-prop i,
.comm-prop svg { width: 18px; height: 18px; color: var(--color-accent); }
.comm-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.comm-img-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.comm-img-wrap .comm-stat {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: rgba(var(--color-primary-rgb), 0.9);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
}
.comm-img-wrap .comm-stat .stat-number {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 800;
  color: var(--color-accent);
  display: block;
}
.comm-img-wrap .comm-stat .stat-label {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.8);
}

/* ── Process Section ── */
.comm-process {
  background: var(--color-bg);
  padding: var(--section-pad);
  text-align: center;
}
.comm-process h2 {
  font-size: var(--fs-h2);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  text-wrap: balance;
}
.comm-process .answer-block {
  color: var(--color-text-light);
  font-size: var(--font-size-lg);
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto var(--space-2xl);
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-accent);
  text-align: left;
}
.comm-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}
.comm-step {
  position: relative;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
  text-align: center;
  border: 1px solid var(--color-border);
}
.comm-step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.comm-step h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}
.comm-step p {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

/* ── Why Choose ── */
.comm-why {
  background: var(--color-bg-alt);
  padding: var(--section-pad);
}
.comm-why h2 {
  font-size: var(--fs-h2);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-md);
  text-wrap: balance;
}
.comm-why .answer-block {
  color: var(--color-text-light);
  font-size: var(--font-size-lg);
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto var(--space-2xl);
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-accent);
}
.comm-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}
.comm-why-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-xl);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base, 0.3s ease), box-shadow var(--transition-base, 0.3s ease);
}
.comm-why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.comm-why-card .icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(var(--color-accent-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}
.comm-why-card .icon-wrap i,
.comm-why-card .icon-wrap svg { width: 22px; height: 22px; }
.comm-why-card h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}
.comm-why-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ── FAQ Section ── */
.comm-faq {
  background: var(--color-bg);
  padding: var(--section-pad);
}
.comm-faq h2 {
  font-size: var(--fs-h2);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-2xl);
  text-wrap: balance;
}
.comm-faq .faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.comm-faq .faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg);
  transition: box-shadow var(--transition-base, 0.3s ease);
}
.comm-faq .faq-item:hover { box-shadow: var(--shadow-sm); }
.comm-faq .faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-lg);
  color: var(--color-primary);
  list-style: none;
  gap: var(--space-md);
}
.comm-faq .faq-item summary::-webkit-details-marker { display: none; }
.comm-faq .faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.comm-faq .faq-item[open] summary::after {
  content: '\2212';
  transform: rotate(180deg);
}
.comm-faq .faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: var(--font-size-base);
}

/* ── CTA Banner ── */
.cta-comm {
  text-align: center;
  background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: var(--section-pad);
}
.cta-comm::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 100%, rgba(var(--color-accent-rgb), 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-comm .container { position: relative; z-index: 1; }
.cta-comm h2 { color: #fff; font-size: var(--fs-h2); margin-bottom: var(--space-md); text-wrap: balance; }
.cta-comm p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 52ch;
  margin: 0 auto var(--space-xl);
  font-size: var(--font-size-lg);
  line-height: 1.65;
}
.cta-comm .hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ── Related Services ── */
.related-comm {
  background: var(--color-bg-alt);
  padding: var(--section-pad);
}
.related-comm h2 {
  font-size: var(--fs-h2);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-2xl);
  text-wrap: balance;
}

/* ── Responsive ── */
@media (max-width: 1023px) {
  .comm-sys-grid { grid-template-columns: repeat(2, 1fr); }
  .comm-disruption .grid-asym { grid-template-columns: 1fr; gap: var(--space-xl); }
  .comm-steps { grid-template-columns: repeat(2, 1fr); }
  .comm-why-grid { grid-template-columns: 1fr; }
  .comm-property-types { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .hero--commercial .hero-actions { flex-direction: column; }
  .hero--commercial .hero-actions .btn-primary,
  .hero--commercial .hero-actions .btn-secondary--white { width: 100%; text-align: center; }
  .comm-sys-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .comm-steps { grid-template-columns: 1fr; }
}
